Tests
Currently we are not targeting the 100% test coverage, but rather want to be certain that the most common scenarios can run without any errors.
Scenarios
These are the scenarios that are currently being tested:
Create installation, session-server and device server
Create a new MonetaryAccount
Create a tab
Update the tab
Create attachment and avatar
Request money from first MA to second MA
Accept the request
Make a transaction from first MA to second MA
Create connect gr code
Make a payment to another sandbox user
Send a chat message in a recent payment
Delete the current session
Order a card with a second line
Besides these scenarios, some code of ApiContext, ApiClient and the JSON module are also tested :thumbs_up:.
Configuration
Note:
MONETARY_ACCOUNT_ID
andMONETARY_ACCOUNT_ID2
must be of same userCounterPartyOther
must be of another Sandbox userYou can create a
CASH_REGISTER_ID
on doc.bunq.comAdd your Developer Key to
settings
Upload an image to the
Attachment Public
endpointCreate an
Avatar
with the returned UUIDUse the Avatar's UUID to create a
Cash Register
Copy the Cash Register's ID to the
config.json
Installation and Execution
To run the tests, you must first generate a certificate and key. To do this run the following command, but first update "Your App Id" to a unique id.
You can install all the required dependencies with the following command:
You can run all the tests via command line:
or via PyCharm, but first you must configure PyCharm by doing the following:
Go to
Preferences
-->Tools
-->Python integrated tools
and change default test runner tounittests
.Configure your Python interpreter to an supported Python version. Python 3 is recommended.
Afterwards you can right click on the tests folders and should be able to run the tests cases form the IDE.
Last updated
Was this helpful?