2023-08-28 21:41:57 +02:00
|
|
|
import { PostgreSqlContainer } from '@testcontainers/postgresql';
|
2023-10-19 00:02:42 +02:00
|
|
|
import { access } from 'fs/promises';
|
2023-10-06 23:32:28 +02:00
|
|
|
import path from 'path';
|
|
|
|
|
2023-07-11 23:54:44 +02:00
|
|
|
export default async () => {
|
2023-10-06 23:32:28 +02:00
|
|
|
let IMMICH_TEST_ASSET_PATH: string = '';
|
2023-07-11 23:54:44 +02:00
|
|
|
|
2023-10-06 23:32:28 +02:00
|
|
|
if (process.env.IMMICH_TEST_ASSET_PATH === undefined) {
|
2024-01-10 06:04:16 +02:00
|
|
|
IMMICH_TEST_ASSET_PATH = path.normalize(`${__dirname}/../../test/assets/`);
|
2023-10-06 23:32:28 +02:00
|
|
|
process.env.IMMICH_TEST_ASSET_PATH = IMMICH_TEST_ASSET_PATH;
|
|
|
|
} else {
|
|
|
|
IMMICH_TEST_ASSET_PATH = process.env.IMMICH_TEST_ASSET_PATH;
|
|
|
|
}
|
2023-07-11 23:54:44 +02:00
|
|
|
|
2023-10-06 23:32:28 +02:00
|
|
|
const directoryExists = async (dirPath: string) =>
|
2023-10-19 00:02:42 +02:00
|
|
|
await access(dirPath)
|
2023-10-06 23:32:28 +02:00
|
|
|
.then(() => true)
|
|
|
|
.catch(() => false);
|
2023-07-11 23:54:44 +02:00
|
|
|
|
2023-10-06 23:32:28 +02:00
|
|
|
if (!(await directoryExists(`${IMMICH_TEST_ASSET_PATH}/albums`))) {
|
|
|
|
throw new Error(
|
|
|
|
`Test assets not found. Please checkout https://github.com/immich-app/test-assets into ${IMMICH_TEST_ASSET_PATH} before testing`,
|
|
|
|
);
|
|
|
|
}
|
2023-07-11 23:54:44 +02:00
|
|
|
|
2023-10-06 23:32:28 +02:00
|
|
|
if (process.env.DB_HOSTNAME === undefined) {
|
|
|
|
// DB hostname not set which likely means we're not running e2e through docker compose. Start a local postgres container.
|
2024-02-07 04:46:38 +02:00
|
|
|
const pg = await new PostgreSqlContainer('tensorchord/pgvecto-rs:pg14-v0.2.0')
|
2023-10-06 23:32:28 +02:00
|
|
|
.withExposedPorts(5432)
|
|
|
|
.withDatabase('immich')
|
|
|
|
.withUsername('postgres')
|
|
|
|
.withPassword('postgres')
|
|
|
|
.withReuse()
|
|
|
|
.start();
|
|
|
|
|
|
|
|
process.env.DB_URL = pg.getConnectionUri();
|
|
|
|
}
|
|
|
|
|
|
|
|
process.env.NODE_ENV = 'development';
|
2023-12-19 04:29:26 +02:00
|
|
|
process.env.IMMICH_CONFIG_FILE = path.normalize(`${__dirname}/immich-e2e-config.json`);
|
2023-10-06 23:32:28 +02:00
|
|
|
process.env.TZ = 'Z';
|
2023-07-11 23:54:44 +02:00
|
|
|
};
|