Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for expectedStatus (0.54 sec)

  1. pkg/kubelet/kubelet_test.go

    		name               string
    		containerName      string
    		checkpointLocation string
    		expectedStatus     error
    		expectedLocation   string
    	}{
    		{
    			name:               "Checkpoint with wrong container name",
    			containerName:      wrongContainerName,
    			checkpointLocation: "",
    			expectedStatus:     fmt.Errorf("container %s not found", wrongContainerName),
    			expectedLocation:   "",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    	actualPDB.Status.Conditions = nil
    	expectedStatus := policy.PodDisruptionBudgetStatus{
    		DisruptionsAllowed: disruptionsAllowed,
    		CurrentHealthy:     currentHealthy,
    		DesiredHealthy:     desiredHealthy,
    		ExpectedPods:       expectedPods,
    		DisruptedPods:      disruptedPodMap,
    		ObservedGeneration: actualPDB.Generation,
    	}
    	actualStatus := actualPDB.Status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage_test.go

    					return
    				}
    				t.Errorf("updated status: %s", err)
    			}
    
    			updated := obj.(*api.Service)
    			if !reflect.DeepEqual(tc.expectedStatus, updated.Status) {
    				t.Errorf("%v: unexpected svc status: %v", tc.name, cmp.Diff(tc.expectedStatus, updated.Status))
    			}
    		})
    	}
    }
    
    func loadbalancerIPModeInUse(status api.ServiceStatus) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  4. tests/test_param_include_in_schema.py

            ),
        ],
    )
    def test_hidden_cookie(path, cookies, expected_status, expected_response):
        client = TestClient(app, cookies=cookies)
        response = client.get(path)
        assert response.status_code == expected_status
        assert response.json() == expected_response
    
    
    @pytest.mark.parametrize(
        "path,headers,expected_status,expected_response",
        [
            (
                "/hidden_header",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_header_params/test_tutorial003.py

                200,
                {"X-Token values": ["foo", "bar"]},
            ),
        ],
    )
    def test(path, headers, expected_status, expected_response):
        response = client.get(path, headers=headers)
        assert response.status_code == expected_status
        assert response.json() == expected_response
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 12 14:52:00 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/StatsTesting.java

          }
        } else if (expectedStats.count() == 1) {
          assertThat(actualStats.mean()).isWithin(ALLOWED_ERROR).of(expectedStats.mean());
          assertThat(actualStats.populationVariance()).isWithin(0.0).of(0.0);
          assertThat(actualStats.min()).isWithin(ALLOWED_ERROR).of(expectedStats.min());
          assertThat(actualStats.max()).isWithin(ALLOWED_ERROR).of(expectedStats.max());
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  7. tests/test_annotated.py

            ("/unrelated?foo=bar", 200, {"foo": "bar"}),
            ("/unrelated", 422, foo_is_missing),
        ],
    )
    def test_get(path, expected_status, expected_response):
        response = client.get(path)
        assert response.status_code == expected_status
        assert response.json() == expected_response
    
    
    def test_multiple_path():
        app = FastAPI()
    
        @app.get("/test1")
        @app.get("/test2")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. tests/test_application.py

    client = TestClient(app)
    
    
    @pytest.mark.parametrize(
        "path,expected_status,expected_response",
        [
            ("/api_route", 200, {"message": "Hello World"}),
            ("/non_decorated_route", 200, {"message": "Hello World"}),
            ("/nonexistent", 404, {"detail": "Not Found"}),
        ],
    )
    def test_get_path(path, expected_status, expected_response):
        response = client.get(path)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

                Collection<State> expectedStates = Arrays.asList(states);
                lock.lock();
                try {
                    while (!expectedStates.contains(state)) {
                        if (!condition.awaitUntil(expiry)) {
                            throw new IllegalStateException(String.format("Timeout waiting for one of: %s",
                                    expectedStates));
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    	images := []string{"1111", "2222", "3333"}
    	fakeImageService.SetFakeImages(images)
    
    	actualStats, err := fakeManager.ImageStats(ctx)
    	assert.NoError(t, err)
    	expectedStats := &kubecontainer.ImageStats{TotalStorageBytes: imageSize * uint64(len(images))}
    	assert.Equal(t, expectedStats, actualStats)
    }
    
    func TestImageStatsWithError(t *testing.T) {
    	ctx := context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top