-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsimport.spec.mjs
151 lines (110 loc) · 3.88 KB
/
simport.spec.mjs
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import {join} from 'path';
import {fileURLToPath} from 'url';
import {dirname} from 'path';
import tryToCatch from 'try-to-catch';
import {createSimport} from './simport.js';
import {createCommons} from './simport.mjs';
import test from 'supertape';
const {url} = import.meta;
const simport = createSimport(url);
test('simport: default', async (t) => {
const data = await import('supertape');
t.equal(typeof data.default, 'function');
t.end();
});
test('simport: named', async (t) => {
const {stub} = await import('supertape');
const {stub: superStub} = await simport('supertape');
t.equal(stub, superStub);
t.end();
});
test('simport: json', async (t) => {
const json = await simport('./package.json');
t.equal(json.name, 'simport');
t.end();
});
test('simport: json: not relative', async (t) => {
const {__dirname} = createCommons(url);
const json = await simport(join(__dirname, 'package.json'));
t.equal(json.name, 'simport');
t.end();
});
test('simport: no extension', async (t) => {
const imported = await simport('./simport');
t.ok(imported, createSimport);
t.end();
});
test('simport: createCommons: __filename', async (t) => {
const {createCommons} = await simport('./simport.mjs');
const {__filename} = createCommons(url);
t.equal(__filename, fileURLToPath(url));
t.end();
});
test('simport: createCommons: __dirname', async (t) => {
const {createCommons} = await simport('./simport.mjs');
const {__filename, __dirname} = createCommons(url);
t.equal(__dirname, dirname(__filename));
t.end();
});
test('simport: createCommons: require', async (t) => {
const {createCommons} = await simport('./simport.mjs');
const {require} = createCommons(url);
const {name} = require('./package');
t.equal(name, 'simport');
t.end();
});
test('simport: file name', async (t) => {
const {__filename} = createCommons(url);
const simport = createSimport(__filename);
const result = await simport('./simport.mjs');
t.equal(result.createSimport, createSimport);
t.end();
});
test('simport: not found', async (t) => {
const {__filename} = createCommons(url);
const simport = createSimport(__filename);
const [error] = await tryToCatch(simport, './simport1');
t.ok(error, error.message);
t.end();
});
test('simport: absolute', async (t) => {
const {__filename} = createCommons(url);
const simport = createSimport(__filename);
const [error] = await tryToCatch(simport, __filename);
t.notOk(error);
t.end();
});
test('simport: external', async (t) => {
const {__filename} = createCommons(url);
const simport = createSimport(__filename);
const [error] = await tryToCatch(simport, '@cloudcmd/stub');
t.notOk(error);
t.end();
});
test('simport: default frozen function', async (t) => {
const {__filename, __dirname} = createCommons(url);
const simport = createSimport(__filename);
const fixture = join(__dirname, 'fixture', 'default-frozen-function');
const [error] = await tryToCatch(simport, fixture);
t.notOk(error);
t.end();
});
test('simport: default frozen object', async (t) => {
const {__filename, __dirname} = createCommons(url);
const fixture = join(__dirname, 'fixture', 'default-frozen-object');
const simport = createSimport(__filename);
const [error] = await tryToCatch(simport, fixture);
t.notOk(error);
t.end();
});
test('simport: context', async (t) => {
const {__filename, __dirname} = createCommons(url);
const simport = createSimport(__filename);
const fixture = join(__dirname, 'fixture', 'context');
const [, stringify] = await tryToCatch(simport, fixture);
const result = stringify.call({
Compiler: 'hello',
});
t.equal(result, 'hello');
t.end();
});