UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

109 lines 4.66 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 test_utils_1 = __importStar(require("@sprucelabs/test-utils")); const StaticTestFinder_1 = __importDefault(require("../../../../tests/staticToInstanceMigration/StaticTestFinder")); let StaticTestFinderTest = class StaticTestFinderTest extends test_utils_1.default { finder = StaticTestFinder_1.default.Finder(); testPath; async throwsWithMissing() { //@ts-ignore const err = await test_utils_1.assert.doesThrowAsync(() => this.finder.find()); test_utils_1.errorAssert.assertError(err, 'MISSING_PARAMETERS', { parameters: ['lookupDir'], }); } async matchesStaticTests1() { this.setTestMigrationDir('static_test_migration_1'); await this.assertFindResultsEqual([ 'AnotherStaticTest.test.ts', 'StaticTest1.test.ts', ]); } async matchesStaticTests2() { this.setTestMigrationDir('static_test_migration_2'); await this.assertFindResultsEqual([ 'AStaticTest.test.ts', 'AnotherStaticTest1.test.ts', ]); } async includesAbstractTestsInOtherDirectories() { this.setTestMigrationDir('static_test_migration_3'); await this.assertFindResultsEqual([ 'AbstractWhateverTest.ts', 'AStaticTest2.test.ts', ]); } async assertFindResultsEqual(files) { const results = await this.find(); const expected = files.map((file) => this.resolveStaticTestFile(file)); test_utils_1.assert.isEqualDeep(results, expected); } async find() { return await this.finder.find(this.testPath); } resolveStaticTestFile(file) { return this.resolvePath(this.testPath, 'src', '__tests__', file); } setTestMigrationDir(dirName) { this.testPath = this.resolvePath('build', '__tests__', 'testDirsAndFiles', dirName); } }; __decorate([ (0, test_utils_1.test)() ], StaticTestFinderTest.prototype, "throwsWithMissing", null); __decorate([ (0, test_utils_1.test)() ], StaticTestFinderTest.prototype, "matchesStaticTests1", null); __decorate([ (0, test_utils_1.test)() ], StaticTestFinderTest.prototype, "matchesStaticTests2", null); __decorate([ (0, test_utils_1.test)() ], StaticTestFinderTest.prototype, "includesAbstractTestsInOtherDirectories", null); StaticTestFinderTest = __decorate([ (0, test_utils_1.suite)() ], StaticTestFinderTest); exports.default = StaticTestFinderTest; //# sourceMappingURL=StaticTestFinder.test.js.map