Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for wantCode (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    		statusCode int
    		object     runtime.Object
    
    		wantCode    int
    		wantHeaders http.Header
    		wantBody    []byte
    	}{
    		{
    			name:        "serialize object",
    			out:         smallPayload,
    			req:         &http.Request{Header: http.Header{}, URL: &url.URL{Path: "/path"}},
    			wantCode:    http.StatusOK,
    			wantHeaders: http.Header{"Content-Type": []string{""}},
    			wantBody:    smallPayload,
    		},
    
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/debug_test.go

    	tests := []struct {
    		name     string
    		wantCode int
    		proxyID  string
    	}{
    		{
    			name:     "dumps most recent proxy with 200",
    			proxyID:  "test.default",
    			wantCode: 200,
    		},
    		{
    			name:     "returns 404 if proxy not found",
    			proxyID:  "not-found",
    			wantCode: 404,
    		},
    		{
    			name:     "returns 400 if no proxyID",
    			proxyID:  "",
    			wantCode: 400,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. tests/integration/security/authz_test.go

    					for _, c := range cases {
    						c := c
    						testName := fmt.Sprintf("%s(%s)/http", c.host, c.allow)
    						t.NewSubTest(testName).Run(func(t framework.TestContext) {
    							wantCode := http.StatusOK
    							if !c.allow {
    								wantCode = http.StatusForbidden
    							}
    
    							opts := echo.CallOptions{
    								Port: echo.Port{
    									Protocol: protocol.HTTP,
    								},
    								HTTP: echo.HTTP{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. src/net/http/httputil/reverseproxy_test.go

    	tests := []struct {
    		name           string
    		wantCode       int
    		errorHandler   func(http.ResponseWriter, *http.Request, error)
    		transport      http.RoundTripper // defaults to failingRoundTripper
    		modifyResponse func(*http.Response) error
    	}{
    		{
    			name:     "default",
    			wantCode: http.StatusBadGateway,
    		},
    		{
    			name:         "errorhandler",
    			wantCode:     http.StatusTeapot,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. src/net/textproto/reader_test.go

    		r := reader(tt.in + "\nFOLLOWING DATA")
    		code, msg, err := r.ReadResponse(tt.inCode)
    		if err != nil {
    			t.Errorf("#%d: ReadResponse: %v", i, err)
    			continue
    		}
    		if code != tt.wantCode {
    			t.Errorf("#%d: code=%d, want %d", i, code, tt.wantCode)
    		}
    		if msg != tt.wantMsg {
    			t.Errorf("#%d: msg=%q, want %q", i, msg, tt.wantMsg)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    		}
    		body, err := io.ReadAll(res.Body)
    		res.Body.Close()
    		if err != nil {
    			t.Fatal(err)
    		}
    		wantBody := file
    		if method == MethodHead {
    			wantBody = nil
    		}
    		if !bytes.Equal(body, wantBody) {
    			t.Fatalf("%v: got body %q, want %q", method, body, wantBody)
    		}
    		if got, want := res.Header.Get("Content-Length"), fmt.Sprint(len(file)); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    	c := &Client{Transport: tr}
    
    	testResponse := func(req *Request, name string, wantCode int) {
    		t.Helper()
    		res, err := c.Do(req)
    		if err != nil {
    			t.Fatalf("%s: Do: %v", name, err)
    		}
    		if res.StatusCode != wantCode {
    			t.Fatalf("%s: Response Statuscode=%d; want %d", name, res.StatusCode, wantCode)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/net/http/transport_dial_test.go

    	dt := newTransportDialTester(t, http1Mode)
    
    	// First request creates a new connection.
    	rt1 := dt.roundTrip()
    	c1 := dt.wantDial()
    	c1.finish(nil)
    	rt1.wantDone(c1)
    	rt1.finish()
    
    	// Second request reuses the first connection.
    	rt2 := dt.roundTrip()
    	rt2.wantDone(c1)
    	rt2.finish()
    }
    
    func TestTransportPoolConnCannotReuseConnectionInUse(t *testing.T) {
    	dt := newTransportDialTester(t, http1Mode)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/net/http/httptest/httptest_test.go

    			slurp, err := io.ReadAll(got.Body)
    			if err != nil {
    				t.Errorf("ReadAll: %v", err)
    			}
    			if string(slurp) != tt.wantBody {
    				t.Errorf("Body = %q; want %q", slurp, tt.wantBody)
    			}
    			tt.want = tt.want.WithContext(context.Background())
    			got.Body = nil // before DeepEqual
    			if !reflect.DeepEqual(got.URL, tt.want.URL) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:09:14 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy_test.go

    				t.Errorf("Unexpected error: %v", errs.ToAggregate())
    			}
    
    			Strategy.PrepareForCreate(genericapirequest.NewContext(), pod)
    			wantPod.Spec.TopologySpreadConstraints = append(wantPod.Spec.TopologySpreadConstraints, tc.wantTopologySpreadConstraints...)
    			if diff := cmp.Diff(wantPod, pod, cmpopts.IgnoreFields(pod.Status, "Phase", "QOSClass")); diff != "" {
    				t.Errorf("%s unexpected result (-want, +got): %s", tc.name, diff)
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top