-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtest.js
204 lines (180 loc) · 5.08 KB
/
test.js
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
import { resolve } from 'path';
import { bin } from '../package.json';
import fs from 'fs';
import Kapok from 'kapok-js';
import rimraf from 'rimraf';
describe('test create page', () => {
const appJsonPath = resolve('test/src/app.json');
const hasAppJsonFile = fs.existsSync(appJsonPath);
let appJSON;
let kapok;
it('create page with no args', async () => {
const binFile = Object.keys(bin)[0];
const command = resolve(`bin/${binFile}`);
kapok = new Kapok(command, []);
await kapok
.assertUntil(`? 请输入小程序源代码根目录 (app.json 所在目录) (${process.cwd()})`, {
action: () => {
kapok.write('test/src\n');
}
})
.ignoreUntil('? 请输入小程序源代码根目录 (app.json 所在目录) test/src')
.assert('? 请选择需要创建的类型 (Use arrow keys)', {
action: () => {
kapok.write('\n');
}
})
.ignoreUntil('? 请选择需要创建的类型 page')
.assert('? 请输入页面名称 (可包含路径) (index)', {
action: () => {
kapok.write('test\n');
}
})
.ignoreUntil('? 请输入页面名称 (可包含路径) test')
.assert('? 请输入文件缩进的方式 (tab)', {
action: () => {
kapok.write('\n');
}
})
.ignoreUntil('? 请输入文件缩进的方式 tab')
.assert('? 是否需要生成配置文件 (.json) (y/N)', {
action: () => {
kapok.write('y\n');
}
})
.ignoreUntil('? 是否需要生成配置文件 (.json) Yes')
.assert('? 请选择样式文件的类型 (Use arrow keys)', {
action: () => {
kapok.write('\n');
}
})
.assertUntil(/创建结束/)
.done();
});
it('create page with yes mode', async () => {
const binFile = Object.keys(bin)[0];
const command = resolve(`bin/${binFile}`);
kapok = new Kapok(
command,
['-d', './src/', '--name', 'test', '--yes'],
{ cwd: __dirname }
);
await kapok
.assertUntil(/创建结束/)
.done();
});
it('create page when name is path', async () => {
const binFile = Object.keys(bin)[0];
const command = resolve(`bin/${binFile}`);
kapok = new Kapok(
command,
['-d', './src/', '--name', 'test/detail', '--yes'],
{ cwd: __dirname }
);
await kapok
.assertUntil(/创建结束/)
.done();
});
beforeEach(() => {
if (hasAppJsonFile) {
const filePath = resolve('test/src/pages/');
rimraf.sync(filePath);
appJSON = fs.readFileSync(appJsonPath, 'utf8');
}
});
afterEach((done) => {
if (hasAppJsonFile) {
fs.writeFileSync(appJsonPath, appJSON);
}
kapok.exit(done);
});
});
describe('test create component', () => {
const appJsonPath = resolve('test/src/app.json');
const hasAppJsonFile = fs.existsSync(appJsonPath);
let kapok;
it('create component with no args', async () => {
const binFile = Object.keys(bin)[0];
const command = resolve(`bin/${binFile}`);
kapok = new Kapok(command, []);
await kapok
.assertUntil(`? 请输入小程序源代码根目录 (app.json 所在目录) (${process.cwd()})`, {
action: () => {
kapok.write('test/src\n');
}
})
.ignoreUntil('? 请输入小程序源代码根目录 (app.json 所在目录) test/src')
.assert('? 请选择需要创建的类型 (Use arrow keys)', {
action: () => {
kapok.write('\u001b[B');
kapok.write('\n');
}
})
.ignoreUntil('? 请选择需要创建的类型 component')
.assert('? 请输入组件名称 (可包含路径) (index)', {
action: () => {
kapok.write('test\n');
}
})
.ignoreUntil('? 请输入组件名称 (可包含路径) test')
.assert('? 请输入文件缩进的方式 (tab)', {
action: () => {
kapok.write('\n');
}
})
.ignoreUntil('? 请输入文件缩进的方式 tab')
.assert('? 请选择样式文件的类型 (Use arrow keys)', {
action: () => {
kapok.write('\n');
}
})
.assertUntil(/创建结束/)
.done();
});
it('create component with yes mode', async () => {
const binFile = Object.keys(bin)[0];
const command = resolve(`bin/${binFile}`);
kapok = new Kapok(
command,
['-d', './src/', '--name', 'test', '--type', 'component', '--yes'],
{ cwd: __dirname }
);
await kapok
.assertUntil(/创建结束/)
.done();
});
it('create component with yes mode and name is path', async () => {
const binFile = Object.keys(bin)[0];
const command = resolve(`bin/${binFile}`);
kapok = new Kapok(
command,
['-d', './src/', '--name', './component/text', '--type', 'component', '--yes'],
{ cwd: __dirname }
);
await kapok
.assertUntil(/创建结束/)
.done();
});
beforeEach(() => {
if (hasAppJsonFile) {
const componentsfilePath = resolve('test/src/components/');
const componentfilePath = resolve('test/src/component/');
rimraf.sync(componentsfilePath);
rimraf.sync(componentfilePath);
}
});
});
describe('show template dir', () => {
it('create component with yes mode', async () => {
const binFile = Object.keys(bin)[0];
const command = resolve(`bin/${binFile}`);
const kapok = new Kapok(
command,
['dir'],
{ cwd: __dirname }
);
await kapok
.assertUntil(/.config\/create-wxapp-page/)
.done();
});
});