It is a tool for comparing old and new,
and detects and displays the difference between API or HTML.
create a configuration yaml file.
please check the sample below for each setting
target:
actual:
host: 'https://example.new'
hostsFile: '/etc/actualHosts'
expect:
host: 'https://example.old'
hostsFile: '/etc/expectHosts'
option:
header:
Cookie: 'xxx=xxx;'
User-Agent: 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0'
method: 'GET or POST'
body: '{ sample: xxx }'
query: 'query=xxx'
target:
actual:
host: 'https://example.new'
expect:
host: 'https://example.old'
option:
header:
Cookie: 'xxx=xxx;'
User-Agent: 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0'
waitSec: 1
fullScreen: false
run npm i && npm run start -- -t ${API or HTML} -c ${config path} -o ${dist dir}
after creating the config file.
create an image if you want to start with Docker.
docker build -t ${image_name} ./
execute the command by specifying the directory where the config file is located and the directory where the result is output.
testing for api
target:
actual:
host: 'https://example.new.front'
hostsFile: '/etc/newHosts'
expect:
host: 'https://example.old.front'
option:
header:
Cookie: 'xxx=xxx;'
User-Agent: 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0'
query: 'query=xxx'
type: 'HTML'
testing for frontend
target:
actual:
host: 'https://example.new.api'
expect:
host: 'https://example.old.api'
option:
header:
Cookie: 'xxx=xxx;'
User-Agent: 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0'
waitSec: 1
fullScreen: false
start demo server
cd demo && npm run start
html test
BASE_HOSTS="/etc/hosts" npm run start -- -t HTML -c ./demo/config/html.sample.yaml -d report
※ BASE_HOSTS
default values is /etc/hosts
api test
npm run start -- -t API -c ./demo/config/api.sample.yaml -d report