This repository was archived by the owner on Feb 17, 2023. It is now read-only.
forked from Kong/httpsnippet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtargets.js
More file actions
124 lines (101 loc) · 3.68 KB
/
targets.js
File metadata and controls
124 lines (101 loc) · 3.68 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
/* global describe, it */
'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 () {
var targets = HTTPSnippet.availableTargets()
targets.forEach(function (target) {
it('available-targets.json should include ' + target.title, function () {
fixtures['available-targets'].should.containEql(target)
})
})
})
// 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)
})
})
})
})
})
})
})