mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
merge init-dish & update tests
This commit is contained in:
commit
de8c99eceb
2 changed files with 4 additions and 4 deletions
|
@ -36,8 +36,8 @@ class Dish {
|
||||||
* literal input
|
* literal input
|
||||||
*/
|
*/
|
||||||
constructor(dishOrInput=null, type = null) {
|
constructor(dishOrInput=null, type = null) {
|
||||||
this.value = [];
|
this.value = new ArrayBuffer(0);
|
||||||
this.type = Dish.BYTE_ARRAY;
|
this.type = Dish.ARRAY_BUFFER;
|
||||||
|
|
||||||
// Case: dishOrInput is dish object
|
// Case: dishOrInput is dish object
|
||||||
if (dishOrInput &&
|
if (dishOrInput &&
|
||||||
|
|
|
@ -331,8 +331,8 @@ TestRegister.addApiTests([
|
||||||
|
|
||||||
it("Composable Dish: Should construct empty dish object", () => {
|
it("Composable Dish: Should construct empty dish object", () => {
|
||||||
const dish = new Dish();
|
const dish = new Dish();
|
||||||
assert.deepEqual(dish.value, []);
|
assert.strictEqual(dish.value.byteLength, new ArrayBuffer(0).byteLength);
|
||||||
assert.strictEqual(dish.type, 0);
|
assert.strictEqual(dish.type, 4);
|
||||||
}),
|
}),
|
||||||
|
|
||||||
it("Composable Dish: constructed dish should have apply prototype functions", () => {
|
it("Composable Dish: constructed dish should have apply prototype functions", () => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue