2016-02-12 04:36:23 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
2016-02-01 02:33:33 +00:00
|
|
|
/// <reference path="typings/main.d.ts" />
|
|
|
|
var gulp = require("gulp");
|
|
|
|
var gulpFunction = require("../index.js");
|
|
|
|
var beautylog = require("beautylog");
|
2016-02-14 17:36:34 +00:00
|
|
|
var Q = require("q");
|
2016-02-01 02:33:33 +00:00
|
|
|
var myFunction = function () {
|
2016-02-14 17:36:34 +00:00
|
|
|
var done = Q.defer();
|
2016-02-12 04:36:23 +00:00
|
|
|
beautylog.log("Function executed");
|
2016-02-14 17:36:34 +00:00
|
|
|
done.resolve();
|
|
|
|
return done.promise;
|
2016-02-12 04:36:23 +00:00
|
|
|
};
|
|
|
|
var myFunction2 = function () {
|
2016-02-14 17:36:34 +00:00
|
|
|
var done = Q.defer();
|
|
|
|
beautylog.ok("Function2 executed");
|
|
|
|
done.resolve();
|
|
|
|
return done.promise;
|
|
|
|
};
|
|
|
|
var myFunction3 = function () {
|
|
|
|
var done = Q.defer();
|
|
|
|
beautylog.success("Function3 executed");
|
|
|
|
done.resolve();
|
|
|
|
return done.promise;
|
2016-02-01 02:33:33 +00:00
|
|
|
};
|
|
|
|
describe("gulpFunction", function () {
|
2016-02-14 17:36:34 +00:00
|
|
|
it("should run through smoothly with " + "'forEach'".blue, function (done) {
|
2016-02-12 04:36:23 +00:00
|
|
|
gulp.src('./test/*.md')
|
|
|
|
.pipe(gulpFunction(myFunction, 'forEach'))
|
|
|
|
.pipe(gulp.dest("./test/result/"));
|
|
|
|
gulp.src('./test/*.md')
|
2016-02-14 17:36:34 +00:00
|
|
|
.pipe(gulpFunction([myFunction2, myFunction3], 'forEach'))
|
|
|
|
.pipe(gulp.dest("./test/result/"))
|
|
|
|
.pipe(gulpFunction(done, "atEnd"));
|
2016-02-12 04:36:23 +00:00
|
|
|
});
|
2016-02-14 17:36:34 +00:00
|
|
|
it("should run through smoothly with " + "'atEnd'".blue, function (done) {
|
2016-02-12 04:36:23 +00:00
|
|
|
gulp.src('./test/*.md')
|
|
|
|
.pipe(gulpFunction(myFunction, 'atEnd'))
|
|
|
|
.pipe(gulp.dest("./test/result/"));
|
|
|
|
gulp.src('./test/*.md')
|
2016-02-14 17:36:34 +00:00
|
|
|
.pipe(gulpFunction([myFunction2, myFunction3], 'atEnd'))
|
|
|
|
.pipe(gulp.dest("./test/result/"))
|
|
|
|
.pipe(gulpFunction(done, "atEnd"));
|
2016-02-01 02:33:33 +00:00
|
|
|
});
|
|
|
|
});
|