aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sra-report/test/test_runner.ts
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-03-13 02:00:08 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-03-14 06:54:33 +0800
commitb08374f0ba2d1c163f1c8d75a06f642101e1e15d (patch)
treea09e61a6131cc0dbd35fc963f09b1a774ca61959 /packages/sra-report/test/test_runner.ts
parentdf9e7385ad86a16db195fa75db18dd6ee21eedf1 (diff)
downloaddexon-sol-tools-b08374f0ba2d1c163f1c8d75a06f642101e1e15d.tar
dexon-sol-tools-b08374f0ba2d1c163f1c8d75a06f642101e1e15d.tar.gz
dexon-sol-tools-b08374f0ba2d1c163f1c8d75a06f642101e1e15d.tar.bz2
dexon-sol-tools-b08374f0ba2d1c163f1c8d75a06f642101e1e15d.tar.lz
dexon-sol-tools-b08374f0ba2d1c163f1c8d75a06f642101e1e15d.tar.xz
dexon-sol-tools-b08374f0ba2d1c163f1c8d75a06f642101e1e15d.tar.zst
dexon-sol-tools-b08374f0ba2d1c163f1c8d75a06f642101e1e15d.zip
Add scaffolding for sra-report collection unit tests
Diffstat (limited to 'packages/sra-report/test/test_runner.ts')
-rw-r--r--packages/sra-report/test/test_runner.ts138
1 files changed, 138 insertions, 0 deletions
diff --git a/packages/sra-report/test/test_runner.ts b/packages/sra-report/test/test_runner.ts
new file mode 100644
index 000000000..294cc35d3
--- /dev/null
+++ b/packages/sra-report/test/test_runner.ts
@@ -0,0 +1,138 @@
+import * as chai from 'chai';
+import * as chaiAsPromised from 'chai-as-promised';
+import * as dirtyChai from 'dirty-chai';
+import * as _ from 'lodash';
+import 'mocha';
+import { NewmanRunExecution, NewmanRunExecutionAssertion, NewmanRunSummary } from 'newman';
+import * as nock from 'nock';
+
+import * as sraReportCollectionJSON from '../../postman_collections/sra_report.postman_collection.json';
+import { utils } from '../src/utils';
+
+import * as postmanEnvironmentJSON from './environments/postman_environment.json';
+
+chai.config.includeStack = true;
+chai.use(dirtyChai);
+chai.use(chaiAsPromised);
+const expect = chai.expect;
+
+const CONTENT_TYPE_ASSERTION_NAME = 'Has Content-Type header with value application/json';
+const SCHEMA_ASSERTION_NAME = 'Schema is valid';
+const baseNewmanRunOptions = {
+ collection: sraReportCollectionJSON,
+ environment: postmanEnvironmentJSON,
+ reporter: {
+ cli: {
+ noConsole: true,
+ },
+ },
+};
+
+export const testRunner = {
+ runContentTypeTests(
+ nockInterceptor: nock.Interceptor,
+ postmanCollectionFolderName: string,
+ postmanCollectionRequestName: string,
+ ) {
+ const newmanRunOptions = {
+ ...baseNewmanRunOptions,
+ folder: postmanCollectionFolderName,
+ };
+ describe(CONTENT_TYPE_ASSERTION_NAME, () => {
+ it('fails when there are no headers', async () => {
+ nockInterceptor.reply(200, {});
+ const summary = await utils.newmanRunAsync(newmanRunOptions);
+ const error = findAssertionErrorIfExists(
+ summary,
+ postmanCollectionRequestName,
+ CONTENT_TYPE_ASSERTION_NAME,
+ );
+ const errorMessage = _.get(error, 'message');
+ expect(error).to.not.be.undefined();
+ expect(errorMessage).to.equal(`expected response to have header with key 'Content-Type'`);
+ });
+ it('fails when Content-Type header exists but not with value application/json', async () => {
+ const headers = {
+ 'Content-Type': 'text/html',
+ };
+ nockInterceptor.reply(200, {}, headers);
+ const summary = await utils.newmanRunAsync(newmanRunOptions);
+ const error = findAssertionErrorIfExists(
+ summary,
+ postmanCollectionRequestName,
+ CONTENT_TYPE_ASSERTION_NAME,
+ );
+ const errorMessage = _.get(error, 'message');
+ expect(error).to.not.be.undefined();
+ expect(errorMessage).to.equal(`expected 'text/html' to include 'application/json'`);
+ });
+ it('passes when Content-Type header exists with value application/json', async () => {
+ const headers = {
+ 'Content-Type': 'charset=utf-8; application/json',
+ };
+ nockInterceptor.reply(200, {}, headers);
+ const summary = await utils.newmanRunAsync(newmanRunOptions);
+ const error = findAssertionErrorIfExists(
+ summary,
+ postmanCollectionRequestName,
+ CONTENT_TYPE_ASSERTION_NAME,
+ );
+ expect(error).to.be.undefined();
+ });
+ });
+ },
+ runSchemaTests(
+ nockInterceptor: nock.Interceptor,
+ postmanCollectionFolderName: string,
+ postmanCollectionRequestName: string,
+ malformedJson: object,
+ correctJson: object,
+ ) {
+ const newmanRunOptions = {
+ ...baseNewmanRunOptions,
+ folder: postmanCollectionFolderName,
+ };
+ describe(SCHEMA_ASSERTION_NAME, () => {
+ it('fails when schema is invalid', async () => {
+ nockInterceptor.reply(200, malformedJson);
+ const summary = await utils.newmanRunAsync(newmanRunOptions);
+ const error = findAssertionErrorIfExists(summary, postmanCollectionRequestName, SCHEMA_ASSERTION_NAME);
+ const errorMessage = _.get(error, 'message');
+ expect(error).to.not.be.undefined();
+ expect(errorMessage).to.equal(`expected false to be true`);
+ });
+ it('passes when schema is valid', async () => {
+ nockInterceptor.reply(200, correctJson);
+ const summary = await utils.newmanRunAsync(newmanRunOptions);
+ const error = findAssertionErrorIfExists(summary, postmanCollectionRequestName, SCHEMA_ASSERTION_NAME);
+ const errorMessage = _.get(error, 'message');
+ expect(error).to.be.undefined();
+ });
+ });
+ },
+};
+
+function findAssertionErrorIfExists(
+ summary: NewmanRunSummary,
+ postmanCollectionRequestName: string,
+ postmanCollectionAssertionName: string,
+) {
+ const matchingExecutionIfExists = _.find(summary.run.executions, (execution: NewmanRunExecution) => {
+ return execution.item.name === postmanCollectionRequestName;
+ });
+ if (_.isUndefined(matchingExecutionIfExists)) {
+ return undefined;
+ }
+ const matchingAssertionIfExists = _.find(
+ matchingExecutionIfExists.assertions,
+ (assertion: NewmanRunExecutionAssertion) => {
+ return assertion.assertion === postmanCollectionAssertionName;
+ },
+ );
+ if (_.isUndefined(matchingAssertionIfExists)) {
+ return undefined;
+ } else {
+ const error = matchingAssertionIfExists.error;
+ return error;
+ }
+}