-
-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add replacer similar to one in JSON.stringify
fix #339
- Loading branch information
Showing
4 changed files
with
221 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
'use strict'; | ||
|
||
const assert = require('assert'); | ||
const yaml = require('../..'); | ||
|
||
|
||
describe('replacer', function () { | ||
let undef = new yaml.Type('!undefined', { | ||
kind: 'scalar', | ||
resolve: () => true, | ||
construct: () => {}, | ||
predicate: object => typeof object === 'undefined', | ||
represent: () => '' | ||
}); | ||
|
||
let undef_schema = yaml.DEFAULT_SCHEMA.extend(undef); | ||
|
||
|
||
it('should be called on the root of the document', function () { | ||
let called = 0; | ||
|
||
let result = yaml.dump(42, { | ||
replacer(key, value) { | ||
called++; | ||
assert.deepStrictEqual(this, { '': 42 }); | ||
assert.strictEqual(key, ''); | ||
assert.strictEqual(value, 42); | ||
return 123; | ||
} | ||
}); | ||
assert.strictEqual(result, '123\n'); | ||
assert.strictEqual(called, 1); | ||
|
||
assert.strictEqual(yaml.dump(42, { | ||
replacer(/* key, value */) {} | ||
}), ''); | ||
|
||
assert.strictEqual(yaml.dump(42, { | ||
replacer(/* key, value */) { return 'foo'; } | ||
}), 'foo\n'); | ||
}); | ||
|
||
|
||
it('should be called in collections (block)', function () { | ||
let called = 0; | ||
|
||
let result = yaml.dump([ 42 ], { | ||
replacer(key, value) { | ||
called++; | ||
if (key === '' && called === 1) return value; | ||
assert.deepStrictEqual(this, [ 42 ]); | ||
assert.strictEqual(key, '0'); | ||
assert.strictEqual(value, 42); | ||
return 123; | ||
}, | ||
flowLevel: -1 | ||
}); | ||
assert.strictEqual(result, '- 123\n'); | ||
assert.strictEqual(called, 2); | ||
}); | ||
|
||
|
||
it('should be called in collections (flow)', function () { | ||
let called = 0; | ||
|
||
let result = yaml.dump([ 42 ], { | ||
replacer(key, value) { | ||
called++; | ||
if (key === '' && called === 1) return value; | ||
assert.deepStrictEqual(this, [ 42 ]); | ||
assert.strictEqual(key, '0'); | ||
assert.strictEqual(value, 42); | ||
return 123; | ||
}, | ||
flowLevel: 0 | ||
}); | ||
assert.strictEqual(result, '[123]\n'); | ||
assert.strictEqual(called, 2); | ||
}); | ||
|
||
|
||
it('should be called in mappings (block)', function () { | ||
let called = 0; | ||
|
||
let result = yaml.dump({ a: 42 }, { | ||
replacer(key, value) { | ||
called++; | ||
if (key === '' && called === 1) return value; | ||
assert.deepStrictEqual(this, { a: 42 }); | ||
assert.strictEqual(key, 'a'); | ||
assert.strictEqual(value, 42); | ||
return 123; | ||
}, | ||
flowLevel: -1 | ||
}); | ||
assert.strictEqual(result, 'a: 123\n'); | ||
assert.strictEqual(called, 2); | ||
}); | ||
|
||
|
||
it('should be called in mappings (flow)', function () { | ||
let called = 0; | ||
|
||
let result = yaml.dump({ a: 42 }, { | ||
replacer(key, value) { | ||
called++; | ||
if (key === '' && called === 1) return value; | ||
assert.deepStrictEqual(this, { a: 42 }); | ||
assert.strictEqual(key, 'a'); | ||
assert.strictEqual(value, 42); | ||
return 123; | ||
}, | ||
flowLevel: 0 | ||
}); | ||
assert.strictEqual(result, '{a: 123}\n'); | ||
assert.strictEqual(called, 2); | ||
}); | ||
|
||
|
||
it('undefined removes element from a mapping', function () { | ||
let str, result; | ||
|
||
str = yaml.dump({ a: 1, b: 2, c: 3 }, { | ||
replacer(key, value) { | ||
if (key === 'b') return undefined; | ||
return value; | ||
} | ||
}); | ||
result = yaml.load(str); | ||
assert.deepStrictEqual(result, { a: 1, c: 3 }); | ||
|
||
str = yaml.dump({ a: 1, b: 2, c: 3 }, { | ||
replacer(key, value) { | ||
if (key === 'b') return undefined; | ||
return value; | ||
}, | ||
schema: undef_schema | ||
}); | ||
result = yaml.load(str, { schema: undef_schema }); | ||
assert.deepStrictEqual(result, { a: 1, b: undefined, c: 3 }); | ||
}); | ||
|
||
|
||
it('undefined replaces element in an array with null', function () { | ||
let str, result; | ||
|
||
str = yaml.dump([ 1, 2, 3 ], { | ||
replacer(key, value) { | ||
if (key === '1') return undefined; | ||
return value; | ||
} | ||
}); | ||
result = yaml.load(str); | ||
assert.deepStrictEqual(result, [ 1, null, 3 ]); | ||
|
||
str = yaml.dump([ 1, 2, 3 ], { | ||
replacer(key, value) { | ||
if (key === '1') return undefined; | ||
return value; | ||
}, | ||
schema: undef_schema | ||
}); | ||
result = yaml.load(str, { schema: undef_schema }); | ||
assert.deepStrictEqual(result, [ 1, undefined, 3 ]); | ||
}); | ||
|
||
|
||
it('should recursively call replacer', function () { | ||
let count = 0; | ||
|
||
let result = yaml.dump(42, { | ||
replacer(key, value) { | ||
return count++ > 3 ? value : { ['lvl' + count]: value }; | ||
} | ||
}); | ||
assert.strictEqual(result, ` | ||
lvl1: | ||
lvl2: | ||
lvl3: | ||
lvl4: 42 | ||
`.replace(/^\n/, '')); | ||
}); | ||
}); |