-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
148 lines (125 loc) Β· 3.87 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
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
var fs = require('fs')
var path = require('path')
var test = require('tape')
var postcss = require('postcss')
var tempfile = require('tempfile')
var atImport = require('postcss-import')
var Watcher = require('./')
test('warn when not last plugin', function (t) {
var watcher = new Watcher()
var entry = tempfile('-entry.css')
t.plan(3)
fs.writeFileSync(entry, 'body { color: red; }')
postcss([watcher.plugin(), function noop () {}]).process(
fs.readFileSync(entry, 'utf8'),
{ from: entry }
).then(function (result) {
watcher.close()
var messages = result.messages
t.equal(messages.length, 1, 'added message')
t.equal(messages[0].type, 'warning', 'message is warning')
t.equal(messages[0].plugin, 'postcss-watcher', 'message is from plugin')
})
})
test('watches entry file', function (t) {
var watcher = new Watcher()
var entry = tempfile('-entry.css')
t.plan(2)
fs.writeFileSync(entry, 'body { color: red; }')
watcher.on('add', function (path) {
t.equal(path, entry, 'entry file added')
setTimeout(function () {
fs.writeFileSync(entry, 'body { color: green; }')
}, 100)
})
watcher.on('change', function (path) {
t.equal(path, entry, 'entry file triggered change')
setImmediate(() => watcher.close())
})
postcss([watcher.plugin()]).process(
fs.readFileSync(entry, 'utf8'),
{ from: entry }
).catch(t.end)
})
test('watches imported file', function (t) {
var watcher = new Watcher()
var entry = tempfile('-entry.css')
var imported = tempfile('-imported.css')
t.plan(2)
fs.writeFileSync(entry, `@import "${imported}";`)
fs.writeFileSync(imported, 'body { color: red; }')
watcher.on('add', function (path) {
if (path === imported) {
t.pass('imported file added')
setTimeout(function () {
fs.writeFileSync(imported, 'body { color: green; }')
}, 100)
}
})
watcher.on('change', function (path) {
t.equal(path, imported, 'imported file triggered change')
setImmediate(() => watcher.close())
})
postcss([atImport(), watcher.plugin()]).process(
fs.readFileSync(entry, 'utf8'),
{ from: entry }
).catch(t.end)
})
test('stops watching orphaned file', function (t) {
var watcher = new Watcher()
var entry = tempfile('-entry.css')
var imported = tempfile('-imported.css')
var bundle = postcss([atImport(), watcher.plugin()])
t.plan(1)
fs.writeFileSync(entry, `@import "${imported}";`)
fs.writeFileSync(imported, 'body { color: red; }')
var added = 0
watcher.on('add', function (path) {
added += 1
if (added === 2) {
setTimeout(function () {
fs.writeFileSync(entry, 'body { color: blue; }')
}, 100)
}
})
watcher.on('change', function () {
bundle.process(
fs.readFileSync(entry, 'utf8'),
{ from: entry }
).then(function () {
var dir = path.dirname(imported)
var file = path.basename(imported)
var watched = watcher.getWatched()
t.equal(watched[dir].indexOf(file), -1, 'imported file not being watched')
watcher.close()
})
})
bundle.process(
fs.readFileSync(entry, 'utf8'),
{ from: entry }
).catch(t.end)
})
test('stops listening to pruned files', function (t) {
var watcher = new Watcher()
var entry = tempfile('-entry.css')
var imported = tempfile('-imported.css')
fs.writeFileSync(entry, `@import "${imported}";`)
fs.writeFileSync(imported, 'body { color: red; }')
watcher.on('ready', function (path) {
watcher.prune((file) => file === imported)
setTimeout(function () {
fs.writeFileSync(imported, 'body { color: green; }')
setTimeout(function () {
watcher.close()
t.end()
}, 200)
}, 100)
})
watcher.on('change', function (path) {
t.fail('pruned file triggered change')
})
postcss([atImport(), watcher.plugin()]).process(
fs.readFileSync(entry, 'utf8'),
{ from: entry }
).catch(t.end)
})