blob: 2259013c1d093a9586d70598bfe55250de027f78 [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/gavv/httpexpect/v2"
"github.com/onsi/ginkgo"
"github.com/onsi/ginkgo/extensions/table"
"net/http"
"github.com/apache/apisix-java-plugin-runner/tests/e2e/tools"
)
var _ = ginkgo.Describe("Post", func() {
table.DescribeTable("test route create and update",
func(tc tools.HttpTestCase) {
tools.RunTestCase(tc)
},
table.Entry("create java runner post plugin route success", tools.HttpTestCase{
Object: tools.PutA6Conf(),
Method: http.MethodPut,
Path: "/apisix/admin/routes/1",
Body: `{
"uri":"/test/java/runner/postvars",
"plugins":{
"ext-plugin-pre-req":{
"conf":[
{
"name":"PostReqWithVarsFilter",
"value":"{\"rewrite_path\":\"/get\"}"
}
]
},
"ext-plugin-post-resp":{
"conf":[
{
"name":"PostReqWithVarsFilter",
"value":"{\"rewrite_path\":\"/get\"}"
}
]
}
},
"upstream":{
"nodes":{
"web:8888":1
},
"type":"roundrobin"
}
}`,
Headers: map[string]string{"X-API-KEY": tools.GetAdminToken()},
ExpectStatusRange: httpexpect.Status2xx,
}),
table.Entry("test java runner post plugin route success", tools.HttpTestCase{
Object: tools.GetA6Expect(),
Method: http.MethodGet,
Path: "/test/java/runner/postvars",
ExpectHeaders: map[string]string{
"server-port": "9080",
},
ExpectStatus: http.StatusOK,
}),
)
})