mcdev
Version:
Accenture Salesforce Marketing Cloud DevTools
163 lines (152 loc) • 6.58 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: transactionalEmail', () => {
beforeEach(() => {
testUtils.mockSetup();
});
afterEach(() => {
testUtils.mockReset();
});
describe('Retrieve ================', () => {
it('Should retrieve a transactionalEmail', async () => {
// WHEN
await handler.retrieve('testInstance/testBU', ['transactionalEmail']);
// THEN
assert.equal(process.exitCode, 0, 'retrieve should not have thrown an error');
// get results from cache
const result = cache.getCache();
assert.equal(
result.transactionalEmail ? Object.keys(result.transactionalEmail).length : 0,
3,
'unexpected number of transactionalEmail'
);
assert.deepEqual(
await testUtils.getActualJson('testExisting_temail', 'transactionalEmail'),
await testUtils.getExpectedJson('9999999', 'transactionalEmail', '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 transactionalEmail', async () => {
// WHEN
await handler.deploy('testInstance/testBU', ['transactionalEmail']);
// THEN
assert.equal(process.exitCode, 0, 'deploy should not have thrown an error');
// get results from cache
const result = cache.getCache();
assert.equal(
result.transactionalEmail ? Object.keys(result.transactionalEmail).length : 0,
4,
'unexpected number of transactionalEmails'
);
// confirm created item
assert.deepEqual(
await testUtils.getActualJson('testNew_temail', 'transactionalEmail'),
await testUtils.getExpectedJson('9999999', 'transactionalEmail', 'post'),
'returned JSON was not equal expected for insert transactionalEmail'
);
// confirm updated item
assert.deepEqual(
await testUtils.getActualJson('testExisting_temail', 'transactionalEmail'),
await testUtils.getExpectedJson('9999999', 'transactionalEmail', 'patch'),
'returned JSON was not equal expected for update transactionalEmail'
);
// check number of API calls
assert.equal(
testUtils.getAPIHistoryLength(),
16,
'Unexpected number of requests made. Run testUtils.logAPIHistoryDebug() to see the requests'
);
return;
});
it('Should NOT change the key during update with --changeKeyValue and instead fail due to missing support', async () => {
// WHEN
handler.setOptions({ changeKeyValue: 'updatedKey' });
await handler.deploy(
'testInstance/testBU',
['transactionalEmail'],
['testExisting_temail']
);
// THEN
assert.equal(
process.exitCode,
1,
'deploy should have thrown an error due to lack of support'
);
return;
});
});
describe('Templating ================', () => {
// it.skip('Should create a transactionalEmail template via retrieveAsTemplate and build it');
it('Should create a transactionalEmail template via buildTemplate and build it', async () => {
// download first before we test buildTemplate
await handler.retrieve('testInstance/testBU', ['transactionalEmail']);
// buildTemplate
const result = await handler.buildTemplate(
'testInstance/testBU',
'transactionalEmail',
['testExisting_temail'],
['testSourceMarket']
);
assert.equal(process.exitCode, 0, 'buildTemplate should not have thrown an error');
assert.equal(
result.transactionalEmail ? Object.keys(result.transactionalEmail).length : 0,
1,
'only one transactionalEmail expected'
);
assert.deepEqual(
await testUtils.getActualTemplateJson('testExisting_temail', 'transactionalEmail'),
await testUtils.getExpectedJson('9999999', 'transactionalEmail', 'template'),
'returned template JSON was not equal expected'
);
// buildDefinition
await handler.buildDefinition(
'testInstance/testBU',
'transactionalEmail',
['testExisting_temail'],
['testTargetMarket']
);
assert.equal(process.exitCode, 0, 'buildDefinition should not have thrown an error');
assert.deepEqual(
await testUtils.getActualDeployJson('testTemplated_temail', 'transactionalEmail'),
await testUtils.getExpectedJson('9999999', 'transactionalEmail', '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',
'transactionalEmail',
'testExisting_temail'
);
// THEN
assert.equal(process.exitCode, 0, 'delete should not have thrown an error');
assert.equal(isDeleted, true, 'should have deleted the item');
return;
});
});
});