From d7ac0ec28f703df2cf3ffe205ba58733eaadb047 Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Tue, 20 Feb 2024 22:13:43 -0800 Subject: [PATCH] Fix test. --- .../java/com/wisemapping/test/rest/RestAppControllerTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wise-api/src/test/java/com/wisemapping/test/rest/RestAppControllerTest.java b/wise-api/src/test/java/com/wisemapping/test/rest/RestAppControllerTest.java index 8f195bc9..79710971 100644 --- a/wise-api/src/test/java/com/wisemapping/test/rest/RestAppControllerTest.java +++ b/wise-api/src/test/java/com/wisemapping/test/rest/RestAppControllerTest.java @@ -39,6 +39,7 @@ import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import static com.wisemapping.test.rest.RestHelper.createDummyUser; import static org.hamcrest.Matchers.containsString; +import static org.hamcrest.Matchers.equalTo; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.user; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; @@ -63,6 +64,6 @@ public class RestAppControllerTest { (MockMvcRequestBuilders.get("/api/restful/app/config")) .andDo(print()) .andExpect(status().isOk()) - .andExpect(content().string(containsString("{\"apiBaseUrl\":\"https://api.wisemapping.com\",\"googleOauth2Url\":\"https://accounts.google.com/o/oauth2/v2/auth?redirect_uri=https://app.wisemapping.com/c/registration-google&prompt=consent&response_type=code&client_id=625682766634-cocbbbbb403iuvps1evecdk6d7phvbkf.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&access_type=offline&state=wisemapping&include_granted_scopes=true\",\"registrationEnabled\":true,\"recaptcha2Enabled\":true,\"recaptcha2SiteKey\":\"some-key\",\"analyticsAccount\":\"\"}"))); + .andExpect(content().string(containsString("{\"apiBaseUrl\":\"https://api.wisemapping.com\",\"googleOauth2Url\":\"https://accounts.google.com/o/oauth2/v2/auth?redirect_uri=https://app.wisemapping.com/c/registration-google&prompt=consent&response_type=code&client_id=625682766634-cocbbbbb403iuvps1evecdk6d7phvbkf.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&access_type=offline&state=wisemapping&include_granted_scopes=true\",\"registrationEnabled\":true,\"recaptcha2Enabled\":true,\"recaptcha2SiteKey\":\"some-key\",\"analyticsAccount\":\"\",\"jwtExpirationMin\":10080}"))); } }