-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c6031e
commit aefc460
Showing
4 changed files
with
26 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
GET http://localhost:9090/plugins/restapi/v1/chatrooms | ||
Authorization: {{authkey}} | ||
HTTP 200 | ||
|
||
GET http://localhost:9090/plugins/restapi/v1/sessions | ||
Authorization: {{authkey}} | ||
HTTP 200 | ||
[Asserts] | ||
xpath "/sessions[not(child::node())]" count == 1 # sessions at the root, with no child nodes | ||
|
||
|
||
GET http://localhost:9090/plugins/restapi/v1/system/readiness/server | ||
Authorization: {{authkey}} | ||
HTTP 200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
GET {{host}}/plugins/restapi/v1/clustering/status | ||
Authorization: {{authkey}} | ||
HTTP 200 | ||
[Asserts] | ||
xpath "string(/clustering/status)" == "Disabled" | ||
|
||
GET {{host}}/plugins/restapi/v1/clustering/nodes | ||
Authorization: {{authkey}} | ||
HTTP 200 | ||
[Asserts] | ||
xpath "/clusterNodes[not(child::node())]" exists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters