mcdev
Version:
Accenture Salesforce Marketing Cloud DevTools
170 lines (159 loc) • 6.61 kB
JavaScript
import * as chai from 'chai';
const assert = chai.assert;
import chaiFiles from 'chai-files';
import cache from '../lib/util/cache.js';
import * as testUtils from './utils.js';
import handler from '../lib/index.js';
chai.use(chaiFiles);
describe('type: verification', () => {
beforeEach(() => {
testUtils.mockSetup();
});
afterEach(() => {
testUtils.mockReset();
});
describe('Retrieve ================', () => {
it('Should retrieve a verification', async () => {
// WHEN
const retrieved = await handler.retrieve('testInstance/testBU', ['verification']);
// THEN
assert.equal(process.exitCode, 0, 'retrieve should not have thrown an error');
// get results from cache
const result = cache.getCache();
assert.equal(
result.verification ? Object.keys(result.verification).length : 0,
1,
'only one verification expected'
);
assert.equal(
retrieved['testInstance/testBU']?.verification
? Object.keys(retrieved['testInstance/testBU']?.verification).length
: 0,
1,
'one verifications to be retrieved'
);
assert.deepEqual(
await testUtils.getActualJson('testExisting_automation__s1.7', 'verification'),
await testUtils.getExpectedJson('9999999', 'verification', 'get'),
'returned JSON was not equal expected'
);
assert.equal(
testUtils.getAPIHistoryLength(),
14,
'Unexpected number of requests made. Run testUtils.logAPIHistoryDebug() to see the requests'
);
return;
});
});
describe('Deploy ================', () => {
beforeEach(() => {
testUtils.mockSetup(true);
});
it('Should create & upsert a verification', async () => {
// WHEN
const deployed = await handler.deploy('testInstance/testBU', ['verification']);
// THEN
assert.equal(process.exitCode, 0, 'deploy should not have thrown an error');
// get results from cache
const result = cache.getCache();
assert.equal(
result.verification ? Object.keys(result.verification).length : 0,
2,
'two verifications expected'
);
assert.equal(
deployed['testInstance/testBU']?.verification
? Object.keys(deployed['testInstance/testBU']?.verification).length
: 0,
2,
'two verifications to be deployed'
);
// confirm created item
assert.deepEqual(
await testUtils.getActualJson('testNew_automation__s1.7', 'verification'),
await testUtils.getExpectedJson('9999999', 'verification', 'post'),
'returned new-JSON was not equal expected for insert verification'
);
// confirm updated item
assert.deepEqual(
await testUtils.getActualJson('testExisting_automation__s1.7', 'verification'),
await testUtils.getExpectedJson('9999999', 'verification', 'patch'),
'returned existing-JSON was not equal expected for update verification'
);
// check number of API calls
assert.equal(
testUtils.getAPIHistoryLength(),
16,
'Unexpected number of requests made. Run testUtils.logAPIHistoryDebug() to see the requests'
);
return;
});
});
describe('Templating ================', () => {
it('Should create a verification template via buildTemplate and build it', async () => {
// download first before we test buildTemplate
await handler.retrieve('testInstance/testBU', ['verification']);
// buildTemplate
const result = await handler.buildTemplate(
'testInstance/testBU',
'verification',
['testExisting_automation__s1.7'],
['testSourceMarket']
);
assert.equal(process.exitCode, 0, 'buildTemplate should not have thrown an error');
assert.equal(
result.verification ? Object.keys(result.verification).length : 0,
1,
'only one verification expected'
);
assert.deepEqual(
await testUtils.getActualTemplateJson(
'testExisting_automation__s1.7',
'verification'
),
await testUtils.getExpectedJson('9999999', 'verification', 'template'),
'returned template JSON was not equal expected'
);
// buildDefinition
await handler.buildDefinition(
'testInstance/testBU',
'verification',
['testExisting_automation__s1.7'],
['testTargetMarket']
);
assert.equal(process.exitCode, 0, 'buildDefinition should not have thrown an error');
assert.deepEqual(
await testUtils.getActualDeployJson(
'testTemplated_automation__s1.7',
'verification'
),
await testUtils.getExpectedJson('9999999', 'verification', 'build'),
'returned deployment JSON was not equal expected'
);
assert.equal(
testUtils.getAPIHistoryLength(),
14,
'Unexpected number of requests made. Run testUtils.logAPIHistoryDebug() to see the requests'
);
return;
});
});
describe('Delete ================', () => {
it('Should delete the item', async () => {
// WHEN
const isDeleted = await handler.deleteByKey(
'testInstance/testBU',
'verification',
'testExisting_39f6a488-20eb-4ba0-b0b9'
);
// THEN
assert.equal(
process.exitCode,
0,
'deleteByKey should have thrown an error due to lack of support'
);
assert.equal(isDeleted, true, 'deleteByKey should have returned true for success');
return;
});
});
});