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

View File

@@ -0,0 +1,5 @@
module["exports"] = [
"####",
"###",
"##"
];

View File

@@ -0,0 +1,3 @@
module["exports"] = [
"#{city_prefix}"
];

View File

@@ -0,0 +1,14 @@
module["exports"] = [
"Bondi",
"Burleigh Heads",
"Carlton",
"Fitzroy",
"Fremantle",
"Glenelg",
"Manly",
"Noosa",
"Stones Corner",
"St Kilda",
"Surry Hills",
"Yarra Valley"
];

View File

@@ -0,0 +1,3 @@
module["exports"] = [
"Australia"
];

View File

@@ -0,0 +1,13 @@
var address = {};
module['exports'] = address;
address.street_root = require("./street_root");
address.street_name = require("./street_name");
address.city_prefix = require("./city_prefix");
address.city = require("./city");
address.state_abbr = require("./state_abbr");
address.region = require("./region");
address.state = require("./state");
address.postcode = require("./postcode");
address.building_number = require("./building_number");
address.street_suffix = require("./street_suffix");
address.default_country = require("./default_country");

View File

@@ -0,0 +1,9 @@
module["exports"] = [
"0###",
"2###",
"3###",
"4###",
"5###",
"6###",
"7###"
];

View File

@@ -0,0 +1,9 @@
module["exports"] = [
"South East Queensland",
"Wide Bay Burnett",
"Margaret River",
"Port Pirie",
"Gippsland",
"Elizabeth",
"Barossa"
];

View File

@@ -0,0 +1,10 @@
module["exports"] = [
"New South Wales",
"Queensland",
"Northern Territory",
"South Australia",
"Western Australia",
"Tasmania",
"Australian Capital Territory",
"Victoria"
];

View File

@@ -0,0 +1,10 @@
module["exports"] = [
"NSW",
"QLD",
"NT",
"SA",
"WA",
"TAS",
"ACT",
"VIC"
];

View File

@@ -0,0 +1,3 @@
module["exports"] = [
"#{street_root}"
];

View File

@@ -0,0 +1,6 @@
module["exports"] = [
"Ramsay Street",
"Bonnie Doon",
"Cavill Avenue",
"Queen Street"
];

View File

@@ -0,0 +1,39 @@
module["exports"] = [
"Avenue",
"Boulevard",
"Circle",
"Circuit",
"Court",
"Crescent",
"Crest",
"Drive",
"Estate Dr",
"Grove",
"Hill",
"Island",
"Junction",
"Knoll",
"Lane",
"Loop",
"Mall",
"Manor",
"Meadow",
"Mews",
"Parade",
"Parkway",
"Pass",
"Place",
"Plaza",
"Ridge",
"Road",
"Run",
"Square",
"Station St",
"Street",
"Summit",
"Terrace",
"Track",
"Trail",
"View Rd",
"Way"
];

View File

@@ -0,0 +1,3 @@
var company = {};
module['exports'] = company;
company.suffix = require("./suffix");

View File

@@ -0,0 +1,8 @@
module["exports"] = [
"Pty Ltd",
"and Sons",
"Corp",
"Group",
"Brothers",
"Partners"
];

8
node_modules/faker/lib/locales/en_AU_ocker/index.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
var en_AU_ocker = {};
module['exports'] = en_AU_ocker;
en_AU_ocker.title = "English (Australia Ocker)";
en_AU_ocker.name = require("./name");
en_AU_ocker.company = require("./company");
en_AU_ocker.internet = require("./internet");
en_AU_ocker.address = require("./address");
en_AU_ocker.phone_number = require("./phone_number");

View File

@@ -0,0 +1,8 @@
module["exports"] = [
"com.au",
"com",
"net.au",
"net",
"org.au",
"org"
];

View File

@@ -0,0 +1,3 @@
var internet = {};
module['exports'] = internet;
internet.domain_suffix = require("./domain_suffix");

View File

@@ -0,0 +1,106 @@
module["exports"] = [
"Charlotte",
"Ava",
"Chloe",
"Emily",
"Olivia",
"Zoe",
"Lily",
"Sophie",
"Amelia",
"Sofia",
"Ella",
"Isabella",
"Ruby",
"Sienna",
"Mia+3",
"Grace",
"Emma",
"Ivy",
"Layla",
"Abigail",
"Isla",
"Hannah",
"Zara",
"Lucy",
"Evie",
"Annabelle",
"Madison",
"Alice",
"Georgia",
"Maya",
"Madeline",
"Audrey",
"Scarlett",
"Isabelle",
"Chelsea",
"Mila",
"Holly",
"Indiana",
"Poppy",
"Harper",
"Sarah",
"Alyssa",
"Jasmine",
"Imogen",
"Hayley",
"Pheobe",
"Eva",
"Evelyn",
"Mackenzie",
"Ayla",
"Oliver",
"Jack",
"Jackson",
"William",
"Ethan",
"Charlie",
"Lucas",
"Cooper",
"Lachlan",
"Noah",
"Liam",
"Alexander",
"Max",
"Isaac",
"Thomas",
"Xavier",
"Oscar",
"Benjamin",
"Aiden",
"Mason",
"Samuel",
"James",
"Levi",
"Riley",
"Harrison",
"Ryan",
"Henry",
"Jacob",
"Joshua",
"Leo",
"Zach",
"Harry",
"Hunter",
"Flynn",
"Archie",
"Tyler",
"Elijah",
"Hayden",
"Jayden",
"Blake",
"Archer",
"Ashton",
"Sebastian",
"Zachery",
"Lincoln",
"Mitchell",
"Luca",
"Nathan",
"Kai",
"Connor",
"Tom",
"Nigel",
"Matt",
"Sean"
];

View File

@@ -0,0 +1,5 @@
var name = {};
module['exports'] = name;
name.first_name = require("./first_name");
name.last_name = require("./last_name");
name.ocker_first_name = require("./ocker_first_name");

View File

@@ -0,0 +1,26 @@
module["exports"] = [
"Smith",
"Jones",
"Williams",
"Brown",
"Wilson",
"Taylor",
"Morton",
"White",
"Martin",
"Anderson",
"Thompson",
"Nguyen",
"Thomas",
"Walker",
"Harris",
"Lee",
"Ryan",
"Robinson",
"Kelly",
"King",
"Rausch",
"Ridge",
"Connolly",
"LeQuesne"
];

View File

@@ -0,0 +1,8 @@
module["exports"] = [
"Bazza",
"Bluey",
"Davo",
"Johno",
"Shano",
"Shazza"
];

View File

@@ -0,0 +1,6 @@
module["exports"] = [
"0# #### ####",
"+61 # #### ####",
"04## ### ###",
"+61 4## ### ###"
];

View File

@@ -0,0 +1,3 @@
var phone_number = {};
module['exports'] = phone_number;
phone_number.formats = require("./formats");