68 lines
2.0 KiB
TypeScript
68 lines
2.0 KiB
TypeScript
import { Qenv } from '@push.rocks/qenv';
|
|
import { SmartNetwork } from '@push.rocks/smartnetwork';
|
|
import { tapNodeTools } from '@git.zone/tstest/tapbundle_node';
|
|
|
|
const testQenv = new Qenv('./', './.nogit/');
|
|
|
|
import * as cloudly from '../../ts/index.js';
|
|
|
|
const stopFunctions: Array<() => Promise<void>> = [];
|
|
|
|
const getPublicPort = async () => {
|
|
if (process.env.SERVEZONE_TEST_PORT) {
|
|
return process.env.SERVEZONE_TEST_PORT;
|
|
}
|
|
const smartnetwork = new SmartNetwork();
|
|
const publicPort = await smartnetwork.findFreePort(30000, 40000, { randomize: true });
|
|
if (!publicPort) {
|
|
throw new Error('Could not find a free Cloudly test port in range 30000-40000');
|
|
}
|
|
return String(publicPort);
|
|
};
|
|
|
|
const smartmongo = await tapNodeTools.createSmartmongo();
|
|
stopFunctions.push(async () => {
|
|
await smartmongo.stopAndDumpToDir('./.nogit/mongodump');
|
|
});
|
|
const smarts3 = await tapNodeTools.createSmarts3();
|
|
await smarts3.createBucket('cloudly_test_bucket');
|
|
stopFunctions.push(async () => {
|
|
await smarts3.stop();
|
|
});
|
|
|
|
export const testCloudlyConfig: cloudly.ICloudlyConfig = {
|
|
cfToken: await testQenv.getEnvVarOnDemand('CF_TOKEN'),
|
|
environment: 'integration',
|
|
letsEncryptEmail: 'test@serve.zone',
|
|
publicUrl: '127.0.0.1',
|
|
publicPort: await getPublicPort(),
|
|
mongoDescriptor: await smartmongo.getMongoDescriptor(),
|
|
s3Descriptor: await smarts3.getS3Descriptor({
|
|
bucketName: 'cloudly_test_bucket'
|
|
}),
|
|
sslMode: 'none',
|
|
servezoneAdminaccount: 'testadmin:testpassword',
|
|
...(() => {
|
|
if (process.env.NPMCI_SECRET01) {
|
|
return {
|
|
hetznerToken: process.env.NPMCI_SECRET01,
|
|
};
|
|
}
|
|
})(),
|
|
};
|
|
|
|
await tapNodeTools.testFileProvider.getDockerAlpineImageAsLocalTarball();
|
|
|
|
export const createCloudly = async () => {
|
|
const cloudlyInstance = new cloudly.Cloudly(testCloudlyConfig);
|
|
return cloudlyInstance;
|
|
};
|
|
|
|
export const stopCloudly = async () => {
|
|
await Promise.all(stopFunctions.map((stopFunction) => stopFunction()));
|
|
};
|
|
|
|
export const getEnvVarOnDemand = async (envVarName: string) => {
|
|
return testQenv.getEnvVarOnDemand(envVarName);
|
|
};
|