Skip to content

Latest commit

 

History

History
56 lines (56 loc) · 2.64 KB

TestFinalWeb.md

File metadata and controls

56 lines (56 loc) · 2.64 KB

Code Challenge - WEB TESTS

The goal of this code challenge is to create a microservice using Java and any framework that you think it is appropriate.
Return to Main: [README.md] (https://github.com/luisamesty/orangebanktest/blob/master/README.md)

WEB TESTS

OrangeBooktestApp.war must be running and accepting reques.

Four WEB test has been develped:

  • Accounts: Posibility to enter new accounts and delete. Update will be ready soon.
  • Transactions: List all transactions in table AccountTransaction, with all attibutes.
  • Transactions by IBAN: List all transaction filterd by IBAN.
  • Transactions by REFERENCE: List all transaction filterd by REFERENCE.

Accounts

User can Insert and Delete Accounts. Update will be available soon.
URL: http://localhost:8080/OrangeBookTestApp/accounts
![Screenshot] (https://github.com/luisamesty/orangebanktest/blob/master/OrangeBookWiki/images/accounts.png) accounts.png

Transacctions

Use can visualize al transaction on table AccountTransaction.
URL: http://localhost:8080/OrangeBookTestApp/transactions
![Screenshot] (https://github.com/luisamesty/orangebanktest/blob/master/OrangeBookWiki/images/transactions.png) transactions.png

Transactions by IBAN

Use can visualize al transaction on table AccountTransaction.
Filtered by IBAN Account number.
URL: http://localhost:8080/OrangeBookTestApp/tr_search
![Screenshot] (https://github.com/luisamesty/orangebanktest/blob/master/OrangeBookWiki/images/transactions_by_IBAN.png) transactions_by_IBAN.png

Transactions by REFERENCE

Use can visualize al transaction on table AccountTransaction.
Filtered by REFERENCE number.
URL: http://localhost:8080/OrangeBookTestApp/tr_search
![Screenshot] (https://github.com/luisamesty/orangebanktest/blob/master/OrangeBookWiki/images/transactions_by_REF.png) transactions_by_REF.png

Return to Main: README.md