blob: 31056e8c5204aba02f63bdd6c65a9a844c3bbe97 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package plugins_test
import (
"github.com/apache/apisix-python-plugin-runner/tests/e2e/tools"
"github.com/gavv/httpexpect/v2"
"github.com/onsi/ginkgo"
"github.com/onsi/ginkgo/extensions/table"
"net/http"
"time"
)
var _ = ginkgo.Describe("Rewrite Plugin", func() {
table.DescribeTable("create rewrite route plugin route and test",
func(tc tools.HttpTestCase) {
tools.RunTestCase(tc)
},
table.Entry("create python runner rewrite plugin route success", tools.HttpTestCase{
Object: tools.GetA6Expect(),
Method: http.MethodPut,
Path: "/apisix/admin/routes/1",
Body: `{
"uri":"/test/python/runner/rewrite",
"plugins":{
"ext-plugin-pre-req":{
"conf":[
{
"name":"rewrite",
"value":"rewrite-config"
}
]
}
},
"upstream":{
"nodes":{
"web:8888":1
},
"type":"roundrobin"
}
}`,
Headers: map[string]string{"X-API-KEY": tools.GetAdminToken()},
ExpectStatusRange: httpexpect.Status2xx,
Sleep: time.Duration(1000),
}),
table.Entry("test python runner rewrite plugin route success", tools.HttpTestCase{
Object: tools.GetA6Expect(),
Method: http.MethodGet,
Path: "/test/python/runner/rewrite",
ExpectBody: []string{"/a6/python/runner", "Python"},
ExpectStatus: http.StatusOK,
}),
)
})