-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathserver-custom-livereload.js
More file actions
120 lines (106 loc) · 3.24 KB
/
server-custom-livereload.js
File metadata and controls
120 lines (106 loc) · 3.24 KB
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
import request from 'supertest';
import assert from 'assert';
import listen from './helpers/listen';
import {PassThrough} from 'stream';
describe('tiny-lr', () => {
before(listen({
livereload: function () {
const s = new PassThrough();
s.end('// custom live-reload');
return s;
}
}));
describe('GET /', () => {
it('respond with nothing, but respond', function (done) {
request(this.server)
.get('/')
.expect('Content-Type', /json/)
.expect(/\{"tinylr":"Welcome","version":"[\d].[\d].[\d]+"\}/)
.expect(200, done);
});
it('unknown route respond with proper 404 and error message', function (done) {
request(this.server)
.get('/whatev')
.expect('Content-Type', /json/)
.expect('{"error":"not_found","reason":"no such route"}')
.expect(404, done);
});
});
describe('GET /changed', () => {
it('with no clients, no files', function (done) {
request(this.server)
.get('/changed')
.expect('Content-Type', /json/)
.expect(/"clients":\[\]/)
.expect(/"files":\[\]/)
.expect(200, done);
});
it('with no clients, some files', function (done) {
request(this.server)
.get('/changed?files=gonna.css,test.css,it.css')
.expect('Content-Type', /json/)
.expect('{"clients":[],"files":["gonna.css","test.css","it.css"]}')
.expect(200, done);
});
});
describe('POST /changed', () => {
it('with no clients, no files', function (done) {
request(this.server)
.post('/changed')
.expect('Content-Type', /json/)
.expect(/"clients":\[\]/)
.expect(/"files":\[\]/)
.expect(200, done);
});
it('with no clients, some files', function (done) {
const data = { clients: [], files: ['cat.css', 'sed.css', 'ack.js'] };
request(this.server)
.post('/changed')
// .type('json')
.send({ files: data.files })
.expect('Content-Type', /json/)
.expect(JSON.stringify(data))
.expect(200, done);
});
});
describe('POST /alert', () => {
it('with no clients, no message', function (done) {
const data = { clients: [] };
request(this.server)
.post('/alert')
.expect('Content-Type', /json/)
.expect(JSON.stringify(data))
.expect(200, done);
});
it('with no clients, some message', function (done) {
const message = 'Hello Client!';
const data = { clients: [], message: message };
request(this.server)
.post('/alert')
.send({ message: message })
.expect('Content-Type', /json/)
.expect(JSON.stringify(data))
.expect(200, done);
});
});
describe('GET /livereload.js', () => {
it('respond with livereload script', function (done) {
request(this.server)
.get('/livereload.js')
.expect('// custom live-reload')
.expect(200, done);
});
});
describe('GET /kill', () => {
it('shutdown the server', function (done) {
const srv = this.server;
request(srv)
.get('/kill')
.expect(200, err => {
if (err) return done(err);
assert.ok(!srv._handle);
done();
});
});
});
});