fix(tests): Refactored test setup for consistency and isolated config initialization.
This commit is contained in:
parent
899e5b0a7d
commit
28cd6d1b49
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-11-06 - 4.3.7 - fix(tests)
|
||||||
|
Refactored test setup for consistency and isolated config initialization.
|
||||||
|
|
||||||
|
- test/helpers/cloudlyfactory.ts: Test configuration setup was refactored to ensure consistent initialization of cloudly configuration across tests.
|
||||||
|
- test/test.apiclient.ts: Updated cloudlyApiClient test setup to use testCloudlyConfig for dynamic port allocation.
|
||||||
|
|
||||||
## 2024-11-06 - 4.3.6 - fix(test)
|
## 2024-11-06 - 4.3.6 - fix(test)
|
||||||
Enhance test helpers with dynamic Hetzner token retrieval.
|
Enhance test helpers with dynamic Hetzner token retrieval.
|
||||||
|
|
||||||
|
@ -5,37 +5,39 @@ import * as cloudly from '../../ts/index.js';
|
|||||||
|
|
||||||
const stopFunctions: Array<() => Promise<void>> = [];
|
const stopFunctions: Array<() => Promise<void>> = [];
|
||||||
|
|
||||||
|
const tapToolsNodeMod = await import('@push.rocks/tapbundle/node');
|
||||||
|
const smartmongo = await tapToolsNodeMod.tapNodeTools.createSmartmongo();
|
||||||
|
stopFunctions.push(async () => {
|
||||||
|
await smartmongo.stopAndDumpToDir('./.nogit/mongodump');
|
||||||
|
});
|
||||||
|
const smarts3 = await tapToolsNodeMod.tapNodeTools.createSmarts3();
|
||||||
|
await smarts3.createBucket('cloudly-test');
|
||||||
|
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: '8080',
|
||||||
|
mongoDescriptor: await smartmongo.getMongoDescriptor(),
|
||||||
|
s3Descriptor: await smarts3.getS3Descriptor(),
|
||||||
|
sslMode: 'none',
|
||||||
|
...(() => {
|
||||||
|
if (process.env.NPMCI_SECRET01) {
|
||||||
|
return {
|
||||||
|
hetznerToken: process.env.NPMCI_SECRET01,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
})(),
|
||||||
|
};
|
||||||
|
|
||||||
export const createCloudly = async () => {
|
export const createCloudly = async () => {
|
||||||
const tapToolsNodeMod = await import('@push.rocks/tapbundle/node');
|
const cloudlyInstance = new cloudly.Cloudly(testCloudlyConfig);
|
||||||
const smartmongo = await tapToolsNodeMod.tapNodeTools.createSmartmongo();
|
|
||||||
stopFunctions.push(async () => {
|
|
||||||
await smartmongo.stopAndDumpToDir('./.nogit/mongodump');
|
|
||||||
});
|
|
||||||
const smarts3 = await tapToolsNodeMod.tapNodeTools.createSmarts3();
|
|
||||||
await smarts3.createBucket('cloudly-test');
|
|
||||||
stopFunctions.push(async () => {
|
|
||||||
await smarts3.stop();
|
|
||||||
});
|
|
||||||
const cloudlyConfig: cloudly.ICloudlyConfig = {
|
|
||||||
cfToken: await testQenv.getEnvVarOnDemand('CF_TOKEN'),
|
|
||||||
environment: 'integration',
|
|
||||||
letsEncryptEmail: 'test@serve.zone',
|
|
||||||
publicUrl: 'localhost',
|
|
||||||
publicPort: '8080',
|
|
||||||
mongoDescriptor: await smartmongo.getMongoDescriptor(),
|
|
||||||
s3Descriptor: await smarts3.getS3Descriptor(),
|
|
||||||
sslMode: 'none',
|
|
||||||
...(() => {
|
|
||||||
if (process.env.NPMCI_SECRET01) {
|
|
||||||
return {
|
|
||||||
hetznerToken: process.env.NPMCI_SECRET01
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})()
|
|
||||||
};
|
|
||||||
const cloudlyInstance = new cloudly.Cloudly(cloudlyConfig);
|
|
||||||
return cloudlyInstance;
|
return cloudlyInstance;
|
||||||
}
|
};
|
||||||
|
|
||||||
export const stopCloudly = async () => {
|
export const stopCloudly = async () => {
|
||||||
await Promise.all(stopFunctions.map((stopFunction) => stopFunction()));
|
await Promise.all(stopFunctions.map((stopFunction) => stopFunction()));
|
||||||
@ -43,5 +45,4 @@ export const stopCloudly = async () => {
|
|||||||
|
|
||||||
export const getEnvVarOnDemand = async (envVarName: string) => {
|
export const getEnvVarOnDemand = async (envVarName: string) => {
|
||||||
return testQenv.getEnvVarOnDemand(envVarName);
|
return testQenv.getEnvVarOnDemand(envVarName);
|
||||||
}
|
};
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ tap.preTask('should create a new machine user for testing', async () => {
|
|||||||
tap.test('should create a new cloudlyApiClient', async () => {
|
tap.test('should create a new cloudlyApiClient', async () => {
|
||||||
testClient = new cloudlyApiClient.CloudlyApiClient({
|
testClient = new cloudlyApiClient.CloudlyApiClient({
|
||||||
registerAs: 'api',
|
registerAs: 'api',
|
||||||
cloudlyUrl: `http://localhost:${await helpers.getEnvVarOnDemand('SERVEZONE_PORT')}`,
|
cloudlyUrl: `http://localhost:${helpers.testCloudlyConfig.publicPort}`,
|
||||||
});
|
});
|
||||||
await testClient.start();
|
await testClient.start();
|
||||||
expect(testClient).toBeTruthy();
|
expect(testClient).toBeTruthy();
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/cloudly',
|
name: '@serve.zone/cloudly',
|
||||||
version: '4.3.6',
|
version: '4.3.7',
|
||||||
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/cloudly',
|
name: '@serve.zone/cloudly',
|
||||||
version: '4.3.6',
|
version: '4.3.7',
|
||||||
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user