feat: Created a mini nodeJS server with NewMan for testing without PostMan GUI.

This will mimic a run in a CD/CI environment or docker container.
This commit is contained in:
Simon Priet
2021-09-08 14:01:19 +02:00
parent 5fbd7c88fa
commit e69a613a37
5610 changed files with 740417 additions and 3 deletions

174
node_modules/flatted/php/flatted.php generated vendored Normal file
View File

@@ -0,0 +1,174 @@
<?php
/*!
* ISC License
*
* Copyright (c) 2018-2020, Andrea Giammarchi, @WebReflection
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
class FlattedString {
public function __construct($value) {
$this->value = $value;
}
}
class Flatted {
// public utilities
public static function parse($json, $assoc = false, $depth = 512, $options = 0) {
$input = array_map(
'Flatted::asString',
array_map(
'Flatted::wrap',
json_decode($json, $assoc, $depth, $options)
)
);
$value = &$input[0];
$set = array();
$set[] = &$value;
if (is_array($value))
return Flatted::loop(false, array_keys($value), $input, $set, $value);
if (is_object($value))
return Flatted::loop(true, Flatted::keys($value), $input, $set, $value);
return $value;
}
public static function stringify($value, $options = 0, $depth = 512) {
$known = new stdClass;
$known->key = array();
$known->value = array();
$input = array();
$output = array();
$i = intval(Flatted::index($known, $input, $value));
while ($i < count($input)) {
$output[$i] = Flatted::transform($known, $input, $input[$i]);
$i++;
}
return json_encode($output, $options, $depth);
}
// private helpers
private static function asString(&$value) {
return $value instanceof FlattedString ? $value->value : $value;
}
private static function index(&$known, &$input, &$value) {
$input[] = &$value;
$index = strval(count($input) - 1);
$known->key[] = &$value;
$known->value[] = &$index;
return $index;
}
private static function keys(&$value) {
$obj = new ReflectionObject($value);
$props = $obj->getProperties();
$keys = array();
foreach ($props as $prop) {
$keys[] = $prop->getName();
}
return $keys;
}
private static function loop($obj, $keys, &$input, &$set, &$output) {
foreach ($keys as $key) {
$value = $obj ? $output->$key : $output[$key];
if ($value instanceof FlattedString) {
Flatted::ref($obj, $key, $input[$value->value], $input, $set, $output);
}
}
return $output;
}
private static function relate(&$known, &$input, &$value) {
if (is_string($value)) {
$key = array_search($value, $known->key, true);
if ($key !== false) {
return $known->value[$key];
}
return Flatted::index($known, $input, $value);
}
if (is_array($value)) {
$key = array_search($value, $known->key, true);
if ($key !== false) {
return $known->value[$key];
}
return Flatted::index($known, $input, $value);
}
if (is_object($value)) {
$key = array_search($value, $known->key, true);
if ($key !== false) {
return $known->value[$key];
}
return Flatted::index($known, $input, $value);
}
return $value;
}
private static function ref($obj, &$key, &$value, &$input, &$set, &$output) {
if (is_array($value) && !in_array($value, $set, true)) {
$set[] = $value;
$value = Flatted::loop(false, array_keys($value), $input, $set, $value);
}
elseif (is_object($value) && !in_array($value, $set, true)) {
$set[] = $value;
$value = Flatted::loop(true, Flatted::keys($value), $input, $set, $value);
}
if ($obj) {
$output->$key = &$value;
}
else {
$output[$key] = &$value;
}
}
private static function transform(&$known, &$input, &$value) {
if (is_array($value)) {
return array_map(
function (&$value) use(&$known, &$input) {
return Flatted::relate($known, $input, $value);
},
$value
);
}
if (is_object($value)) {
$object = new stdClass;
$keys = Flatted::keys($value);
foreach ($keys as $key) {
$object->$key = Flatted::relate($known, $input, $value->$key);
}
return $object;
}
return $value;
}
private static function wrap(&$value) {
if (is_string($value)) {
return new FlattedString($value);
}
if (is_array($value)) {
return array_map('Flatted::wrap', $value);
}
if (is_object($value)) {
$keys = Flatted::keys($value);
foreach ($keys as $key) {
$value->$key = self::wrap($value->$key);
}
return $value;
}
return $value;
}
}
?>

118
node_modules/flatted/php/test.php generated vendored Normal file
View File

@@ -0,0 +1,118 @@
<?php
error_reporting(E_ALL | E_STRICT);
require_once('flatted.php');
class console {
public static function assert($condition, $message) {
if (!$condition) {
echo $message."\n";
exit(1);
}
}
}
console::assert(Flatted::stringify([null, null]) === '[[null,null]]', 'multiple null failed');
$a = array();
$o = new stdClass;
console::assert(Flatted::stringify($a) === '[[]]', 'empty Array');
console::assert(Flatted::stringify($o) === '[{}]', 'empty Object');
$a[] = &$a;
$o->o = &$o;
console::assert(Flatted::stringify($a) === '[["0"]]', 'recursive Array');
console::assert(Flatted::stringify($o) === '[{"o":"0"}]', 'recursive Object');
$b = Flatted::parse(Flatted::stringify($a));
console::assert(is_array($b) && $b[0] === $b, 'restoring recursive Array');
$a[] = 1;
$a[] = 'two';
$a[] = true;
$o->one = 1;
$o->two = 'two';
$o->three = true;
console::assert(Flatted::stringify($a) === '[["0",1,"1",true],"two"]', 'values in Array');
console::assert(Flatted::stringify($o) === '[{"o":"0","one":1,"two":"1","three":true},"two"]', 'values in Object');
$a[] = &$o;
$o->a = &$a;
console::assert(Flatted::stringify($a) === '[["0",1,"1",true,"2"],"two",{"o":"2","one":1,"two":"1","three":true,"a":"0"}]', 'object in Array');
console::assert(Flatted::stringify($o) === '[{"o":"0","one":1,"two":"1","three":true,"a":"2"},"two",["2",1,"1",true,"0"]]', 'array in Object');
$a[] = array('test' => 'OK');
$a[] = [1, 2, 3];
$o->test = array('test' => 'OK');
$o->array = [1, 2, 3];
console::assert(Flatted::stringify($a) === '[["0",1,"1",true,"2","3","4"],"two",{"o":"2","one":1,"two":"1","three":true,"a":"0","test":"3","array":"4"},{"test":"5"},[1,2,3],"OK"]', 'objects in Array');
console::assert(Flatted::stringify($o) === '[{"o":"0","one":1,"two":"1","three":true,"a":"2","test":"3","array":"4"},"two",["2",1,"1",true,"0","3","4"],{"test":"5"},[1,2,3],"OK"]', 'objects in Object');
$a2 = Flatted::parse(Flatted::stringify($a));
$o2 = Flatted::parse(Flatted::stringify($o));
console::assert($a2[0] === $a2, 'parsed Array');
console::assert($o2->o === $o2, 'parsed Object');
console::assert(
$a2[1] === 1 &&
$a2[2] === 'two' &&
$a2[3] === true &&
$a2[4] instanceof stdClass &&
json_encode($a2[5]) === json_encode(array('test' => 'OK')) &&
json_encode($a2[6]) === json_encode([1, 2, 3]),
'array values are all OK'
);
console::assert($a2[4] === $a2[4]->o && $a2 === $a2[4]->o->a, 'array recursive values are OK');
console::assert(
$o2->one === 1 &&
$o2->two === 'two' &&
$o2->three === true &&
is_array($o2->a) &&
json_encode($o2->test) === json_encode(array('test' => 'OK')) &&
json_encode($o2->array) === json_encode([1, 2, 3]),
'object values are all OK'
);
console::assert($o2->a === $o2->a[0] && $o2 === $o2->a[4], 'object recursive values are OK');
console::assert(Flatted::parse(Flatted::stringify(1)) === 1, 'numbers can be parsed too');
console::assert(Flatted::parse(Flatted::stringify(false)) === false, 'booleans can be parsed too');
console::assert(Flatted::parse(Flatted::stringify(null)) === null, 'null can be parsed too');
console::assert(Flatted::parse(Flatted::stringify('test')) === 'test', 'strings can be parsed too');
$str = Flatted::parse('[{"prop":"1","a":"2","b":"3"},{"value":123},["4","5"],{"e":"6","t":"7","p":4},{},{"b":"8"},"f",{"a":"9"},["10"],"sup",{"a":1,"d":2,"c":"7","z":"11","h":1},{"g":2,"a":"7","b":"12","f":6},{"r":4,"u":"7","c":5}]');
console::assert(
$str->b->t->a === 'sup' &&
$str->a[1]->b[0]->c === $str->b->t,
'str is fine'
);
$oo = Flatted::parse('[{"a":"1","b":"0","c":"2"},{"aa":"3"},{"ca":"4","cb":"5","cc":"6","cd":"7","ce":"8","cf":"9"},{"aaa":"10"},{"caa":"4"},{"cba":"5"},{"cca":"2"},{"cda":"4"},"value2","value3","value1"]');
console::assert(
$oo->a->aa->aaa = 'value1'
&& $oo === $oo->b
&& $oo === $oo->b
&& $oo->c->ca->caa === $oo->c->ca
&& $oo->c->cb->cba === $oo->c->cb
&& $oo->c->cc->cca === $oo->c
&& $oo->c->cd->cda === $oo->c->ca->caa
&& $oo->c->ce === 'value2'
&& $oo->c->cf === 'value3',
'parse is correct'
);
echo "OK\n";
?>