Excerpt | ||||||
---|---|---|---|---|---|---|
|
1. Definition
DEFINITION |
---|
The DoWithInterpreter is used to express interactions with the system under development that must be performed in a particular order. This form of specification provides information about the business flow. When a sequence of action is executed, confirms that each action has successfully been performed.
|
1.1. Specific Keywords
offers a list of useful keywords to support the Business Expert. Those keywords are placed at the beginning of an action row.
Accept | Confirm that the action as been executed by the system under development. |
---|---|
Check | Verify the specified expected value with the value returned by the system under development |
Reject | The action should not be performed by the system under development (expected errors). |
Display | Print the value returned by the system under development. |
1.2. Coloring
will visually show the test result by coloring each testing cell:
Panel | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
When the action has been executed successfully, color the cell(s) in green. |
...
Standard form (without keyword) | Only the Action description will be colored. |
---|---|
Accept | Only the cell containing the keyword Accept will be colored. |
Check | The cell containing the expected value will be colored. In case of a failure, will show the expected and the returned values. |
Reject | Only the cell containing the keyword Reject will be colored. |
Display | A new cell at the end of the row will be colored containing the returned value. |
2. Writing fixtures for Do With tables
As we've seen in the Do With definition, a sequence of tables is used to express a business flow in the application under development.
...
This page shows the fixture code that supports the examples introduced in the Writing a Do With specification.
2.1. Fixture for Bank
Consider the first example of business flow described in Writing a Do With specification, shown again below.
do with | bank |
...
The fixture code to support this example in Java is the class BankFixture shown below.
2.2. Show me the code
Code Block | ||||
---|---|---|---|---|
| ||||
public class BankFixture { private Bank bank; public BankFixture() { bank = new Bank(); } public boolean openCheckingAccountUnderTheNameOf(String number, String firstName, String lastName) { return bank.openCheckingAccount(number, new Owner(firstName, lastName)) != null; } public Money thatBalanceOfAccountIs(String accountNumber) throws Exception { BankAccount account = bank.getAccount(accountNumber); return account.getBalance(); } } |
That class follows the general rules of fixtures described in 4.4 LD Workflow Validation (Do With). It provides public instance methods openCheckingAccount and thatBalanceOfAccount to map respectively to the actions open checking account and that balance of account.
...
Code Block | ||||
---|---|---|---|---|
| ||||
public class Bank { private final HashMap<String, BankAccount> accounts; public Bank() { accounts = new HashMap<String, BankAccount>(); } public boolean hasAccount(String accountNumber) { return accounts.containsKey(accountNumber); } public BankAccount getAccount(String accountNumber) throws NoSuchAccountException { if (!hasAccount(accountNumber) throw new NoSuchAccountException(accountNumber); return accounts.get(accountNumber); } public CheckingAccount openCheckingAccount(String number, Owner owner) { if (hasAccount(number)) return null; CheckingAccount account = new CheckingAccount(number, owner); accounts.put(number, account); return account; } } |
2.3. How is the example interpreted?
When it runs this example, reads the first table to decide on the interpreter and fixture to use and start testing from the second table, which is the first test table.
...
- It calls the method thatBalanceOfAccountIs() with the parameter 12345-67890 to get the value calculated by the system under test
- This is a check action, so it reads the value $0.00 from the last cell of the row and compares it to the value returned by the fixture. Since the values are equal, it annotates the last cell as right, which results in the cell being colored green.
2.4. What happens for other return types?
2.4.1. Default Rows
Depending on the value returned by the system under test, default actions will annotate keyword cells following these rules:
- If the value is true, it annotates keyword cells right, making them appear green.
- If the value is false - indicating a failure - it annotates keyword cells wrong, making them appear red.
- If the action throws an exception, it annotates the first keyword as an exception, making it appear yellow and display a stack trace of the error.
- If the action returns another value or nothing, it ignores the result.
2.4.2. Check Rows
Depending on the value returned by the system under test, check actions will annotate the row following these rules:
- If the returned value matches the expected value, it annotates the last cell right, making it appear green.
- If the action returns nothing or a value that does not match the expected value - indicating a failure - it annotates the last cell wrong, making it appear red.
- If the action throws an exception, it annotates the first keyword as an exception, making it appear yellow and display a stack trace of the error.
2.5. Building on the Bank example
The second example in Writing a Do With Specification, shown again below, presents a more complete business flow using the bank fixture.
...
In the last row of the last table, the accept special keyword is used to indicate that we expect the last call to succeed. Accept is the opposite of reject. That is, the last withdraw should not return false nor throw an exception.
2.5.1. Reject Rows
Depending on the value returned by the system under test, reject actions will annotate the row following these rules:
- If the action returns false or throws an exception - indicating a success - it annotates the reject keyword right, making it appear green.
- If the returned value is anything else or nothing - indicating a failure - , it annotates the reject keyword wrong, making it appear red.
2.5.2. Accept Rows
Depending on the value returned by the system under test, accept actions will annotate the row following these rules:
- If the returned value is anything except false or an exception - indicating a success -, it annotates the accept keyword right, making it appear green.
- If the action returns false or throws an exception - indicating a failure - it annotates the accept keyword wrong, making it appear red.
2.6. Show me the code
The supporting code is here:
Code Block | ||||
---|---|---|---|---|
| ||||
public class BankFixture { private Bank bank; public BankFixture() { bank = new Bank(); } public boolean openCheckingAccountUnderTheNameOf(String number, String firstName, String lastName) { return bank.openCheckingAccount(number, new Owner(firstName, lastName)) != null; } public Money thatBalanceOfAccountIs(String accountNumber) throws Exception { BankAccount account = bank.getAccount(accountNumber); return account.getBalance(); } public void depositInAccount(Money amount, String accountNumber) throws Exception { bank.deposit(amount, accountNumber); } public boolean withdrawFromAccount(Money amount, String accountNumber) throws Exception { return withdrawFromAccountUsing( amount, accountNumber, WithdrawType.ATM ); } public boolean withdrawFromAccountUsing(Money amount, String accountNumber, WithdrawType withdrawType) throws Exception { try { bank.withdraw(amount, accountNumber, withdrawType); } catch (Exception e) { return false; } return true; } public Collection getOpenedAccounts() { return bank.getAccounts(); } } |
2.7. Combining with other types of rules
An interesting characteristic of the DoWithInterpreter is the ability to delegate processing of part of the table to another interpreter.
...
set of | opened accounts | |
number | type | owner name |
12345-67890 | checking | Spongebob Squarepants |
54321-09876 | savings | Patrick Star |
end |
2.8. Interpret Rows
Depending on the value returned by the system under test, interpret actions will annotate the row following these rules:
- If the returned value is an object, it uses the interpreter specified in the first cell on that object to interpret the remainder of the table. The row is not annotated.
- If the action returns nothing, it uses the interpreter without any fixture to interpret the remainder of the table. The row is not annotated.
- If the action throws an exception - indicating a failure - it annotates the first action keyword as exception, making appear yellow and display a stack trace of the error. The remainder of the table is not interpreted.