UNPKG

8.48 kBJavaScriptView Raw
1"use strict";
2var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3 return new (P || (P = Promise))(function (resolve, reject) {
4 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6 function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
7 step((generator = generator.apply(thisArg, _arguments || [])).next());
8 });
9};
10var __generator = (this && this.__generator) || function (thisArg, body) {
11 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
12 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
13 function verb(n) { return function (v) { return step([n, v]); }; }
14 function step(op) {
15 if (f) throw new TypeError("Generator is already executing.");
16 while (_) try {
17 if (f = 1, y && (t = y[op[0] & 2 ? "return" : op[0] ? "throw" : "next"]) && !(t = t.call(y, op[1])).done) return t;
18 if (y = 0, t) op = [0, t.value];
19 switch (op[0]) {
20 case 0: case 1: t = op; break;
21 case 4: _.label++; return { value: op[1], done: false };
22 case 5: _.label++; y = op[1]; op = [0]; continue;
23 case 7: op = _.ops.pop(); _.trys.pop(); continue;
24 default:
25 if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
26 if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
27 if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
28 if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
29 if (t[2]) _.ops.pop();
30 _.trys.pop(); continue;
31 }
32 op = body.call(thisArg, _);
33 } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
34 if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
35 }
36};
37var _this = this;
38Object.defineProperty(exports, "__esModule", { value: true });
39var CLI_1 = require("./CLI");
40jest.unmock('fs-extra');
41jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
42function run() {
43 var argv = [];
44 for (var _i = 0; _i < arguments.length; _i++) {
45 argv[_i] = arguments[_i];
46 }
47 return __awaiter(this, void 0, void 0, function () {
48 var cli, err_1;
49 return __generator(this, function (_a) {
50 switch (_a.label) {
51 case 0:
52 cli = new CLI_1.CLI({ config: { argv: ['graphcool'].concat(argv), mock: true } });
53 _a.label = 1;
54 case 1:
55 _a.trys.push([1, 3, , 4]);
56 return [4 /*yield*/, cli.run()];
57 case 2:
58 _a.sent();
59 return [2 /*return*/, cli];
60 case 3:
61 err_1 = _a.sent();
62 if (err_1.code !== 0) {
63 throw err_1;
64 }
65 return [2 /*return*/, cli];
66 case 4: return [2 /*return*/];
67 }
68 });
69 });
70}
71// test('runs the version command', async () => {
72// expect.assertions(1)
73// const cli = new CLI({config: {argv: ['graphcool', 'version'], mock: true}})
74// try {
75// await cli.run()
76// } catch (err) {
77// expect(err.code).toBe(0)
78// }
79// })
80//
81// test('errors with invalid arguments', async () => {
82// expect.assertions(1)
83// const cli = new CLI({config: {argv: ['graphcool', 'version', '--invalid-flag'], mock: true}})
84// try {
85// await cli.run()
86// } catch (err) {
87// expect(err.message).toContain('Unexpected argument --invalid-flag')
88// }
89// })
90//
91// test('errors when command not found', async () => {
92// expect.assertions(1)
93// const cli = new CLI({config: {argv: ['graphcool', 'foobar12345'], mock: true}})
94// try {
95// await cli.run()
96// } catch (err) {
97// if (!err.code) {
98// throw err
99// }
100// expect(err.code).toEqual(127)
101// }
102// })
103describe('edge cases', function () {
104 test('shows help for `help` command itself', function () { return __awaiter(_this, void 0, void 0, function () {
105 var cli;
106 return __generator(this, function (_a) {
107 switch (_a.label) {
108 case 0: return [4 /*yield*/, run('help')];
109 case 1:
110 cli = _a.sent();
111 expect(cli.cmd.out.stdout.output).toMatch(/Usage: graphcool COMMAND/);
112 return [2 /*return*/];
113 }
114 });
115 }); });
116});
117describe('cli help', function () {
118 describe('global help', function () {
119 var globalHelpOutput = /^Usage: \S+ COMMAND/m;
120 test('shows help when no arguments given', function () { return __awaiter(_this, void 0, void 0, function () {
121 var cli;
122 return __generator(this, function (_a) {
123 switch (_a.label) {
124 case 0: return [4 /*yield*/, run()];
125 case 1:
126 cli = _a.sent();
127 expect(cli.cmd.out.stdout.output).toMatch(globalHelpOutput);
128 return [2 /*return*/];
129 }
130 });
131 }); });
132 test('shows help for `help` command and no additonal arguments', function () { return __awaiter(_this, void 0, void 0, function () {
133 var cli;
134 return __generator(this, function (_a) {
135 switch (_a.label) {
136 case 0: return [4 /*yield*/, run('help')];
137 case 1:
138 cli = _a.sent();
139 expect(cli.cmd.out.stdout.output).toMatch(globalHelpOutput);
140 return [2 /*return*/];
141 }
142 });
143 }); });
144 test('shows help for `--help` or `-h` flag and no additonal arguments', function () { return __awaiter(_this, void 0, void 0, function () {
145 var cli, clid;
146 return __generator(this, function (_a) {
147 switch (_a.label) {
148 case 0: return [4 /*yield*/, run('--help')];
149 case 1:
150 cli = _a.sent();
151 return [4 /*yield*/, run('-h')];
152 case 2:
153 clid = _a.sent();
154 expect(cli.cmd.out.stdout.output).toMatch(globalHelpOutput);
155 expect(clid.cmd.out.stdout.output).toMatch(globalHelpOutput);
156 return [2 /*return*/];
157 }
158 });
159 }); });
160 });
161});
162describe('cli version', function () {
163 test('-v', function () { return __awaiter(_this, void 0, void 0, function () {
164 var cli;
165 return __generator(this, function (_a) {
166 switch (_a.label) {
167 case 0: return [4 /*yield*/, run('-v')];
168 case 1:
169 cli = _a.sent();
170 expect(cli.cmd.out.stdout.output).toContain('graphcool/');
171 return [2 /*return*/];
172 }
173 });
174 }); });
175 test('--version', function () { return __awaiter(_this, void 0, void 0, function () {
176 var cli;
177 return __generator(this, function (_a) {
178 switch (_a.label) {
179 case 0: return [4 /*yield*/, run('--version')];
180 case 1:
181 cli = _a.sent();
182 expect(cli.cmd.out.stdout.output).toContain('graphcool/');
183 return [2 /*return*/];
184 }
185 });
186 }); });
187 test('version', function () { return __awaiter(_this, void 0, void 0, function () {
188 var cli;
189 return __generator(this, function (_a) {
190 switch (_a.label) {
191 case 0: return [4 /*yield*/, run('version')];
192 case 1:
193 cli = _a.sent();
194 expect(cli.cmd.out.stdout.output).toContain('graphcool/');
195 return [2 /*return*/];
196 }
197 });
198 }); });
199});
200//# sourceMappingURL=CLI.test.js.map
\No newline at end of file