-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
127 lines (111 loc) · 3.14 KB
/
index.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
const request = require('supertest');
const view = require('../');
const should = require('should');
const Koa = require('koa');
describe('koa-view', function() {
it('should render basic', function(done) {
const app = new Koa();
app.use(view(__dirname))
.use(ctx => {
return ctx.render('fixtures/basic', { html: 'html' });
});
request(app.listen()).get('/')
.expect('Content-Type', /html/)
.expect(/basic:html/)
.expect(200, done);
});
it('should render default path view', function(done) {
process.chdir('test');
const app = new Koa();
app.use(view())
.use(ctx => {
return ctx.render('basic', { html: 'html' });
});
request(app.listen()).get('/')
.expect('Content-Type', /html/)
.expect(/basic:html/)
.expect(200, done);
});
it('should render ctx state', function(done) {
const app = new Koa();
app.use(view(__dirname))
.use(ctx => {
ctx.state = { html: 'html' };
return ctx.render('fixtures/not_found');
});
request(app.listen()).get('/')
.expect('Internal Server Error')
.expect(500, done);
});
it('should render ctx state', function(done) {
const app = new Koa();
app.use(view(__dirname))
.use(ctx => {
ctx.state = { html: 'html' };
return ctx.render('fixtures/basic');
});
request(app.listen()).get('/')
.expect('Content-Type', /html/)
.expect(/basic:html/)
.expect(200, done);
});
it('should render with tpl ext', function(done) {
const app = new Koa();
app.use(view(__dirname, {
ext: 'tpl'
}))
.use(ctx => {
return ctx.render('fixtures/tpl', { tpl: 'tpl' });
});
request(app.listen()).get('/')
.expect('Content-Type', /html/)
.expect(/basic:tpl/)
.expect(200, done);
});
it('should render with filter', function(done) {
const app = new Koa();
app.use(view(__dirname, {
filters: {
shorten: function(str, count) {
return str.slice(0, count || 5);
}
}
}))
.use(ctx => {
return ctx.render('fixtures/filter', { msg: '1234567' });
});
request(app.listen()).get('/')
.expect('Content-Type', /html/)
.expect(/basic:12345/)
.expect(200, done);
});
it('should render with global', function(done) {
const app = new Koa();
app.use(view(__dirname, {
globals: {
msg: function() { return '1234567890'; }
}
}))
.use(ctx => {
return ctx.render('fixtures/global');
});
request(app.listen()).get('/')
.expect('Content-Type', /html/)
.expect(/basic:1234567890/)
.expect(200, done);
});
it('should render with response content-type', function(done) {
const app = new Koa();
app.use(view(__dirname, {
ext: 'json'
}))
.use(ctx => {
ctx.type = 'application/json';
return ctx.render('fixtures/basic', { json: 'json' });
});
request(app.listen()).get('/')
.expect('Content-Type', /json/)
.expect(/\"basic\": \"json\"/)
.expect(200, done);
});
});