Testing Event Sequences
SEQUENCE COVERING ARRAY LIBRARY
Many testing problems involve sequences of operations. For example, an embedded system may accept multiple sensor inputs and generate output to several communication links and effectors such as machine controls. It is important to test combinations of connected components, but also to test the order in which they could be connected. There is an empirical basis for the use of sequence covering arrays. In reviews of various failure reports, when sequences of events were involved, the critical condition for triggering failures generally was whether or not a particular event had occurred prior to a second one, not necessarily if they were back to back. In other words, the report might say something like 'failure occurred when <event A> if B is already connected'. So it appeared that A didn't have to immediately follow B, but the fact that it followed B at some point after B had already occurred was sufficient to trigger a failure. Sequence covering arrays, as we have defined them, ensure that any t events will be tested in every possible order.
For example, we may have a factory automation system that uses certain devices interacting with a control program. For this problem we can define a sequence covering array, which is a set of tests that ensure all t-sequences of events have been tested. The t events in the sequence may be interleaved with others, but all t-way permutations will be tested. We want to test the following events:
Event
|
Description
|
a
|
connect air flow meter
|
b
|
connect pressure guage
|
c
|
connect satellite link
|
d
|
connect pressure readout
|
e
|
engage drive motor
|
f
|
engage steering control
|
There are 6! = 720 possible sequences for these six events, and the system should respond correctly and safely no matter the order in which they occur. Operators may be instructed to use a particular order, but mistakes are inevitable, and should not result in injury to users or compromise the mission. We want to test this system as thoroughly as possible, but time and budget constraints do not allow for testing all possible sequences, so we will test all 3-event sequences. With six events, a, b, c, d, e, and f, one subset of three is {b, d, e}, which can be arranged in six permutations: <b d e>, <b e d>, <d b e>, <d e b>, <e b d>, <e d b>. A test that covers the permutation <d b e> is: <a d c f b e>; another is <a d c b e f>. With only 10 tests, we can test all 3-event sequences:
Test
|
Sequence
|
1
|
a
|
b
|
c
|
d
|
e
|
f
|
2
|
f
|
e
|
d
|
c
|
b
|
a
|
3
|
d
|
e
|
f
|
a
|
b
|
c
|
4
|
c
|
b
|
a
|
f
|
e
|
d
|
5
|
b
|
f
|
a
|
d
|
c
|
e
|
6
|
e
|
c
|
d
|
a
|
f
|
b
|
7
|
a
|
e
|
f
|
c
|
b
|
d
|
8
|
d
|
b
|
c
|
f
|
e
|
a
|
9
|
c
|
e
|
a
|
d
|
b
|
f
|
10
|
f
|
b
|
d
|
a
|
e
|
c
|
(Keep in mind that this example is small for convenience. A real system may have, for example, 10 devices to connect, in which case the number of permutations is 10!, or 3,628,800 tests for exhaustive testing. In that case, a 3-sequence covering array with 14 tests would be a much more dramatic improvement.)
Definition. We define a sequence covering array, SCA(N, S, t) as an N x Smatrix where entries are from a finite set S of s symbols, such that every t-length permutation of symbols from S occurs in at least one row; the t symbols in the permutation are not required to be adjacent.
Example 1. Consider the problem of testing four events, a, b, c, and d. There are 4! = 24 possible permutations of these four events, but we can test all 3-sequences of these events with only six tests:
|
1
|
2
|
3
|
4
|
1
|
a
|
d
|
b
|
c
|
2
|
b
|
a
|
c
|
d
|
3
|
b
|
d
|
c
|
a
|
4
|
c
|
a
|
b
|
d
|
5
|
c
|
d
|
b
|
a
|
6
|
d
|
a
|
c
|
b
|
Example 2. Generating a 2-sequence covering array is trivial: list the events in some order for one test and in the reverse order for the second test.
|
1
|
2
|
3
|
4
|
1
|
a
|
b
|
c
|
d
|
2
|
d
|
c
|
b
|
a
|
As shown in example 2, only two tests are needed to cover all 2-way permutations of symbols. Other values of t > 2 will require more. The example below covers all 3-way permutations for five events in eight tests. Arrays for other event set sizes can be found in the library table following.
|
1
|
2
|
3
|
4
|
5
|
1
|
a
|
b
|
c
|
d
|
e
|
2
|
e
|
d
|
c
|
b
|
a
|
3
|
b
|
a
|
e
|
d
|
c
|
4
|
c
|
e
|
a
|
b
|
d
|
5
|
d
|
e
|
a
|
b
|
c
|
6
|
c
|
d
|
b
|
a
|
e
|
7
|
a
|
e
|
c
|
d
|
b
|
8
|
b
|
d
|
c
|
e
|
a
|
SEQUENCE COVERING ARRAY LIBRARY
The sequence covering arrays are provided in comma separated value form. Currently arrays are for 3-way interactions only. Longer permutations will be added in the future. For 2-way permutations, event sequences can simply be reversed, as shown in Example 2, so these arrays are not included in the library. Please note that these arrays were prepared with a quick and dirty greedy algorithm in Oct 09, and can probably be improved upon. We are working on this now. If you have an algorithm that generates smaller arrays, we would be happy to host them, citing your algorithm of course; feel free to email me at kuhn@nist.gov if interested.