-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.test.js
156 lines (119 loc) · 4.32 KB
/
module.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
149
150
151
152
153
154
155
156
const consola = require('consola')
jest.mock('consola')
global.consola = consola
const { Nuxt, Builder } = require('nuxt-edge')
const getPort = require('get-port')
const rp = require('request-promise-native')
jest.setTimeout(120000)
jest.mock('consola')
const config = require('./fixture/nuxt.config')
let port
const url = path => `http://localhost:${port}${path}`
describe('html-minifier-module', () => {
let nuxt
beforeAll(async () => {
port = await getPort()
nuxt = new Nuxt(config)
await new Builder(nuxt).build()
await nuxt.server.listen(port, 'localhost')
})
afterAll(async () => {
await nuxt.close()
})
afterEach(() => {
jest.clearAllMocks()
})
describe('always with logHtml', () => {
test('html is minified', async () => {
const html = await rp(url('/'))
expect(html).not.toContain('hidden="true"')
})
test('returns html with error', async () => {
const html = await rp(url('/error'))
expect(html).toContain('<br<')
})
test('logs error and prints failed html', async () => {
const html = await rp(url('/error'))
expect(html).toContain('<br<')
expect(consola.error).toHaveBeenCalledTimes(1)
expect(consola.error).toHaveBeenCalledWith(expect.stringMatching('HTML minification failed for /error.'))
expect(consola.error).toHaveBeenCalledWith(expect.stringMatching('<br<'))
})
test('logs error (2nd request)', async () => {
const html = await rp(url('/error'))
expect(html).toContain('<br<')
expect(consola.error).toHaveBeenCalledTimes(1)
expect(consola.error).toHaveBeenCalledWith(expect.stringMatching('HTML minification failed for /error.'))
expect(consola.error).toHaveBeenCalledWith(expect.stringMatching('<br<'))
})
})
describe('once', () => {
beforeAll(async () => {
await nuxt.close()
config.modules[0][1] = { log: 'once' }
nuxt = new Nuxt(config)
await nuxt.server.listen(port, 'localhost')
})
test('html is minified', async () => {
const html = await rp(url('/'))
expect(html).not.toContain('hidden="true"')
})
test('logs error and doesnt prints html', async () => {
const html = await rp(url('/error'))
expect(html).toContain('<br<')
expect(consola.error).toHaveBeenCalledTimes(1)
expect(consola.error).toHaveBeenCalledWith(expect.stringMatching('HTML minification failed for /error.'))
expect(consola.error).not.toHaveBeenCalledWith(expect.stringMatching('<br<'))
})
test('doesnt log error (2nd request)', async () => {
const html = await rp(url('/error'))
expect(html).toContain('<br<')
expect(consola.error).not.toHaveBeenCalled()
})
})
describe('false', () => {
beforeAll(async () => {
await nuxt.close()
config.modules[0][1] = { log: false }
nuxt = new Nuxt(config)
await nuxt.server.listen(port, 'localhost')
})
test('html is minified', async () => {
const html = await rp(url('/'))
expect(html).not.toContain('hidden="true"')
})
test('doesnt log error with consola', async () => {
const html = await rp(url('/error'))
expect(html).toContain('<br<')
expect(consola.error).not.toHaveBeenCalled()
})
test('doesnt log error (2nd request)', async () => {
const html = await rp(url('/error'))
expect(html).toContain('<br<')
expect(consola.error).not.toHaveBeenCalled()
})
})
describe('dont retry minifying after failure', () => {
beforeAll(async () => {
await nuxt.close()
config.modules[0][1] = { keepTrying: false, log: 'always' }
nuxt = new Nuxt(config)
await nuxt.server.listen(port, 'localhost')
})
test('html is minified', async () => {
const html = await rp(url('/'))
expect(html).not.toContain('hidden="true"')
})
test('logs error with consola', async () => {
const html = await rp(url('/error'))
expect(html).toContain('<br<')
expect(consola.error).toHaveBeenCalledTimes(1)
expect(consola.error).toHaveBeenCalledWith(expect.stringMatching('HTML minification failed for /error.'))
})
test('doesnt log error (2nd request)', async () => {
const html = await rp(url('/error'))
expect(html).toContain('<br<')
expect(consola.error).not.toHaveBeenCalled()
})
})
})