Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt

Table of Contents
maxLevel4
absoluteUrltrue

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.

  • As for all other interpreters, the first row of the DoWithInterpreter specifies the name of the interpreter and the name of the sequence of actions to be tested. What makes the DoWithInterpreter particular is that it only has to be defined once for all the sequences of actions expressed in a page. Obviously, the DoWithInterpreter must be define before any sequence of actions.
  • The following rows are used to express specific actions.
  • The form of each row of a DoWithInterpreter shall respect the following rules:
    • a row shall begin with a part of the action description,
    • each parameter shall be isolated in a cell,
    • each parameter shall be separated by parts of the action description.
  • An action description can be left blank in order to separate two parameters.
  • The DoWithInterpreter provides a minimum of keywords used to define a specific action.
  • The DoWithInterpreter may also be expressed in Bullet List form or Number List form.

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.

AcceptConfirm that the action as been executed by the system under development.
CheckVerify the specified expected value with the value returned by the system under development
RejectThe action should not be performed by the system under development (expected errors).
DisplayPrint the value returned by the system under development.

1.2. Coloring

Image Modified will visually show the test result by coloring each testing cell:

Panel
bgColorlightgreen
titleBGColorlightgreen
borderStyledashed
titleGreen

When the action has been executed successfully,  color the cell(s) in green.

...

Standard form (without keyword)Only the Action description will be colored.
AcceptOnly the cell containing the keyword Accept will be colored.
CheckThe cell containing the expected value will be colored. In case of a failure,  will show the expected and the returned values.
RejectOnly the cell containing the keyword Reject will be colored.
DisplayA 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 withbank

...

The fixture code to support this example in Java is the class BankFixture shown below.

2.2. Show me the code

Code Block
languagejava
titleCode for the Bank fixture
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
languagejava
titleCode for the Bank application code
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.

...

  1. It calls the method thatBalanceOfAccountIs() with the parameter 12345-67890 to get the value calculated by the system under test
  2. 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
languagejava
titleCode for the Bank fixture
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 ofopened accounts
numbertypeowner name
12345-67890checkingSpongebob Squarepants
54321-09876savingsPatrick 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.