diff --git a/site/tests/cli_runner.uce b/site/tests/cli_runner.uce index dae3969..1076399 100644 --- a/site/tests/cli_runner.uce +++ b/site/tests/cli_runner.uce @@ -295,13 +295,13 @@ void cli_run_site_suite() for(String marker : { "compile error", "runtime error", "timed out acquiring compile lock", "near line" }) if(cli_contains(lower, marker)) ok = false; - if(cli_contains(lower, "
") && cli_site_body_reports_failure(lower)) + if(cli_contains(lower, "
") && !cli_contains(lower, ">failed 0") && cli_site_body_reports_failure(lower)) ok = false; if(ok) break; } String name = "uce_site_suite:site tests " + (file == "index.uce" ? "index" : file == "io.uce" ? "filesystem" : file == "websockets.ws.uce" ? "websockets page" : replace(replace(replace(file, ".uce", ""), ".ws", ""), "_", " ")); - String fail_detail = "; status=" + std::to_string(res.status) + "; expected_marker=" + (cli_contains(res.body, expected) ? "yes" : "no") + "; summary=" + (cli_contains(lower, "
") ? "yes" : "no") + "; reports_failure=" + (cli_site_body_reports_failure(lower) ? "yes" : "no") + "; body=" + cli_truncate(res.body); + String fail_detail = "; status=" + std::to_string(res.status) + "; expected_marker=" + (cli_contains(res.body, expected) ? "yes" : "no") + "; summary=" + (cli_contains(lower, "
") ? "yes" : "no") + "; failed_zero=" + (cli_contains(lower, ">failed 0") ? "yes" : "no") + "; reports_failure=" + (cli_site_body_reports_failure(lower) ? "yes" : "no") + "; body=" + cli_truncate(res.body); cli_test_case(name, ok, (ok ? "HTTP 200 with suite page marker and no failed cases for /tests/" : "site suite failed for /tests/") + file + (ok ? "" : fail_detail)); } }