-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathtargets.js
More file actions
220 lines (182 loc) · 7.21 KB
/
targets.js
File metadata and controls
220 lines (182 loc) · 7.21 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/* global describe, it, beforeEach */
'use strict'
var fixtures = require('./fixtures')
var fs = require('fs')
var glob = require('glob')
var HTTPSnippet = require('../src')
var path = require('path')
var should = require('should')
var targets = require('../src/targets')
var base = './test/fixtures/output/'
// read all output files
var output = glob.sync('**/*', {cwd: base, nodir: true}).reduce(function (obj, name) {
obj[name] = fs.readFileSync(base + name)
return obj
}, {})
var clearInfo = function (key) {
return !~['info', 'index'].indexOf(key)
}
var itShouldHaveTests = function (target, client) {
it(target + ' should have tests', function (done) {
fs.readdir(path.join(__dirname, 'targets', target), function (err, files) {
should.not.exist(err)
files.length.should.be.above(0)
files.should.containEql(client + '.js')
done()
})
})
}
var itShouldHaveInfo = function (name, obj) {
it(name + ' should have info method', function () {
obj.should.have.property('info').and.be.an.Object()
obj.info.key.should.equal(name).and.be.a.String()
obj.info.title.should.be.a.String()
})
}
// TODO: investigate issues with these fixtures
const skipMe = {
'clojure': {
'clj_http': ['jsonObj-null-value', 'jsonObj-multiline']
},
'*': {
'*': ['multipart-data', 'multipart-file', 'multipart-form-data']
}
}
var itShouldHaveRequestTestOutputFixture = function (request, target, client) {
var fixture = target + '/' + client + '/' + request + HTTPSnippet.extname(target)
it('should have output test for ' + request, function () {
if (skipMe[target] &&
skipMe[target][client] &&
skipMe[target][client].indexOf(request) > -1) {
this.skip()
}
Object.keys(output).indexOf(fixture).should.be.greaterThan(-1, 'Missing ' + fixture + ' fixture file for target: ' + target + '. Snippet tests will be skipped.')
})
}
var itShouldGenerateOutput = function (request, path, target, client) {
var fixture = path + request + HTTPSnippet.extname(target)
it('should generate ' + request + ' snippet', function () {
if (Object.keys(output).indexOf(fixture) === -1 ||
((skipMe[target] &&
skipMe[target][client] &&
skipMe[target][client].indexOf(request) > -1) ||
skipMe['*']['*'].indexOf(request) > -1)) {
this.skip()
}
var instance = new HTTPSnippet(fixtures.requests[request])
var result = instance.convert(target, client) + '\n'
result.should.be.a.String()
result.should.equal(output[fixture].toString())
})
}
describe('Available Targets', function () {
HTTPSnippet.availableTargets().forEach(function (target) {
it('available-targets.json should include ' + target.title, function () {
fixtures['available-targets'].should.containEql(target)
})
})
})
describe('Custom targets', function () {
describe('Adding a custom target', function () {
it('should throw if the target does has no info object', function () {
(function () {
HTTPSnippet.addTarget({})
}).should.throw(Error)
})
it('should throw if the target does not have a properly constructed info object', function () {
(function () {
HTTPSnippet.addTarget({info: {key: ''}})
}).should.throw(Error)
})
it('should throw if the target already exists', function () {
(function () {
HTTPSnippet.addTarget(targets.node)
}).should.throw(Error)
})
it('should throw if the target has no client', function () {
(function () {
HTTPSnippet.addTarget({
info: targets.node.info
})
}).should.throw(Error)
})
it('should add and convert for a new custom target', function () {
const customTarget = require('./fixtures/customTarget')
HTTPSnippet.addTarget(customTarget)
const target = HTTPSnippet.availableTargets().find(function (target) { return target.key === customTarget.info.key })
const client = target.clients.find(function (client) { return client.key === customTarget.info.default })
client.should.be.an.Object()
Object.keys(fixtures.requests).filter(clearInfo).forEach(function (request) {
// Re-using the `request` module fixtures and framework since we copied it to create a custom client.
itShouldGenerateOutput(request, 'node/request/', customTarget.info.key, customTarget.info.default)
})
})
})
describe('Adding a custom client target', function () {
let customClient
beforeEach(function () {
// Re-using the existing request client instead of mocking out something completely new.
customClient = {
...targets.node.request,
info: {
key: 'axios-test',
title: 'Axios',
link: 'https://www.npmjs.com/package/axios',
description: 'Promise based HTTP client for the browser and node.js'
}
}
})
it('should throw if client already exists', function () {
(function () {
HTTPSnippet.addTargetClient('node', {...customClient, info: {...customClient.info, key: 'axios'}})
}).should.throw(Error)
})
it("should throw if the client's target does not exist", function () {
(function () {
HTTPSnippet.addTargetClient('node.js', customClient)
}).should.throw(Error)
})
it('should throw if the client does has no info object', function () {
(function () {
HTTPSnippet.addTargetClient('node', {})
}).should.throw(Error)
})
it('should throw if the target does not have a properly constructed info object', function () {
(function () {
HTTPSnippet.addTargetClient('node', {info: {key: ''}})
}).should.throw(Error)
})
it('should add and convert for a new custom client target', function () {
HTTPSnippet.addTargetClient('node', customClient)
const target = HTTPSnippet.availableTargets().find(function (target) { return target.key === 'node' })
const client = target.clients.find(function (client) { return client.key === customClient.info.key })
client.should.be.an.Object()
Object.keys(fixtures.requests).filter(clearInfo).forEach(function (request) {
// Re-using the `request` module fixtures and framework since we copied it to create a custom client target.
itShouldGenerateOutput(request, 'node/request/', 'node', customClient.info.key)
})
})
})
})
// test all the things!
describe('Targets', function () {
Object.keys(targets).forEach(function (target) {
describe(targets[target].info.title, function () {
itShouldHaveInfo(target, targets[target])
Object.keys(targets[target]).filter(clearInfo).forEach(function (client) {
describe(client, function () {
itShouldHaveInfo(client, targets[target][client])
itShouldHaveTests(target, client)
var test = require(path.join(__dirname, 'targets', target, client))
test(HTTPSnippet, fixtures)
describe('snippets', function () {
Object.keys(fixtures.requests).filter(clearInfo).forEach(function (request) {
itShouldHaveRequestTestOutputFixture(request, target, client)
itShouldGenerateOutput(request, target + '/' + client + '/', target, client)
})
})
})
})
})
})
})