-
Notifications
You must be signed in to change notification settings - Fork 190
/
gh-pages.spec.js
127 lines (121 loc) · 3.2 KB
/
gh-pages.spec.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
const ghpages = require('../../lib/index.js');
const sinon = require('sinon');
const cli = require('../../bin/gh-pages.js');
const assert = require('../helper.js').assert;
const beforeAdd = require('./fixtures/beforeAdd.js');
describe('gh-pages', () => {
describe('main', () => {
beforeEach(() => {
sinon
.stub(ghpages, 'publish')
.callsFake((basePath, config, callback) => callback());
});
afterEach(() => {
ghpages.publish.restore();
});
const scenarios = [
{
args: ['--dist', 'lib'],
dist: 'lib',
config: ghpages.defaults,
},
{
args: ['--dist', 'lib', '-n'],
dist: 'lib',
config: {push: false},
},
{
args: ['--dist', 'lib', '-f'],
dist: 'lib',
config: {history: false},
},
{
args: ['--dist', 'lib', '-x'],
dist: 'lib',
config: {silent: true},
},
{
args: ['--dist', 'lib', '--dotfiles'],
dist: 'lib',
config: {dotfiles: true},
},
{
args: ['--dist', 'lib', '--nojekyll'],
dist: 'lib',
config: {nojekyll: true},
},
{
args: ['--dist', 'lib', '--cname', 'CNAME'],
dist: 'lib',
config: {cname: 'CNAME'},
},
{
args: ['--dist', 'lib', '--dest', 'target'],
dist: 'lib',
config: {dest: 'target'},
},
{
args: ['--dist', 'lib', '-a', 'target'],
dist: 'lib',
config: {add: true},
},
{
args: ['--dist', 'lib', '--git', 'path/to/git'],
dist: 'lib',
config: {git: 'path/to/git'},
},
{
args: ['--dist', 'lib', '--user', 'Full Name <[email protected]>'],
dist: 'lib',
config: {user: {name: 'Full Name', email: '[email protected]'}},
},
{
args: ['--dist', 'lib', '--user', '[email protected]'],
dist: 'lib',
config: {user: {name: null, email: '[email protected]'}},
},
{
args: ['--dist', 'lib', '-u', 'Full Name <[email protected]>'],
dist: 'lib',
config: {user: {name: 'Full Name', email: '[email protected]'}},
},
{
args: [
'--dist',
'lib',
'--before-add',
require.resolve('./fixtures/beforeAdd'),
],
dist: 'lib',
config: {beforeAdd},
},
{
args: ['--dist', 'lib', '-u', 'junk email'],
dist: 'lib',
error:
'Could not parse name and email from user option "junk email" (format should be "Your Name <[email protected]>")',
},
];
scenarios.forEach(({args, dist, config, error}) => {
let title = args.join(' ');
if (error) {
title += ' (user error)';
}
it(title, async () => {
try {
await cli(['node', 'gh-pages'].concat(args));
} catch (err) {
if (!error) {
throw err;
}
assert.equal(err.message, error);
return;
}
if (error) {
throw new Error(`Expected error "${error}" but got success`);
}
sinon.assert.calledWithMatch(ghpages.publish, dist, config);
});
});
});
});