forked from postmanlabs/httpsnippet-fsless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtargets.js
More file actions
123 lines (97 loc) · 3.66 KB
/
targets.js
File metadata and controls
123 lines (97 loc) · 3.66 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
/* global describe, it */
'use strict'
var async = require('async')
var fixtures = require('./fixtures')
var fs = require('fs')
var glob = require('glob')
var HTTPSnippet = require('../src')
var targets = require('../src/targets')
var tests = require('./tests')
require('should')
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, cb) {
cb(!~['info', 'index'].indexOf(key))
}
var itShouldHaveTests = function (test, func, key) {
it(key + ' should have tests', function () {
test.should.have.property(func)
})
}
var itShouldHaveInfo = function (targets, key) {
it(key + ' should have info method', function () {
var target = targets[key]
target.should.have.property('info').and.be.an.Object
target.info.key.should.be.a.String.and.equal(key)
target.info.title.should.be.a.String
})
}
var itShouldHaveRequestTestOutputFixture = function (request, target, path) {
var fixture = target + '/' + path + request + HTTPSnippet.extname(target)
it('should have output test for ' + request, function () {
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) {
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.map(function (target) {
it('available-targets.json should include ' + target.title, function () {
fixtures['available-targets'].should.containEql(target)
})
})
})
// test all the things!
async.each(Object.keys(targets), function (target) {
describe(targets[target].info.title, function () {
itShouldHaveInfo(targets, target)
itShouldHaveTests(tests, target, target)
if (typeof tests[target] === 'function') {
tests[target](HTTPSnippet, fixtures)
}
if (!targets[target].index) {
describe('snippets', function () {
async.filter(Object.keys(fixtures.requests), clearInfo, function (requests) {
async.each(requests, function (request) {
itShouldHaveRequestTestOutputFixture(request, target, '')
itShouldGenerateOutput(request, target + '/', target)
})
})
})
}
async.filter(Object.keys(targets[target]), clearInfo, function (clients) {
async.each(clients, function (client) {
describe(client, function () {
itShouldHaveInfo(targets[target], client)
itShouldHaveTests(tests[target], client, client)
if (tests[target] && typeof tests[target][client] === 'function') {
tests[target][client](HTTPSnippet, fixtures)
}
describe('snippets', function () {
async.filter(Object.keys(fixtures.requests), clearInfo, function (requests) {
async.each(requests, function (request) {
itShouldHaveRequestTestOutputFixture(request, target, client + '/')
itShouldGenerateOutput(request, target + '/' + client + '/', target, client)
})
})
})
})
})
})
})
})