diff options
Diffstat (limited to 'std/encoding/yaml')
-rw-r--r-- | std/encoding/yaml/loader/loader.ts | 2 | ||||
-rw-r--r-- | std/encoding/yaml/parse_test.ts | 54 | ||||
-rw-r--r-- | std/encoding/yaml/utils.ts | 4 |
3 files changed, 44 insertions, 16 deletions
diff --git a/std/encoding/yaml/loader/loader.ts b/std/encoding/yaml/loader/loader.ts index e06581b7e..a81395a8e 100644 --- a/std/encoding/yaml/loader/loader.ts +++ b/std/encoding/yaml/loader/loader.ts @@ -577,7 +577,7 @@ function readPlainScalar( captureSegment(state, captureStart, captureEnd, false); - if (!common.isNullOrUndefined(state.result)) { + if (state.result) { return true; } diff --git a/std/encoding/yaml/parse_test.ts b/std/encoding/yaml/parse_test.ts index 029665e44..ec1b386f9 100644 --- a/std/encoding/yaml/parse_test.ts +++ b/std/encoding/yaml/parse_test.ts @@ -3,23 +3,55 @@ // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { parse } from "./parse.ts"; +import { parse, parseAll } from "./parse.ts"; import { test } from "../../testing/mod.ts"; import { assertEquals } from "../../testing/asserts.ts"; test({ - name: "parsed correctly", + name: "`parse` parses single document yaml string", fn(): void { - const FIXTURE = ` - test: toto - foo: - bar: True - baz: 1 - qux: ~ - `; + const yaml = ` + test: toto + foo: + bar: True + baz: 1 + qux: ~ + `; - const ASSERTS = { test: "toto", foo: { bar: true, baz: 1, qux: null } }; + const expected = { test: "toto", foo: { bar: true, baz: 1, qux: null } }; - assertEquals(parse(FIXTURE), ASSERTS); + assertEquals(parse(yaml), expected); + } +}); + +test({ + name: "`parseAll` parses the yaml string with multiple documents", + fn(): void { + const yaml = ` +--- +id: 1 +name: Alice +--- +id: 2 +name: Bob +--- +id: 3 +name: Eve + `; + const expected = [ + { + id: 1, + name: "Alice" + }, + { + id: 2, + name: "Bob" + }, + { + id: 3, + name: "Eve" + } + ]; + assertEquals(parseAll(yaml), expected); } }); diff --git a/std/encoding/yaml/utils.ts b/std/encoding/yaml/utils.ts index 2f4ea00b5..0f2d7abe7 100644 --- a/std/encoding/yaml/utils.ts +++ b/std/encoding/yaml/utils.ts @@ -22,10 +22,6 @@ export function isNull(value: unknown): value is null { return value === null; } -export function isNullOrUndefined(value: unknown): value is null | undefined { - return value === null || value === undefined; -} - export function isNumber(value: unknown): value is number { return typeof value === "number" || value instanceof Number; } |