38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import { tap, expect } from '@pushrocks/tapbundle';
|
|
import { Qenv } from '@pushrocks/qenv';
|
|
|
|
const testQenv = new Qenv('./', './.nogit/');
|
|
|
|
import * as smartacme from '../ts/index';
|
|
|
|
let smartAcmeInstance: smartacme.SmartAcme;
|
|
|
|
tap.test('should create a valid instance of SmartAcme', async () => {
|
|
smartAcmeInstance = new smartacme.SmartAcme({
|
|
accountEmail: 'domains@lossless.org',
|
|
accountPrivateKey: null,
|
|
mongoDescriptor: {
|
|
mongoDbName: testQenv.getEnvVarOnDemand('MONGODB_DATABASE'),
|
|
mongoDbPass: testQenv.getEnvVarOnDemand('MONGODB_PASSWORD'),
|
|
mongoDbUrl: testQenv.getEnvVarOnDemand('MONGODB_URL')
|
|
},
|
|
removeChallenge: async (...args) => {
|
|
console.log(args);
|
|
},
|
|
setChallenge: async (...args) => {
|
|
console.log(args);
|
|
},
|
|
validateRemoteRequest: async () => {
|
|
return true;
|
|
}
|
|
});
|
|
await smartAcmeInstance.init();
|
|
// await smartAcmeInstance.getCertificateForDomain('bleu.de');
|
|
});
|
|
|
|
tap.test('should stop correctly', async () => {
|
|
await smartAcmeInstance.stop();
|
|
});
|
|
|
|
tap.start();
|