2019-12-25 07:17:02 +08:00
|
|
|
import { initialize_application } from "./index";
|
2020-01-07 04:09:44 +08:00
|
|
|
import { LogHandler, LogManager } from "../core/Logger";
|
2019-12-25 07:17:02 +08:00
|
|
|
import { FileSystemHttpClient } from "../../test/src/core/FileSystemHttpClient";
|
|
|
|
import { timeout } from "../../test/src/utils";
|
2020-01-06 01:40:35 +08:00
|
|
|
import { Random } from "../core/Random";
|
2020-01-07 04:09:44 +08:00
|
|
|
import { Severity } from "../core/Severity";
|
2020-01-17 21:23:50 +08:00
|
|
|
import { StubClock } from "../../test/src/core/StubClock";
|
2020-04-26 04:17:26 +08:00
|
|
|
import { STUB_THREE_RENDERER } from "../../test/src/core/rendering/StubThreeRenderer";
|
2019-12-25 07:17:02 +08:00
|
|
|
|
|
|
|
for (const path of [undefined, "/viewer", "/quest_editor", "/hunt_optimizer"]) {
|
|
|
|
const with_path = path == undefined ? "without specific path" : `with path ${path}`;
|
|
|
|
|
2019-12-25 07:53:17 +08:00
|
|
|
test(`Initialization and shutdown ${with_path} should succeed without throwing or logging errors.`, async () => {
|
2019-12-25 07:17:02 +08:00
|
|
|
const logged_errors: string[] = [];
|
|
|
|
|
2020-01-07 04:09:44 +08:00
|
|
|
const handler: LogHandler = ({ severity, message }) => {
|
|
|
|
if (severity >= Severity.Error) {
|
2019-12-25 07:17:02 +08:00
|
|
|
logged_errors.push(message);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return LogManager.with_default_handler(handler, async () => {
|
|
|
|
if (path != undefined) {
|
|
|
|
window.location.hash = path;
|
|
|
|
}
|
|
|
|
|
|
|
|
const app = initialize_application(
|
|
|
|
new FileSystemHttpClient(),
|
2020-01-06 01:40:35 +08:00
|
|
|
new Random(() => 0.27),
|
2020-01-17 21:23:50 +08:00
|
|
|
new StubClock(new Date("2020-01-01T15:40:20Z")),
|
2020-04-26 04:17:26 +08:00
|
|
|
() => STUB_THREE_RENDERER,
|
2019-12-25 07:17:02 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
expect(app).toBeDefined();
|
|
|
|
expect(logged_errors).toEqual([]);
|
|
|
|
|
2019-12-25 07:53:17 +08:00
|
|
|
await timeout(1000);
|
2019-12-25 07:17:02 +08:00
|
|
|
|
|
|
|
app.dispose();
|
|
|
|
|
|
|
|
expect(logged_errors).toEqual([]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|