This repository was archived by the owner on Mar 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 304
/
Copy pathinstall.js
152 lines (137 loc) · 5.49 KB
/
install.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
/**
* Module dependencies.
*/
var exec = require('child_process').exec;
var fs = require('fs');
var assert = require('assert');
var path = require('path');
var exists = fs.existsSync || path.existsSync;
describe('component install', function(){
beforeEach(function(done){
exec('rm -fr components component.json', done);
})
beforeEach(function(done){
fs.writeFile('component.json', JSON.stringify({
dependencies: {
"component/tip": "1.0.0",
"component/popover": "1.1.0"
},
development: {
"component/assert": "0.3.0"
}
}), done);
})
describe('[name]', function(){
it('should show an error message if the component is named incorrectly', function(done) {
exec('bin/component install component-emitter', function(err, stdout) {
assert(err);
done();
})
})
it('should install a single component', function(done){
exec('bin/component install component/emitter@1.0.0', function(err, stdout){
if (err) return done(err);
stdout.should.include('install');
stdout.should.include('complete');
var json = require(path.resolve('components/component/emitter/1.0.0/component.json'));
json.name.should.equal('emitter');
done();
})
})
it('should add the component to ./component.json', function(done){
exec('bin/component install component/emitter@0.0.4', function(err, stdout){
if (err) return done(err);
var json = require(path.resolve('component.json'));
json.dependencies.should.have.property('component/emitter', '0.0.4');
done();
})
})
it('should install dependencies', function(done){
exec('bin/component install component/overlay@0.1.1', function(err, stdout){
if (err) return done(err);
stdout.should.include('install');
stdout.should.include('complete');
var json = require(path.resolve('components/component/emitter/1.0.0/component.json'));
json.name.should.equal('emitter');
var json = require(path.resolve('components/component/overlay/0.1.1/component.json'));
json.name.should.equal('overlay');
done();
})
})
it('should install dependencies through chain of local dependencies', function(done){
exec('cd test/fixtures/local && ../../../bin/component install', function(err, stdout){
if (err) return done(err);
done();
})
})
it('should download files completely', function(done){
exec('bin/component install fortawesome/font-awesome@4.0.3', function(err, stdout){
if (err) return done(err);
var stats = fs.statSync(path.resolve('components/fortawesome/font-awesome/v4.0.3/fonts/fontawesome-webfont.woff'));
stdout.should.include('install');
stdout.should.include('complete');
done();
})
})
it('should also download json files', function (done) {
exec('bin/component install swatinem/t@0.0.1', function(err, stdout){
if (err) return done(err);
var exists = fs.existsSync(path.resolve('components/swatinem/t/0.0.1/lib/definitions.json'));
exists.should.be.true;
stdout.should.include('install');
stdout.should.include('complete');
done();
})
})
})
describe('[name...]', function(){
it('should install the multiple components', function(done){
exec('bin/component install component/domify@1.0.0 component/dialog@0.3.0', function(err, stdout){
if (err) return done(err);
stdout.should.include('install');
stdout.should.include('complete');
var json = require(path.resolve('components/component/domify/1.0.0/component.json'));
json.name.should.equal('domify');
var json = require(path.resolve('components/component/dialog/0.3.0/component.json'));
json.name.should.equal('dialog');
done();
})
})
})
it('should default to installing from ./component.json', function(done){
exec('bin/component install', function(err, stdout){
if (err) return done(err);
stdout.should.include('install');
stdout.should.include('complete');
var json = require(path.resolve('components/component/tip/1.0.0/component.json'));
json.name.should.equal('tip');
var json = require(path.resolve('components/component/popover/1.1.0/component.json'));
json.name.should.equal('popover');
assert(!exists('components/component/assert/0.3.0'), 'dev deps should not be installed');
done();
})
})
it('should install dev deps when --dev is used', function(done){
exec('bin/component install -d', function(err, stdout){
if (err) return done(err);
stdout.should.include('install');
stdout.should.include('complete');
var json = require(path.resolve('components/component/tip/1.0.0/component.json'));
json.name.should.equal('tip');
var json = require(path.resolve('components/component/popover/1.1.0/component.json'));
json.name.should.equal('popover');
assert(exists('components/component/assert/0.3.0'), 'dev deps should be installed');
done();
})
})
it('should be aliased as "add"', function(done){
exec('bin/component add component/emitter@1.0.0', function(err, stdout){
if (err) return done(err);
stdout.should.include('install');
stdout.should.include('complete');
var json = require(path.resolve('components/component/emitter/1.0.0/component.json'));
json.name.should.equal('emitter');
done();
})
})
})