2017-02-23 18:59:58 +00:00
|
|
|
/**
|
2017-02-28 17:08:36 +00:00
|
|
|
* Flow Control tests.
|
|
|
|
*
|
|
|
|
* @author tlwr [toby@toby.codes]
|
2017-02-23 18:59:58 +00:00
|
|
|
*
|
|
|
|
* @copyright Crown Copyright 2017
|
|
|
|
* @license Apache-2.0
|
|
|
|
*/
|
|
|
|
TestRegister.addTests([
|
|
|
|
{
|
|
|
|
name: "Fork: nothing",
|
|
|
|
input: "",
|
|
|
|
expectedOutput: "",
|
|
|
|
recipeConfig: [
|
|
|
|
{
|
|
|
|
op: "Fork",
|
|
|
|
args: ["\n", "\n", false],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Fork, Merge: nothing",
|
|
|
|
input: "",
|
|
|
|
expectedOutput: "",
|
|
|
|
recipeConfig: [
|
|
|
|
{
|
|
|
|
op: "Fork",
|
|
|
|
args: ["\n", "\n", false],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
op: "Merge",
|
|
|
|
args: [],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Fork, (expect) Error, Merge",
|
|
|
|
input: "1\n2\na\n4",
|
|
|
|
expectedError: true,
|
|
|
|
recipeConfig: [
|
|
|
|
{
|
|
|
|
op: "Fork",
|
|
|
|
args: ["\n", "\n", false],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
op: "To Base",
|
|
|
|
args: [16],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
op: "Merge",
|
|
|
|
args: [],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2017-03-01 21:13:20 +00:00
|
|
|
{
|
|
|
|
name: "Fork, Conditional Jump, Encodings",
|
|
|
|
input: "Some data with a 1 in it\nSome data with a 2 in it",
|
|
|
|
expectedOutput: "U29tZSBkYXRhIHdpdGggYSAxIGluIGl0\n53 6f 6d 65 20 64 61 74 61 20 77 69 74 68 20 61 20 32 20 69 6e 20 69 74\n",
|
|
|
|
recipeConfig: [
|
|
|
|
{"op":"Fork", "args":["\\n", "\\n", false]},
|
|
|
|
{"op":"Conditional Jump", "args":["1", "2", "10"]},
|
|
|
|
{"op":"To Hex", "args":["Space"]},
|
|
|
|
{"op":"Return", "args":[]},
|
|
|
|
{"op":"To Base64", "args":["A-Za-z0-9+/="]}
|
|
|
|
]
|
|
|
|
},
|
2017-02-23 18:59:58 +00:00
|
|
|
]);
|