forked from curlconverter/curlconverter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
executable file
·74 lines (65 loc) · 2.65 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
'use strict'
var test = require('tape')
var fs = require('fs')
var utils = require('./util')
var curlconverter = require('./index.js')
var yargs = require('yargs')
// the curl_commands/ directory contains input files
// The file name is a description of the command.
// for each input file, there may be a corresponding output file in
// language-specific directories: node_output, php_output, python_output, parser_output
// we get a list of all input files, iterate over it, and if an output file exists, compare the output.
var testFile = function (fileName) {
var inputFilePath = 'fixtures/curl_commands/' + fileName
var parserTestName = 'Parser: ' + fileName.replace(/_/g, ' ').replace('.txt', '')
var inputFileContents = fs.readFileSync(inputFilePath, 'utf-8')
var parserFilePath = './fixtures/parser_output/' + fileName.replace('txt', 'js')
if (fs.existsSync(parserFilePath)) {
var goodParserOutput = require(parserFilePath)
var parsedCommand = utils.parseCurlCommand(inputFileContents)
test(parserTestName, function (t) {
t.deepEquals(parsedCommand, goodParserOutput)
t.end()
})
}
var pythonFilePath = './fixtures/python_output/' + fileName.replace('txt', 'py')
var pythonTestName = 'Python: ' + fileName.replace(/_/g, ' ').replace('.txt', '')
if (fs.existsSync(pythonFilePath)) {
var goodPythonCode = fs.readFileSync(pythonFilePath, 'utf-8')
var pythonCode = curlconverter.toPython(inputFileContents)
test(pythonTestName, function (t) {
t.equal(pythonCode, goodPythonCode)
t.end()
})
}
var nodeFilePath = './fixtures/node_output/' + fileName.replace('txt', 'js')
var nodeTestName = 'Node: ' + fileName.replace(/_/g, ' ').replace('.txt', '')
if (fs.existsSync(nodeFilePath)) {
var goodNodeCode = fs.readFileSync(nodeFilePath, 'utf-8')
var nodeCode = curlconverter.toNode(inputFileContents)
test(nodeTestName, function (t) {
t.equal(nodeCode, goodNodeCode)
t.end()
})
}
var phpFilePath = './fixtures/php_output/' + fileName.replace('txt', 'php')
var phpTestName = 'PHP: ' + fileName.replace(/_/g, ' ').replace('.txt', '')
if (fs.existsSync(phpFilePath)) {
var goodPhpCode = fs.readFileSync(phpFilePath, 'utf-8')
var phpCode = curlconverter.toPhp(inputFileContents)
test(phpTestName, function (t) {
t.equal(phpCode, goodPhpCode)
t.end()
})
}
}
// get --test=test_name parameter and just run that test on its own
var testName = yargs.argv.test
if (testName) {
var fileName = testName + '.txt'
testFile(fileName)
} else {
// otherwise, run them all
var inputFiles = fs.readdirSync('fixtures/curl_commands/')
inputFiles.forEach(testFile)
}