nic-chen commented on a change in pull request #1195:
URL: https://github.com/apache/apisix-dashboard/pull/1195#discussion_r551680391
##########
File path: api/test/e2e/consumer_test.go
##########
@@ -536,3 +536,70 @@ func TestConsumer_with_createtime_updatetime(t *testing.T)
{
testCaseCheck(tc, t)
}
}
+
+func TestConsumer_with_jwt(t *testing.T) {
+ tests := []HttpTestCase{
+ {
+ Desc: "check consumer is not exist",
+ Object: ManagerApiExpect(t),
+ Path: "/apisix/admin/consumers/consumer_1",
+ Method: http.MethodGet,
+ Headers: map[string]string{"Authorization": token},
+ ExpectStatus: http.StatusNotFound,
+ ExpectBody: "data not found",
+ },
+ {
+ Desc: "create consumer by PUT method",
+ Object: ManagerApiExpect(t),
+ Path: "/apisix/admin/consumers",
+ Method: http.MethodPut,
+ Body: `{
+ "username":"consumer_1",
+ "desc": "test description",
+ "plugins":{
+ "jwt-auth":{
+ "exp":86400,
+ "key":"user-key",
+ "secret":"my-secret-key"
+ }
+ }
+ }`,
+ Headers: map[string]string{"Authorization": token},
+ ExpectStatus: http.StatusOK,
+ ExpectBody: "\"code\":0",
+ },
+ {
+ Desc: "get the consumer",
+ Object: ManagerApiExpect(t),
+ Path: "/apisix/admin/consumers/consumer_1",
+ Method: http.MethodGet,
+ Headers: map[string]string{"Authorization": token},
+ ExpectStatus: http.StatusOK,
+ ExpectBody: "\"username\":\"consumer_1\"",
+ Sleep: sleepTime,
+ },
+
+ {
+ Desc: "get the token of jwt ",
+ Object: APISIXExpect(t),
+ Path: "/apisix/plugin/jwt/sign",
+ Query: "key=user-key",
+ Method: http.MethodGet,
+ ExpectStatus: http.StatusOK,
+ Sleep: sleepTime,
+ },
Review comment:
need to valid the token on DP.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]