openvidu-test-e2e: fix restApiTest POST /api/tokens

pull/535/head
pabloFuente 2020-09-07 16:25:04 +02:00
parent 47f0641909
commit d66ae126f6
1 changed files with 2 additions and 2 deletions

View File

@ -2549,7 +2549,7 @@ public class OpenViduTestAppE2eTest {
// 200 // 200
body = "{'session': 'CUSTOM_SESSION_ID', 'role': 'MODERATOR', 'data': 'SERVER_DATA', 'kurentoOptions': {'allowedFilters': ['GStreamerFilter']}}"; body = "{'session': 'CUSTOM_SESSION_ID', 'role': 'MODERATOR', 'data': 'SERVER_DATA', 'kurentoOptions': {'allowedFilters': ['GStreamerFilter']}}";
res = restClient.rest(HttpMethod.POST, "/api/tokens", body, HttpStatus.SC_OK, true, res = restClient.rest(HttpMethod.POST, "/api/tokens", body, HttpStatus.SC_OK, true,
"{'id':'STR','session':'STR','role':'STR','data':'STR','token':'STR','kurentoOptions':{'allowedFilters':['STR']}}"); "{'id':'STR','session':'STR','role':'STR','record':true,'data':'STR','token':'STR','kurentoOptions':{'allowedFilters':['STR']}}");
final String token1 = res.get("token").getAsString(); final String token1 = res.get("token").getAsString();
Assert.assertEquals("JSON return value from /api/tokens should have equal srtings in 'id' and 'token'", Assert.assertEquals("JSON return value from /api/tokens should have equal srtings in 'id' and 'token'",
res.get("id").getAsString(), token1); res.get("id").getAsString(), token1);
@ -2558,7 +2558,7 @@ public class OpenViduTestAppE2eTest {
// Default values // Default values
body = "{'session': 'CUSTOM_SESSION_ID'}"; body = "{'session': 'CUSTOM_SESSION_ID'}";
res = restClient.rest(HttpMethod.POST, "/api/tokens", body, HttpStatus.SC_OK, true, res = restClient.rest(HttpMethod.POST, "/api/tokens", body, HttpStatus.SC_OK, true,
"{'id':'STR','session':'STR','role':'STR','data':'STR','token':'STR'}"); "{'id':'STR','session':'STR','role':'STR','data':'STR','record':true,'token':'STR'}");
final String token2 = res.get("id").getAsString(); final String token2 = res.get("id").getAsString();
/** POST /api/signal (NOT ACTIVE SESSION) **/ /** POST /api/signal (NOT ACTIVE SESSION) **/