@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
141 lines • 6.44 kB
JavaScript
;
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 schema_1 = require("@sprucelabs/schema");
const test_utils_1 = __importStar(require("@sprucelabs/test-utils"));
const commander_1 = require("commander");
const commander_utility_1 = __importDefault(require("../../utilities/commander.utility"));
class CommanderCommandResultMapperTest extends test_utils_1.default {
static optionsSchema = (0, schema_1.buildSchema)({
id: 'optionsSchema',
fields: { name: { type: 'text' }, email: { type: 'text' } },
});
static async utilExists() {
test_utils_1.assert.isTruthy(commander_utility_1.default);
}
static async canTakeOptionsAndPassThemBack() {
const results = commander_utility_1.default.mapIncomingToOptions({});
test_utils_1.assert.isEqualDeep(results, {});
}
static async handlesNoArgs() {
const results = commander_utility_1.default.mapIncomingToOptions();
test_utils_1.assert.isEqualDeep(results, {});
}
static async dropCommanderInstanceFromResults() {
const results = commander_utility_1.default.mapIncomingToOptions({}, new commander_1.Command());
test_utils_1.assert.isEqualDeep(results, {});
}
static async handlesUndefinedSchema() {
const results = commander_utility_1.default.mapIncomingToOptions({}, new commander_1.Command(), undefined);
test_utils_1.assert.isEqualDeep(results, {});
}
static async handlesSchemBeingAtTheEnd() {
const results = commander_utility_1.default.mapIncomingToOptions({}, new commander_1.Command(), this.optionsSchema);
test_utils_1.assert.isEqualDeep(results, {});
}
static async fristStringArgGetsDroppedIntoFirstField() {
const results = commander_utility_1.default.mapIncomingToOptions('my great skill', {}, new commander_1.Command(), this.optionsSchema);
test_utils_1.assert.isEqualDeep(results, {
name: 'my great skill',
});
}
static async mixesInFirstArgWithPassedArgs() {
const results = commander_utility_1.default.mapIncomingToOptions('my great skill', {
email: 't@t.com',
}, new commander_1.Command(), this.optionsSchema);
test_utils_1.assert.isEqualDeep(results, {
name: 'my great skill',
email: 't@t.com',
});
}
static async mixesInTwoArgWithPassedArgs() {
const results = commander_utility_1.default.mapIncomingToOptions('my great skill', 't@t.com', {}, new commander_1.Command(), this.optionsSchema);
test_utils_1.assert.isEqualDeep(results, {
name: 'my great skill',
email: 't@t.com',
});
}
static stringArgsOverrideDefaults() {
const results = commander_utility_1.default.mapIncomingToOptions('my great skill', 't@t.com', {
name: 'test',
email: 'test',
}, new commander_1.Command(), this.optionsSchema);
test_utils_1.assert.isEqualDeep(results, {
name: 'my great skill',
email: 't@t.com',
});
}
}
exports.default = CommanderCommandResultMapperTest;
__decorate([
(0, test_utils_1.test)()
], CommanderCommandResultMapperTest, "utilExists", null);
__decorate([
(0, test_utils_1.test)()
], CommanderCommandResultMapperTest, "canTakeOptionsAndPassThemBack", null);
__decorate([
(0, test_utils_1.test)()
], CommanderCommandResultMapperTest, "handlesNoArgs", null);
__decorate([
(0, test_utils_1.test)()
], CommanderCommandResultMapperTest, "dropCommanderInstanceFromResults", null);
__decorate([
(0, test_utils_1.test)()
], CommanderCommandResultMapperTest, "handlesUndefinedSchema", null);
__decorate([
(0, test_utils_1.test)()
], CommanderCommandResultMapperTest, "handlesSchemBeingAtTheEnd", null);
__decorate([
(0, test_utils_1.test)()
], CommanderCommandResultMapperTest, "fristStringArgGetsDroppedIntoFirstField", null);
__decorate([
(0, test_utils_1.test)()
], CommanderCommandResultMapperTest, "mixesInFirstArgWithPassedArgs", null);
__decorate([
(0, test_utils_1.test)()
], CommanderCommandResultMapperTest, "mixesInTwoArgWithPassedArgs", null);
__decorate([
(0, test_utils_1.test)()
], CommanderCommandResultMapperTest, "stringArgsOverrideDefaults", null);
//# sourceMappingURL=CommanderCommandResultMapper.test.js.map