Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for makeClient (0.19 sec)

  1. pkg/volume/csi/csi_attacher_test.go

    			shouldFail:           true,
    		},
    	}
    
    	for i, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			fakeClient := fakeclient.NewSimpleClientset()
    			plug, tmpDir := newTestPlugin(t, fakeClient)
    			defer os.RemoveAll(tmpDir)
    
    			fakeWatcher := watch.NewRaceFreeFake()
    			fakeClient.Fake.PrependWatchReactor("volumeattachments", core.DefaultWatchReactor(fakeWatcher, nil))
    
    			attacher, err := plug.NewAttacher()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter_test.go

    			}
    
    		})
    	}
    }
    
    func TestMounterSetUpSimple(t *testing.T) {
    	fakeClient := fakeclient.NewSimpleClientset()
    	plug, tmpDir := newTestPlugin(t, fakeClient)
    	transientError := volumetypes.NewTransientOperationFailure("")
    	defer os.RemoveAll(tmpDir)
    
    	testCases := []struct {
    		name                 string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    					VolumesAttached: attachedVolumes,
    				},
    			}, nil
    		})
    	fakeClient.AddReactor("get", "persistentvolumeclaims", func(action core.Action) (bool, runtime.Object, error) {
    		return true, pvc, nil
    	})
    	fakeClient.AddReactor("get", "persistentvolumes", func(action core.Action) (bool, runtime.Object, error) {
    		return true, pv, nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	fakeClient := &fake.Clientset{}
    	fakeClient.AddReactor("get", "persistentvolumeclaims", func(action core.Action) (bool, runtime.Object, error) {
    		return false, nil, nil
    	})
    	fakeClient.AddReactor("get", "persistentvolumes", func(action core.Action) (bool, runtime.Object, error) {
    		return false, nil, nil
    	})
    	dswp.kubeClient = fakeClient
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/replica_calculator_test.go

    const (
    	testNamespace       = "test-namespace"
    	podNamePrefix       = "test-pod"
    	numContainersPerPod = 2
    )
    
    func (tc *replicaCalcTestCase) prepareTestClientSet() *fake.Clientset {
    	fakeClient := &fake.Clientset{}
    	fakeClient.AddReactor("list", "pods", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		obj := &v1.PodList{}
    		podsCount := int(tc.currentReplicas)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    	rs := newReplicaSet(1, map[string]string{"foo": "bar"})
    	fakeClient := &fake.Clientset{}
    	fakeClient.AddReactor("get", "replicasets", func(action core.Action) (bool, runtime.Object, error) { return true, rs, nil })
    	fakeClient.AddReactor("*", "*", func(action core.Action) (bool, runtime.Object, error) {
    		return true, &apps.ReplicaSet{}, fmt.Errorf("fake error")
    	})
    	fakeRSClient := fakeClient.AppsV1().ReplicaSets("default")
    	numReplicas := int32(10)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	buf := &bytes.Buffer{}
    	codec := corev1Codec
    	enc := restclientwatch.NewEncoder(streaming.NewEncoder(buf, codec), codec)
    	for _, e := range events {
    		enc.Encode(&e)
    	}
    	return buf.String()
    }
    
    func fakeClient() FakeClientFunc {
    	return func(version schema.GroupVersion) (RESTClient, error) {
    		return &fake.RESTClient{}, nil
    	}
    }
    
    func fakeClientWith(testName string, t *testing.T, data map[string]string) FakeClientFunc {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
Back to top