This repository was archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
143 lines (120 loc) · 4.82 KB
/
test.js
File metadata and controls
143 lines (120 loc) · 4.82 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
var should = require('should');
var request = require('supertest');
var mongoose = require('mongoose');
var mockgoose = require('mockgoose');
mockgoose(mongoose);
var app = require('./server/app');
var config = require('./config');
describe('Service', function() {
describe('Link', function() {
it('should deny us access', function(done) {
request(app)
.get('/admin/api/links')
.expect(401, done);
});
it('should list no links', function(done) {
request(app)
.get('/admin/api/links')
.set('Authorization', 'Basic ' + new Buffer(config.username + ':' + config.password).toString('base64'))
.expect(200)
.end(function (err, res) {
if (err) throw err;
res.body.should.have.a.lengthOf(0);
done();
});
});
it('should save Link with url \'test\'', function(done) {
var link = {
url: 'http://google.com',
link: 'test'
};
request(app)
.post('/admin/api/links')
.set('Authorization', 'Basic ' + new Buffer(config.username + ':' + config.password).toString('base64'))
.send(link)
.expect(201)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.should.have.properties(link);
res.body.should.have.property('stats').with.lengthOf(0);
done();
});
});
it('should list 1 link', function(done) {
request(app)
.get('/admin/api/links')
.set('Authorization', 'Basic ' + new Buffer(config.username + ':' + config.password).toString('base64'))
.expect(200)
.end(function (err, res) {
if (err) throw err;
res.body.should.have.a.lengthOf(1);
done();
});
});
it('should show no visits for \'test\'', function(done) {
request(app)
.get('/admin/api/links/test')
.set('Authorization', 'Basic ' + new Buffer(config.username + ':' + config.password).toString('base64'))
.expect(200)
.end(function (err, res) {
if (err) throw err;
res.body.should.have.property('stats').with.lengthOf(0);
done();
});
});
it('should redirect to \'http://google.com\'', function(done) {
request(app)
.get('/test')
.expect(302)
.expect('Location', 'http://google.com')
.end(done);
});
it('should show 1 visit for \'test\'', function(done) {
request(app)
.get('/admin/api/links/test')
.set('Authorization', 'Basic ' + new Buffer(config.username + ':' + config.password).toString('base64'))
.expect(200)
.end(function (err, res) {
if (err) throw err;
res.body.should.have.property('stats').with.lengthOf(1);
done();
});
});
it('should delete the link', function(done) {
request(app)
.delete('/admin/api/links/test')
.set('Authorization', 'Basic ' + new Buffer(config.username + ':' + config.password).toString('base64'))
.expect(204, done);
});
it('should list no links', function(done) {
request(app)
.get('/admin/api/links')
.set('Authorization', 'Basic ' + new Buffer(config.username + ':' + config.password).toString('base64'))
.expect(200)
.end(function (err, res) {
if (err) throw err;
res.body.should.have.a.lengthOf(0);
done();
});
});
});
describe('Random', function() {
it('should generate a random link to \'http://google.com\'', function (done) {
request(app)
.post('/admin/api/links')
.set('Authorization', 'Basic ' + new Buffer(config.username + ':' + config.password).toString('base64'))
.send({url: 'http://google.com'})
.expect(201)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.should.have.property('link');
res.body.should.have.property('stats').with.lengthOf(0);
done();
});
});
});
});