The test case pass (#11764)

This commit is contained in:
黄科铭 2024-02-22 14:59:26 +08:00 committed by GitHub
parent fde996d2a6
commit c2f8463e12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 4 deletions

View File

@ -52,8 +52,8 @@ public class ExceptionUtilTest {
assertEquals("", ExceptionUtil.getStackTrace(null));
String stackTrace = ExceptionUtil.getStackTrace(nacosRuntimeException);
assertTrue(stackTrace.contains(
"com.alibaba.nacos.api.exception.runtime.NacosRuntimeException: errCode: 500, errMsg: Test \n"));
"com.alibaba.nacos.api.exception.runtime.NacosRuntimeException: errCode: 500, errMsg: Test"));
assertTrue(stackTrace.contains("at"));
assertTrue(stackTrace.contains("Caused by: java.lang.RuntimeException: I'm caused exception.\n"));
assertTrue(stackTrace.contains("Caused by: java.lang.RuntimeException: I'm caused exception."));
}
}

View File

@ -240,7 +240,10 @@ public class ConfigServletInnerTest {
actualValue = configServletInner.doGetConfig(request, response, dataId, group, tenant,
"auto-tag-test-not-exist", "true", "localhost");
Assert.assertEquals(HttpServletResponse.SC_NOT_FOUND + "", actualValue);
Assert.assertEquals("config data not exist\n", response.getContentAsString());
String expectedContent = "config data not exist";
String actualContent = response.getContentAsString();
Assert.assertTrue(actualContent.contains(expectedContent));
}