|
| 1 | +// Copyright (c) 2022 Alibaba Group Holding Ltd. |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +package tests |
| 16 | + |
| 17 | +import ( |
| 18 | + "testing" |
| 19 | + |
| 20 | + "github.com/alibaba/higress/test/e2e/conformance/utils/http" |
| 21 | + "github.com/alibaba/higress/test/e2e/conformance/utils/suite" |
| 22 | +) |
| 23 | + |
| 24 | +func init() { |
| 25 | + Register(HTTPRouteStaticRegistry) |
| 26 | +} |
| 27 | + |
| 28 | +var HTTPRouteStaticRegistry = suite.ConformanceTest{ |
| 29 | + ShortName: "HTTPRouteStaticRegistry", |
| 30 | + Description: "The Ingress in the higress-conformance-infra namespace uses the static service registry.", |
| 31 | + Manifests: []string{"tests/httproute-static-registry.yaml"}, |
| 32 | + Features: []suite.SupportedFeature{suite.HTTPConformanceFeature}, |
| 33 | + Test: func(t *testing.T, suite *suite.ConformanceTestSuite) { |
| 34 | + testcases := []http.Assertion{ |
| 35 | + { |
| 36 | + Request: http.AssertionRequest{ |
| 37 | + ActualRequest: http.Request{ |
| 38 | + Host: "foo.com", |
| 39 | + Path: "/", |
| 40 | + Method: "GET", |
| 41 | + }, |
| 42 | + }, |
| 43 | + Response: http.AssertionResponse{ |
| 44 | + ExpectedResponseNoRequest: true, |
| 45 | + ExpectedResponse: http.Response{ |
| 46 | + StatusCode: 200, |
| 47 | + }, |
| 48 | + }, |
| 49 | + }, |
| 50 | + } |
| 51 | + t.Run("HTTPRoute Static Registry", func(t *testing.T) { |
| 52 | + for _, testcase := range testcases { |
| 53 | + http.MakeRequestAndExpectEventuallyConsistentResponse(t, suite.RoundTripper, suite.TimeoutConfig, suite.GatewayAddress, testcase) |
| 54 | + } |
| 55 | + }) |
| 56 | + }, |
| 57 | +} |
0 commit comments