-
Notifications
You must be signed in to change notification settings - Fork 101
/
gulpfile.js
223 lines (195 loc) · 6.3 KB
/
gulpfile.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
var gulp = require('gulp');
var bg = require('gulp-bg');
var download = require('gulp-download');
var zip = require('gulp-zip');
var gzip = require('gulp-gzip');
var gunzip = require('gulp-gunzip');
var jshint = require('gulp-jshint');
var gls = require('gulp-live-server');
var install = require('gulp-install');
var mocha = require('gulp-mocha');
var tar = require('gulp-tar');
var untar = require('gulp-untar');
var gutil = require('gulp-util');
var exec = require('child_process').exec;
var del = require('del');
var fs = require('fs');
var runSequence = require('run-sequence');
var argv = require('yargs').argv;
// default is 8000, which might be common
var ddbLocalPort = 8079;
// Delete the dist directory
gulp.task('clean', function (cb) {
del(['cookbooks/dromedary/files/app/*', 'dist'], cb);
});
// Execute unit tests
gulp.task('test', function () {
return gulp.src('test/*.js', {read: false})
.pipe(mocha({reporter: 'spec'}));
});
// JSHint
gulp.task('lint-app', function() {
return gulp.src(['./app.js', './lib/*.js'])
.pipe(jshint())
.pipe(jshint.reporter('default', { verbose: true }))
.pipe(jshint.reporter('fail'));
});
gulp.task('lint-charthandler', function() {
return gulp.src('public/charthandler.js')
.pipe(jshint({ 'globals': { Chart: true, dromedaryChartHandler: true }}))
.pipe(jshint.reporter('default', { verbose: true }))
.pipe(jshint.reporter('fail'));
});
gulp.task('lint', function(callback) {
runSequence(
['lint-app', 'lint-charthandler'],
callback
);
});
// Copy dromedary app to cookbooks/dromedary/files/default/app
gulp.task('cookbookfiles:app', function () {
return gulp.src(['app.js', 'appspec.yml'] )
.pipe(gulp.dest('cookbooks/dromedary/files/default/app'));
});
gulp.task('cookbookfiles:lib', function () {
return gulp.src(['lib/*.js'] )
.pipe(gulp.dest('cookbooks/dromedary/files/default/app/lib'));
});
gulp.task('cookbookfiles:public', function () {
return gulp.src(['public/*'] )
.pipe(gulp.dest('cookbooks/dromedary/files/default/app/public'));
});
gulp.task('cookbookfiles:package', function () {
return gulp.src(['package.json'])
.pipe(gulp.dest('cookbooks/dromedary/files/default/app'))
.pipe(install({production: true}));
});
// Alias to run above tasks
gulp.task('copy-to-cookbooks', function(callback) {
runSequence(
[ 'cookbookfiles:app',
'cookbookfiles:lib',
'cookbookfiles:public',
'cookbookfiles:package' ],
callback
);
});
// Copy cookbooks to dist/
gulp.task('dist:berks-vendor', function (cb) {
exec('cd cookbooks/dromedary/ && berks vendor ../../dist', function (err, stdout, stderr) {
gutil.log(stdout);
gutil.log(stderr);
cb(err);
});
});
// Create tarball
gulp.task('dist:tar', function () {
return gulp.src('dist/**/*')
.pipe(tar('archive.tar'))
.pipe(gzip())
.pipe(gulp.dest('dist'));
});
// 'dist' ties together all dist tasks
gulp.task('dist', function(callback) {
runSequence(
'clean',
'copy-to-cookbooks',
'dist:berks-vendor',
'dist:tar',
callback
);
});
// Execute functional tests
gulp.task('test-functional', function () {
if (process.env.hasOwnProperty('AUTOMATED_ACCEPTANCE_TEST')) {
process.env.TARGET_URL = 'http://localhost:' + require(__dirname + '/dev-lib/targetPort.js');
}
return gulp.src('test-functional/*.js', {read: false})
.pipe(mocha({reporter: 'spec'}));
});
// run the node app
gulp.task('app:serve', function() {
var server = gls.new('app.js');
server.start();
//use gulp.watch to trigger server actions(notify, start or stop)
gulp.watch(['public/*'], function (file) {
server.notify.apply(server, [file]);
});
gulp.watch(['app.js', 'lib/*.js'], function() {
server.start.apply(server);
});
});
// Support for DDB local - tasks to clean ddb dir, download and untar
gulp.task('ddb-local:clean', function (cb) {
del(['ddb-local'], cb);
});
gulp.task('ddb-local:download', function() {
return download('http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.tar.gz')
.pipe(gulp.dest(__dirname + '/ddb-local/'));
});
gulp.task('ddb-local:untar', function () {
return gulp.src(__dirname + '/ddb-local/dynamodb_local_latest.tar.gz')
.pipe(gunzip())
.pipe(untar())
.pipe(gulp.dest('.'));
});
// Hacky way to run the ddb-local:download & ddb-local:untar only when we need to
gulp.task('ddb-local:download-wrapper', function(callback) {
fs.stat(__dirname + '/ddb-local/DynamoDBLocal.jar', function(err) {
if (err) {
runSequence(
'ddb-local:download',
'ddb-local:untar',
callback
);
} else {
gutil.log(__dirname + '/ddb-local/DynamoDBLocal.jar exists. Skipping download.');
callback();
}
});
});
gulp.task('ddb-local:serve', bg(
'java', '-Djava.library.path=ddb-local/DynamoDBLocal_lib', '-jar', 'ddb-local/DynamoDBLocal.jar', '-dbPath', 'ddb-local/', '-sharedDb', '-port', ddbLocalPort
));
gulp.task('ddb-local', function(callback) {
runSequence(
'ddb-local:download-wrapper',
'ddb-local:serve',
callback
);
});
// Default is to serve locally
gulp.task('serve', function(callback) {
runSequence(
'ddb-local',
'app:serve',
callback
);
});
gulp.task('default', function(callback) {
runSequence(
'serve',
callback
);
});
gulp.task('package-site', ['lint-charthandler'],function () {
return gulp.src('public/**/*')
.pipe(zip('site.zip'))
.pipe(gulp.dest('dist'));
});
gulp.task('dist-app', function() {
return gulp.src(['package.json','index.js','app.js','lib{,/*.js}'])
.pipe(gulp.dest('dist/app/'))
.pipe(install({production: true}));
});
gulp.task('package-app', ['lint-app','test','dist-app'], function () {
return gulp.src(['!dist/app/package.json','!dist/app/**/aws-sdk{,/**}', 'dist/app/**/*'])
.pipe(zip('lambda.zip'))
.pipe(gulp.dest('dist'));
});
gulp.task('package-swagger', function() {
return gulp.src('swagger.json')
.pipe(gulp.dest('dist/'));
});
gulp.task('package',['package-site','package-app','package-swagger'], function() {
});