-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathnode-package-manager.ts
99 lines (95 loc) · 3.17 KB
/
node-package-manager.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import { Yok } from "../lib/common/yok";
import * as stubs from "./stubs";
import { assert } from "chai";
import { NodePackageManager } from "../lib/node-package-manager";
import { IInjector } from "../lib/common/definitions/yok";
function createTestInjector(configuration: {} = {}): IInjector {
const injector = new Yok();
injector.register("hostInfo", {});
injector.register("errors", stubs.ErrorsStub);
injector.register("logger", stubs.LoggerStub);
injector.register("childProcess", stubs.ChildProcessStub);
injector.register("httpClient", {});
injector.register("fs", stubs.FileSystemStub);
injector.register("npm", NodePackageManager);
injector.register("pacoteService", {
manifest: () => Promise.resolve(),
});
return injector;
}
describe("node-package-manager", () => {
describe("getPackageNameParts", () => {
[
{
name: "should return both name and version when valid fullName passed",
templateFullName: "some-template@1.0.0",
expectedVersion: "1.0.0",
expectedName: "some-template",
},
{
name:
"should return both name and version when valid fullName with scope passed",
templateFullName: "@nativescript/some-template@1.0.0",
expectedVersion: "1.0.0",
expectedName: "@nativescript/some-template",
},
{
name:
"should return only name when version is not specified and the template is scoped",
templateFullName: "@nativescript/some-template",
expectedVersion: "",
expectedName: "@nativescript/some-template",
},
{
name: "should return only name when version is not specified",
templateFullName: "some-template",
expectedVersion: "",
expectedName: "some-template",
},
].forEach((testCase) => {
it(testCase.name, async () => {
const testInjector = createTestInjector();
const npm = testInjector.resolve<NodePackageManager>("npm");
const templateNameParts = await npm.getPackageNameParts(
testCase.templateFullName
);
assert.strictEqual(templateNameParts.name, testCase.expectedName);
assert.strictEqual(templateNameParts.version, testCase.expectedVersion);
});
});
});
describe("getPackageFullName", () => {
[
{
name: "should return name and version when specified",
templateName: "some-template",
templateVersion: "1.0.0",
expectedFullName: "some-template@1.0.0",
},
{
name: "should return only the github url when no version specified",
templateName:
"https://github.com/NativeScript/template-drawer-navigation-ng#master",
templateVersion: "",
expectedFullName:
"https://github.com/NativeScript/template-drawer-navigation-ng#master",
},
{
name: "should return only the name when no version specified",
templateName: "some-template",
templateVersion: "",
expectedFullName: "some-template",
},
].forEach((testCase) => {
it(testCase.name, async () => {
const testInjector = createTestInjector();
const npm = testInjector.resolve<NodePackageManager>("npm");
const templateFullName = await npm.getPackageFullName({
name: testCase.templateName,
version: testCase.templateVersion,
});
assert.strictEqual(templateFullName, testCase.expectedFullName);
});
});
});
});