mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 06:55:08 -04:00
41 lines
943 B
JavaScript
41 lines
943 B
JavaScript
/**
|
|
* YAML tests.
|
|
*
|
|
* @author ccarpo [ccarpo@gmx.net]
|
|
*
|
|
* @copyright Crown Copyright 2021
|
|
* @license Apache-2.0
|
|
*/
|
|
import TestRegister from "../../lib/TestRegister.mjs";
|
|
|
|
const EXAMPLE_YAML = `number: 3\nplain: string\nblock: |\n two\n lines`;
|
|
const EXAMPLE_JSON = `{ "number": 3, "plain": "string" }`;
|
|
|
|
TestRegister.addTests([
|
|
{
|
|
name: "YAML to JSON",
|
|
input: EXAMPLE_YAML,
|
|
expectedOutput: JSON.stringify({
|
|
"number": 3,
|
|
"plain": "string",
|
|
"block": "two\nlines\n"
|
|
}, null, 4),
|
|
recipeConfig: [
|
|
{
|
|
op: "YAML to JSON",
|
|
args: [],
|
|
}
|
|
],
|
|
},
|
|
{
|
|
name: "JSON to YAML",
|
|
input: EXAMPLE_JSON,
|
|
expectedOutput: `number: 3\nplain: string\n`,
|
|
recipeConfig: [
|
|
{
|
|
op: "JSON to YAML",
|
|
args: [],
|
|
}
|
|
],
|
|
},
|
|
]);
|