std/front_matter/yaml_test.ts

37 lines
1.1 KiB
TypeScript
Raw Normal View History

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { extract } from "./yaml.ts";
import {
runExtractTypeErrorTests,
runExtractYamlTests1,
runExtractYamlTests2,
} from "./_test_utils.ts";
import { assertEquals } from "@std/assert/equals";
Deno.test("yaml() extracts type error on invalid input", () => {
runExtractTypeErrorTests("yaml", extract);
});
Deno.test("yaml() parses yaml delineate by `---`", async () => {
await runExtractYamlTests1(extract);
});
Deno.test("yaml() parses yaml delineate by `---yaml`", async () => {
await runExtractYamlTests2(extract);
});
Deno.test("extractYaml() allows whitespaces after the header", () => {
assertEquals(extract("--- \nfoo: 0\n---\n").attrs, { foo: 0 });
assertEquals(extract("---yaml \nfoo: 0\n--- \n").attrs, { foo: 0 });
assertEquals(extract("= yaml = \nfoo: 0\n---\n").attrs, { foo: 0 });
});
Deno.test("extractYaml() parses with schema options", () => {
assertEquals(
extract("---\ndate: 2024-08-20\n---\n", { schema: "json" }).attrs,
{
date: "2024-08-20",
},
);
});