-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
86 lines (75 loc) · 2.13 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
'use strict';
require('mocha');
var fs = require('fs');
var assert = require('assert');
var Base = require('base');
var vfs = require('base-fs');
var del = require('delete');
var rename = require('./');
var base;
describe('base-rename', function() {
describe('plugin', function() {
it('should export a function', function() {
assert.equal(typeof rename, 'function');
});
it('should register as a plugin', function() {
base = new Base({isApp: true});
base.use(rename());
assert.equal(typeof base.rename, 'function');
});
});
describe('rename', function() {
beforeEach(function() {
base = new Base({isApp: true});
base.use(rename());
base.use(vfs());
});
afterEach(function(cb) {
del('actual/', cb);
});
it('should rename a directory', function(cb) {
base.src('fixtures/a.txt')
.pipe(base.dest(base.rename('actual')))
.on('end', function() {
fs.stat('actual/a.txt', function(err) {
assert(!err);
cb();
});
});
});
it('should rename a file', function(cb) {
base.src('fixtures/a.txt')
.pipe(base.dest(base.rename('actual', {basename: 'foo.txt'})))
.on('end', function() {
fs.stat('actual/foo.txt', function(err) {
assert(!err);
cb();
});
});
});
it('should rename a file with second arg as a string', function(cb) {
base.src('fixtures/a.txt')
.pipe(base.dest(base.rename('actual', 'foo.txt')))
.on('end', function() {
fs.stat('actual/foo.txt', function(err) {
assert(!err);
cb();
});
});
});
it('should replace non-word characters when opts.replace is true', function(cb) {
base = new Base();
base.isApp = true;
base.use(rename({ replace: true }));
base.use(vfs());
base.src('fixtures/*')
.pipe(base.dest(base.rename('actual')))
.on('end', function() {
fs.stat('actual/.dotfile', function(err) {
assert(!err);
cb();
});
});
});
});
});