vote up 0 vote down star

Sometimes you just have a list of operations that need to be performed in a set order, like when implementing a sequence diagram. What are the best ways to enforce code execution order, to prevent refactoring introducing subtle bugs through a change of sequence?

Let's assume that existing unit tests would not catch any problems caused by changing the order of the execution of foo() and bar() in the following.

A few of the methods I've seen and used:

  1. Comments (relies on people reading & understanding them):

    // do this
    foo();
    // then this
    bar();

  2. Fluent grammar (to make the code read more like English and discourage wanton refactoring):

    obj
    .Do
    .foo()
    .Then
    .bar();

  3. State variables & balking (too elaborate):

    foo_done=false;
    if(foo()) foo_done=true;
    if(foo_done) bar(); else throw_an_exception;

  4. Grouping logical blocks into functions:

    void foo_bar()
    {
    foo();
    bar();
    }

...and many more too ugly to describe (nesting, events, arrays of function pointers, naming functions Begin(), Middle() and End()...).

Are there any better-engineered patterns for doing this sort of thing?

flag
1  
I think a more specific example might elicit better answers. How rigid is the order in which things need to get done? If you always need to call some methods in an exact sequence, and not doing so is an error what is wrong with a void doEverything() that calls all of them, in the correct order. If you do need to call operations in ad hoc orders, what constraints are there? Why do they need to be called in a specific order? do they operate on some common state? do they have side effects you are not unit testing? – Peter Jul 8 at 14:59

2 Answers

vote up 1 vote down

I'm confused as to why the order is significant if unit tests wouldn't catch them, and the dependencies aren't explicit in the code; it implies that side effects are a crucial part of the operation of foo() and bar(). In the which case, the best design strategy would be to make these side-effects explicit!

link|flag
So how DO you make the dependencies explicit? Is the only way we have of ensuring order the passing of a test external to the code body, or are there ways to make the sequence explicit? – lotsoffreetime Jul 9 at 21:46
Eh? I mean in the most literal sense possible: File handle = function_a(filename); number of records = function_b(file handle); data structure = function_c(file handle, number of records); No-one is going to change the order of those... – Dave Gamble Jul 9 at 23:53
Not all sequences are quite as obvious. What about get_price(); apply_discount(10%); add_tax(); If the discount is applied after the tax is added, there would be problems and only your unit test (and understanding of the business logic) is going to save you. Maybe "sequencing business logic" is the phrasing I'm after. – lotsoffreetime Jul 10 at 10:59
In that case the unit test will save you. The question concerned when unit tests won't save you and sequence must be enforced. – Dave Gamble Jul 10 at 13:02
vote up 0 vote down

You write unit tests to check what happened (state, attributes change) after you call a procedure, so I don't think you need to check if some method was called or not.

Also, if you tie your test to some method, later on, if you change your system to use another method with the same effects of foo(), your test will fail even when your system is doing the right things.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.