Mercurial
diff mrjunejune/test/integration_test.c @ 260:1f9877b637e9
Add Copilot-powered cyberpunk JRPG chat
Integrate the production JRPG chat with Seobeo streaming, Deita persistence, and a Bazel-managed Copilot SDK and LiteLLM inference stack.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <mrjunejune@users.noreply.github.com> |
|---|---|
| date | Wed, 05 Aug 2026 09:19:41 -0700 |
| parents | 667156fcd3e3 |
| children |
line wrap: on
line diff
--- a/mrjunejune/test/integration_test.c Wed Aug 05 09:19:41 2026 -0700 +++ b/mrjunejune/test/integration_test.c Wed Aug 05 09:19:41 2026 -0700 @@ -394,6 +394,7 @@ {"/tools/hls_player", 200, NULL, NULL, NULL, 0}, {"/tools/latex_editor", 200, NULL, NULL, NULL, 0}, {"/talk", 200, NULL, NULL, NULL, 0}, + {"/jrpg", 200, NULL, NULL, NULL, 0}, }; int num_success_tests = sizeof(success_tests) / sizeof(success_tests[0]); @@ -405,6 +406,7 @@ {"/tools/file_converter/index.html", 301, NULL, NULL, NULL, 0}, {"/tools/hls_player/index.html", 301, NULL, NULL, NULL, 0}, {"/tools/latex_editor/index.html", 301, NULL, NULL, NULL, 0}, + {"/jrpg/index.html", 301, NULL, NULL, NULL, 0}, }; int num_redirect_tests = sizeof(redirect_tests) / sizeof(redirect_tests[0]); @@ -412,8 +414,7 @@ {"/nonexistent", 404, NULL, NULL, NULL, 0}, {"/does/not/exist", 404, NULL, NULL, NULL, 0}, {"/missing.html", 404, NULL, NULL, NULL, 0}, - {"/jrpg", 404, NULL, NULL, NULL, 0}, - {"/jrpg/index.html", 404, NULL, NULL, NULL, 0}, + {"/api/inference/health", 503, NULL, NULL, NULL, 0}, }; int num_failure_tests = sizeof(failure_tests) / sizeof(failure_tests[0]);