Hassan Khan 271e3c8d56 Fix integration tests
There were several resource names that were incorrectly specified
that were causing the tests to fail. `Utils.getCognitoUserPoolId`
was only returning a single item, which was also causing failures.
2017-05-25 22:19:30 +01:00

30 lines
864 B
JavaScript

'use strict';
const path = require('path');
const expect = require('chai').expect;
const Utils = require('../../../../utils/index');
describe('AWS - Cognito User Pool Trigger: Single User Pool with single ' +
'event with single function', () => {
beforeAll(() => {
Utils.createTestService('aws-nodejs', path.join(__dirname, 'service'));
Utils.deployService();
});
it('should call the specified function when PreSignUp event is triggered', () => Utils
.getCognitoUserPoolId(process.env.COGNITO_USER_POOL_1)
.then((poolId) =>
Utils.createCognitoUser(poolId, 'test@test.com', 'Password123!')
)
.delay(60000)
.then(() => {
const logs = Utils.getFunctionLogs('preSignUp');
expect(/"triggerSource":"PreSignUp_\w+"/g.test(logs)).to.equal(true);
})
);
afterAll(() => {
Utils.removeService();
});
});