-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
134 lines (123 loc) · 3.25 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
const test = require('tape')
const agsWalk = require('./')
const http = require('http')
const rootNoServices = {
'currentVersion': 10.22,
'services': [
'Thing1',
'Thing2'
]
}
const root = {
'currentVersion': 10.22,
'folders': [
'Basemaps'
],
'services': [
'Thing1',
'Thing2'
]
}
const allServices = [
'Thing1',
'Thing2',
'Thing3',
'Thing4'
]
const basemaps = {
'currentVersion': 10.22,
'folders': [],
'services': [
'Thing3',
'Thing4'
]
}
test('valid ags', function (t) {
t.plan(2)
const server = http.createServer(function (req, res) {
if (req.url === '/arcgis/rest/services?f=json') {
res.status = 200
res.end(JSON.stringify(root))
} else if (req.url === '/arcgis/rest/services/Basemaps?f=json') {
res.statusCode = 200
res.end(JSON.stringify(basemaps))
} else {
res.status = 404
}
})
server.listen(0, function () {
const port = server.address().port
agsWalk('http://localhost:' + port + '/arcgis/rest/services', function (err, res) {
t.error(err, 'should not error')
t.deepEqual(res, allServices, 'should return array of services')
server.close()
})
})
})
test('ags with no folders', function (t) {
t.plan(3)
const server = http.createServer(function (req, res) {
t.equal(req.url, '/arcgis/rest/services?f=json', 'should return correct url')
res.statusCode = 200
res.end(JSON.stringify(rootNoServices))
})
server.listen(0, function () {
const port = server.address().port
agsWalk('http://localhost:' + port + '/arcgis/rest/services', function (err, res) {
t.error(err)
t.equal(res.length, 2)
server.close()
})
})
})
test('invalid ags', function (t) {
t.plan(3)
const server = http.createServer(function(req, res) {
t.equal(req.url, '/arcgis/bad/services?f=json', 'should return url with query string')
res.statusCode = 200
res.end(JSON.stringify({
'pretty': 'bad'
}))
})
server.listen(0, function () {
const port = server.address().port
agsWalk('http://localhost:' + port + '/arcgis/bad/services', function (err, res) {
t.ok(err, 'should return error')
t.equal(err, 'Is not a valid ArcGIS Server URL', 'correct error message')
server.close()
})
})
})
test('404 with status message', function (t) {
t.plan(3)
const server = http.createServer(function (req, res) {
t.equal(req.url, '/arcgis/404/services?f=json')
res.statusCode = 404
res.statusMessage = 'No comprende'
res.end('<body><h1>404</h1</body>')
})
server.listen(0, function () {
const port = server.address().port
agsWalk('http://localhost:' + port + '/arcgis/404/services', function (err, res) {
t.ok(err)
t.equal(err, 'No comprende')
server.close()
})
})
})
test('404 default status message', function (t) {
t.plan(3)
const server = http.createServer(function (req, res) {
t.equal(req.url, '/arcgis/404/services?f=json')
res.statusCode = 404
res.end('<body><h1>404</h1</body>')
})
server.listen(0, function () {
const port = server.address().port
agsWalk('http://localhost:' + port + '/arcgis/404/services', function (err, res) {
t.ok(err)
t.equal(err, 'Not Found')
server.close()
})
})
})