我的node项目首次提交!!!
This commit is contained in:
31
node_modules/fast-json-stringify/test/json-schema-test-suite/util.js
generated
vendored
Normal file
31
node_modules/fast-json-stringify/test/json-schema-test-suite/util.js
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
'use strict'
|
||||
|
||||
const build = require('../..')
|
||||
|
||||
async function runTests (t, testsuite, skippedTests) {
|
||||
for (const scenario of testsuite) {
|
||||
const stringify = build(scenario.schema)
|
||||
for (const test of scenario.tests) {
|
||||
if (skippedTests.indexOf(test.description) !== -1) {
|
||||
console.log(`skip ${test.description}`)
|
||||
continue
|
||||
}
|
||||
|
||||
await t.test(test.description, (t) => {
|
||||
t.plan(1)
|
||||
try {
|
||||
const output = stringify(test.data)
|
||||
t.assert.equal(output, JSON.stringify(test.data), 'compare payloads')
|
||||
} catch (err) {
|
||||
t.assert.ok(test.valid === false, 'payload should be valid: ' + err.message)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function counTests (ts, skippedTests) {
|
||||
return ts.reduce((a, b) => a + b.tests.length, 0) - skippedTests.length
|
||||
}
|
||||
|
||||
module.exports = { runTests, counTests }
|
||||
Reference in New Issue
Block a user