UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

156 lines • 7.62 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const path_1 = __importDefault(require("path")); const spruce_skill_utils_1 = require("@sprucelabs/spruce-skill-utils"); const test_utils_1 = __importStar(require("@sprucelabs/test-utils")); const test_utils_2 = require("@sprucelabs/test-utils"); const ServiceFactory_1 = __importDefault(require("../../services/ServiceFactory")); class BulkImportingTest extends test_utils_1.default { static importer; static async beforeEach() { // await super.beforeEach() const factory = new ServiceFactory_1.default(); this.importer = factory.Service(this.cwd, 'import'); const tmpDir = this.resolvePath('.tmp'); spruce_skill_utils_1.diskUtil.deleteDir(tmpDir); } static async importerHasBulkImportMethod() { test_utils_1.assert.isFunction(this.importer.bulkImport); } static async canImportSingleFile() { const [schemaOne] = await this.importer.bulkImport([ this.resolveTestPath('test_builders/v2020_06_23/schemaOne.builder.ts'), ]); test_utils_1.assert.isTruthy(schemaOne); test_utils_1.assert.isTruthy(schemaOne.id); test_utils_1.assert.isEqual(schemaOne.id, 'schemaOne'); } static async importingNothingGoesFast() { const results = await this.importer.bulkImport([]); test_utils_1.assert.isLength(results, 0); } static async canImportTwoFiles() { const [schemaOne, schemaTwo] = await this.importer.bulkImport([ this.resolveTestPath('test_builders/v2020_06_23/schemaOne.builder.ts'), this.resolveTestPath('test_builders/v2020_06_23/schemaTwo.builder.ts'), ]); test_utils_1.assert.isTruthy(schemaOne); test_utils_1.assert.isTruthy(schemaTwo); test_utils_1.assert.isTruthy(schemaTwo.id, 'schemaTwo'); } static async shouldCleanupTmpDir() { await this.importer.bulkImport([ this.resolveTestPath('test_builders/v2020_06_23/schemaOne.builder.ts'), this.resolveTestPath('test_builders/v2020_06_23/schemaTwo.builder.ts'), ]); const tmpDir = this.resolvePath('.tmp'); test_utils_1.assert.isFalse(spruce_skill_utils_1.diskUtil.doesDirExist(tmpDir)); } static async cleansUpOnError() { await test_utils_1.assert.doesThrowAsync(() => this.importer.bulkImport([ this.resolveTestPath('test_builders_one_bad/v2020_06_23/badSchema.builder.ts'), ])); const tmpDir = this.resolvePath('.tmp'); test_utils_1.assert.isFalse(spruce_skill_utils_1.diskUtil.doesDirExist(tmpDir)); } static async throwsOnTheActualFileWithAnError() { const err = await test_utils_1.assert.doesThrowAsync(() => this.importer.bulkImport([ this.resolveTestPath('test_builders_one_bad/v2020_06_23/badSchema.builder.ts'), ])); test_utils_2.errorAssert.assertError(err, 'FAILED_TO_IMPORT'); test_utils_1.assert.doesInclude(err.options.file, 'badSchema.builder.ts'); } static async throwsOnTheFirstActualFileWithAnErrorWithManyFiles() { const err = await test_utils_1.assert.doesThrowAsync(() => this.importer.bulkImport([ this.resolveTestPath('test_builders_two_bad/v2020_06_23/anotherBad.builder.ts'), this.resolveTestPath('test_builders_two_bad/v2020_06_23/badSchema.builder.ts'), this.resolveTestPath('test_builders/v2020_06_23/schemaTwo.builder.ts'), this.resolveTestPath('test_builders/v2020_06_23/schemaOne.builder.ts'), ])); test_utils_2.errorAssert.assertError(err, 'FAILED_TO_IMPORT'); test_utils_1.assert.doesInclude(err.options.file, 'anotherBad.builder.ts'); } static async helpfulErrorWhenImportNotExportedAsDefault() { const err = await test_utils_1.assert.doesThrowAsync(() => this.importer.bulkImport([ this.resolveTestPath('test_builders/v2020_06_23/schemaTwo.builder.ts'), this.resolveTestPath('test_builders/v2020_06_23/schemaOne.builder.ts'), this.resolveTestPath('test_builders_two_bad/v2020_06_23/notDefault.builder.ts'), ])); test_utils_2.errorAssert.assertError(err, 'FAILED_TO_IMPORT'); test_utils_1.assert.doesInclude(err.options.file, 'notDefault.builder.ts'); } static resolveTestPath(...pathAfterTestDirsAndFiles) { return path_1.default.join(this.cwd, 'build', '__tests__', 'testDirsAndFiles', ...pathAfterTestDirsAndFiles); } } exports.default = BulkImportingTest; __decorate([ (0, test_utils_1.test)() ], BulkImportingTest, "importerHasBulkImportMethod", null); __decorate([ (0, test_utils_1.test)() ], BulkImportingTest, "canImportSingleFile", null); __decorate([ (0, test_utils_1.test)() ], BulkImportingTest, "importingNothingGoesFast", null); __decorate([ (0, test_utils_1.test)() ], BulkImportingTest, "canImportTwoFiles", null); __decorate([ (0, test_utils_1.test)() ], BulkImportingTest, "shouldCleanupTmpDir", null); __decorate([ (0, test_utils_1.test)() ], BulkImportingTest, "cleansUpOnError", null); __decorate([ (0, test_utils_1.test)() ], BulkImportingTest, "throwsOnTheActualFileWithAnError", null); __decorate([ (0, test_utils_1.test)() ], BulkImportingTest, "throwsOnTheFirstActualFileWithAnErrorWithManyFiles", null); __decorate([ (0, test_utils_1.test)() ], BulkImportingTest, "helpfulErrorWhenImportNotExportedAsDefault", null); //# sourceMappingURL=BulkImporting.test.js.map