Ultimate tests for ERC-TO-ERC (#186)
* Introduce ultimate erc-to-erc * Added metamask setup * Corrected configuration parameters
This commit is contained in:
parent
244306f0bf
commit
6aafce052c
@ -250,3 +250,8 @@ workflows:
|
|||||||
scenario-name: erc-to-native
|
scenario-name: erc-to-native
|
||||||
redis-key: erc-native-collected-signatures:lastProcessedBlock
|
redis-key: erc-native-collected-signatures:lastProcessedBlock
|
||||||
ui-e2e-grep: "ERC TO NATIVE"
|
ui-e2e-grep: "ERC TO NATIVE"
|
||||||
|
- ultimate:
|
||||||
|
name: "ultimate: erc to erc"
|
||||||
|
scenario-name: erc-to-erc
|
||||||
|
redis-key: erc-erc-collected-signatures:lastProcessedBlock
|
||||||
|
ui-e2e-grep: "ERC TO ERC"
|
||||||
|
7
deployment/group_vars/erc-to-erc.yml
Normal file
7
deployment/group_vars/erc-to-erc.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
BRIDGE_MODE: "ERC_TO_ERC"
|
||||||
|
HOME_BRIDGE_ADDRESS: "0x1feB40aD9420b186F019A717c37f5546165d411E"
|
||||||
|
FOREIGN_BRIDGE_ADDRESS: "0x4a58D6d8D416a5fBCAcf3dC52eb8bE8948E25127"
|
||||||
|
ERC20_TOKEN_ADDRESS: "0x3C665A31199694Bf723fD08844AD290207B5797f"
|
||||||
|
UI_PORT: 3001
|
||||||
|
MONITOR_PORT: 3011
|
14
deployment/molecule/ultimate-erc-to-erc/Dockerfile.j2
Normal file
14
deployment/molecule/ultimate-erc-to-erc/Dockerfile.j2
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# Molecule managed
|
||||||
|
|
||||||
|
{% if item.registry is defined %}
|
||||||
|
FROM {{ item.registry.url }}/{{ item.image }}
|
||||||
|
{% else %}
|
||||||
|
FROM {{ item.image }}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
RUN if [ $(command -v apt-get) ]; then apt-get update && apt-get install -y python sudo bash ca-certificates && apt-get clean; \
|
||||||
|
elif [ $(command -v dnf) ]; then dnf makecache && dnf --assumeyes install python sudo python-devel python*-dnf bash && dnf clean all; \
|
||||||
|
elif [ $(command -v yum) ]; then yum makecache fast && yum install -y python sudo yum-plugin-ovl bash && sed -i 's/plugins=0/plugins=1/g' /etc/yum.conf && yum clean all; \
|
||||||
|
elif [ $(command -v zypper) ]; then zypper refresh && zypper install -y python sudo bash python-xml && zypper clean -a; \
|
||||||
|
elif [ $(command -v apk) ]; then apk update && apk add --no-cache python sudo bash ca-certificates; \
|
||||||
|
elif [ $(command -v xbps-install) ]; then xbps-install -Syu && xbps-install -y python sudo bash ca-certificates && xbps-remove -O; fi
|
56
deployment/molecule/ultimate-erc-to-erc/molecule.yml
Normal file
56
deployment/molecule/ultimate-erc-to-erc/molecule.yml
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
---
|
||||||
|
driver:
|
||||||
|
name: docker
|
||||||
|
platforms:
|
||||||
|
- name: oracle-erc-to-erc-host
|
||||||
|
groups:
|
||||||
|
- ultimate
|
||||||
|
- erc-to-erc
|
||||||
|
children:
|
||||||
|
- oracle
|
||||||
|
image: ubuntu:16.04
|
||||||
|
privileged: true
|
||||||
|
network_mode: host
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- name: ui-erc-to-erc-host
|
||||||
|
groups:
|
||||||
|
- ultimate
|
||||||
|
- erc-to-erc
|
||||||
|
children:
|
||||||
|
- ui
|
||||||
|
image: ubuntu:16.04
|
||||||
|
privileged: true
|
||||||
|
network_mode: host
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
provisioner:
|
||||||
|
name: ansible
|
||||||
|
playbooks:
|
||||||
|
prepare: ../prepare.yml
|
||||||
|
converge: ../ultimate-commons/converge.yml
|
||||||
|
inventory:
|
||||||
|
host_vars:
|
||||||
|
oracle-erc-to-erc-host:
|
||||||
|
bridge_repo_branch: $CODEBASE_BRANCH
|
||||||
|
HOME_RPC_URL: "http://parity1:8545"
|
||||||
|
FOREIGN_RPC_URL: "http://parity2:8545"
|
||||||
|
VALIDATOR_ADDRESS: "0xaaB52d66283F7A1D5978bcFcB55721ACB467384b"
|
||||||
|
VALIDATOR_ADDRESS_PRIVATE_KEY: "8e829f695aed89a154550f30262f1529582cc49dc30eff74a6b491359e0230f9"
|
||||||
|
ui-erc-to-erc-host:
|
||||||
|
bridge_repo_branch: $CODEBASE_BRANCH
|
||||||
|
HOME_RPC_URL: "http://localhost:8541"
|
||||||
|
FOREIGN_RPC_URL: "http://localhost:8542"
|
||||||
|
verifier:
|
||||||
|
name: testinfra
|
||||||
|
lint:
|
||||||
|
name: flake8
|
||||||
|
scenario:
|
||||||
|
name: ultimate-erc-to-erc
|
||||||
|
test_sequence:
|
||||||
|
- cleanup
|
||||||
|
- destroy
|
||||||
|
- syntax
|
||||||
|
- create
|
||||||
|
- prepare
|
||||||
|
- converge
|
@ -52,5 +52,9 @@ while [ "$1" != "" ]; do
|
|||||||
../deployment/molecule/molecule.sh ultimate-erc-to-native
|
../deployment/molecule/molecule.sh ultimate-erc-to-native
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$1" == "erc-to-erc" ]; then
|
||||||
|
../deployment/molecule/molecule.sh ultimate-erc-to-erc
|
||||||
|
fi
|
||||||
|
|
||||||
shift # Shift all the parameters down by one
|
shift # Shift all the parameters down by one
|
||||||
done
|
done
|
||||||
|
@ -131,6 +131,7 @@ test.describe('e2e-test for bridge.poa, version 1.5.0', async function() {
|
|||||||
|
|
||||||
test.describe('ERC TO ERC', async () => {
|
test.describe('ERC TO ERC', async () => {
|
||||||
test.it('User is able to open main page of bridge-ui ', async () => {
|
test.it('User is able to open main page of bridge-ui ', async () => {
|
||||||
|
await foreignAccount.setMetaMaskNetwork()
|
||||||
startURL = await Utils.getErc20StartURL()
|
startURL = await Utils.getErc20StartURL()
|
||||||
const result = await mainPage.open(startURL)
|
const result = await mainPage.open(startURL)
|
||||||
console.log('Test URL: ' + startURL)
|
console.log('Test URL: ' + startURL)
|
||||||
|
Loading…
Reference in New Issue
Block a user