Skip to content

Commit

Permalink
Add property based tests to assess load reverses dump
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz committed Feb 22, 2018
1 parent c62fd62 commit a02e455
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -36,6 +36,7 @@
"browserify": "^14.3.0",
"codemirror": "^5.13.4",
"eslint": "^4.1.1",
"fast-check": "0.0.12",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"uglify-js": "^3.0.1"
Expand Down
16 changes: 16 additions & 0 deletions test/25-dumper-fuzzy.js
@@ -0,0 +1,16 @@
'use strict';


var path = require('path');
var fs = require('fs');


suite('Properties', function () {
var directory = path.resolve(__dirname, 'properties');

fs.readdirSync(directory).forEach(function (file) {
if (path.extname(file) === '.js') {
require(path.resolve(directory, file));
}
});
});
27 changes: 27 additions & 0 deletions test/properties-arbitraries/dump-options.js
@@ -0,0 +1,27 @@
'use strict';

var fc = require('fast-check');

// Generate valid options for yaml.safeDump configuration

var dumpOptionsArbitrary = fc.record({
skipInvalid: fc.boolean(),
sortKeys: fc.boolean(),
noRefs: fc.boolean(),
noCompatMode: fc.boolean(),
condenseFlow: fc.boolean(),
indent: fc.integer(1, 80),
flowLevel: fc.integer(-1, 10),
styles: fc.record({
'!!null': fc.constantFrom('lowercase', 'canonical', 'uppercase', 'camelcase'),
'!!int': fc.constantFrom('decimal', 'binary', 'octal', 'hexadecimal'),
'!!bool': fc.constantFrom('lowercase', 'uppercase', 'camelcase'),
'!!float': fc.constantFrom('lowercase', 'uppercase', 'camelcase')
}, { with_deleted_keys: true })
}, { with_deleted_keys: true })
.map(function (instance) {
if (instance.condenseFlow === true && instance.flowLevel !== undefined) { instance.flowLevel = -1; }
return instance;
});

module.exports = dumpOptionsArbitrary;
14 changes: 14 additions & 0 deletions test/properties-arbitraries/yaml.js
@@ -0,0 +1,14 @@
'use strict';

var fc = require('fast-check');

// Generate valid YAML instances for yaml.safeDump

var key = fc.string16bits();
var values = [
key, fc.boolean(), fc.integer(), fc.double(),
fc.constantFrom(null, Number.NEGATIVE_INFINITY, Number.POSITIVE_INFINITY)
];
var yamlArbitrary = fc.object({ key: key, values: values });

module.exports = yamlArbitrary;
18 changes: 18 additions & 0 deletions test/properties/identity.js
@@ -0,0 +1,18 @@
'use strict';

var assert = require('assert');
var fc = require('fast-check');
var yaml = require('../../');
var yamlArbitrary = require('../properties-arbitraries/yaml');
var dumpOptionsArbitrary = require('../properties-arbitraries/dump-options');

test('Load from dumped should be the original object', function () {
fc.assert(fc.property(
yamlArbitrary,
dumpOptionsArbitrary,
function (obj, dumpOptions) {
var yamlContent = yaml.safeDump(obj, dumpOptions);
assert.ok(typeof yamlContent === 'string');
assert.deepStrictEqual(yaml.safeLoad(yamlContent), obj);
}));
});

0 comments on commit a02e455

Please sign in to comment.