d13e86ba46
Rebranded src code and scripts to SPT Co-authored-by: clodan <clodan@clodan.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/345 Co-authored-by: Alex <clodan@noreply.dev.sp-tarkov.com> Co-committed-by: Alex <clodan@noreply.dev.sp-tarkov.com>
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
import "reflect-metadata";
|
|
|
|
import path from "node:path";
|
|
import { DependencyContainer, Lifecycle, container } from "tsyringe";
|
|
import type { Environment } from "vitest";
|
|
import { Container } from "@spt/di/Container";
|
|
import { IDatabaseTables } from "@spt/models/spt/server/IDatabaseTables";
|
|
import { DatabaseServer } from "@spt/servers/DatabaseServer";
|
|
import { ImporterUtil } from "@spt/utils/ImporterUtil";
|
|
|
|
// Manually mock the logger.
|
|
import { WinstonLogger } from "@tests/__mocks__/WinstonLogger.mock";
|
|
|
|
export default <Environment>{
|
|
name: "spt-server",
|
|
transformMode: "ssr",
|
|
async setup()
|
|
{
|
|
// Register all of the dependencies in the container.
|
|
Container.registerTypes(container);
|
|
Container.registerListTypes(container);
|
|
|
|
// Override registration to the container.
|
|
container.register<WinstonLogger>("WinstonLogger", WinstonLogger, { lifecycle: Lifecycle.Singleton });
|
|
|
|
// Import the database.
|
|
await importDatabase(container);
|
|
|
|
return {
|
|
async teardown()
|
|
{},
|
|
};
|
|
},
|
|
};
|
|
|
|
/**
|
|
* Reads the database JSON files and imports them into memory.
|
|
*
|
|
* @param container The dependency container.
|
|
* @returns A void promise.
|
|
*/
|
|
async function importDatabase(container: DependencyContainer): Promise<void>
|
|
{
|
|
const importerUtil = container.resolve<ImporterUtil>("ImporterUtil");
|
|
const databaseServer = container.resolve<DatabaseServer>("DatabaseServer");
|
|
|
|
// Read the data from the JSON files.
|
|
const databaseDir = path.resolve("./assets/database");
|
|
const dataToImport = await importerUtil.loadAsync<IDatabaseTables>(`${databaseDir}/`);
|
|
|
|
// Save the data to memory.
|
|
databaseServer.setTables(dataToImport);
|
|
}
|