blob: 597683616fdfdb4bcf58efc93cf1bd79f92c9952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
// IBM_PROLOG_BEGIN_TAG
// This is an automatically generated prolog.
//
// $Source: src/usr/devicefw/test/assoccontaintest.H $
//
// IBM CONFIDENTIAL
//
// COPYRIGHT International Business Machines Corp. 2011
//
// p1
//
// Object Code Only (OCO) source materials
// Licensed Internal Code Source Materials
// IBM HostBoot Licensed Internal Code
//
// The source code for this program is not published or other-
// wise divested of its trade secrets, irrespective of what has
// been deposited with the U.S. Copyright Office.
//
// Origin: 30
//
// IBM_PROLOG_END
#ifndef __TEST_ASSOCCONTAINTEST_H
#define __TEST_ASSOCCONTAINTEST_H
#include <cxxtest/TestSuite.H>
#include "../assoccontain.H"
using namespace DeviceFW;
class AssocContainTest: public CxxTest::TestSuite
{
public:
/**
* @test Ensure AssociationContainer can be constructed.
*/
void testConstruct()
{
AssociationContainer* ac = new AssociationContainer();
if (NULL == ac)
{
TS_FAIL("NULL pointer returned for 'new AssociationContainer'.");
}
delete ac;
}
/**
* @test Verify allocate operation.
*/
void testAllocate()
{
AssociationContainer ac;
// Allocation of a single block.
size_t root = ac.allocate(5);
// Index operation on block.
AssociationData* root_ptr = ac[root];
if (NULL == root_ptr)
{
TS_FAIL("NULL pointer returned for newly allocated block.");
}
// Freshly allocated block is empty.
for(int i = 0; i < 5; i++)
{
if (root_ptr[i].flag)
{
TS_FAIL("Wildcard flag set on newly allocated block.");
}
if (0 != root_ptr[i].offset)
{
TS_FAIL("Non-zero value set in newly allocated block.");
}
}
// Second allocated block is outside original.
size_t second_block = ac.allocate(2);
if (((second_block + 2) > root) &&
(second_block < (root + 5)))
{
TS_FAIL("Newly allocated block is inside previous block.");
}
}
/**
* @test Verify operator[].
*/
void testIndex()
{
AssociationContainer ac;
AssociationData root;
AssociationData second;
root.offset = ac.allocate(5);
second.offset = ac.allocate(2);
second.flag = true;
ac[second.offset][1].offset = 0x42;
AssociationData* root_ptr = ac[root.offset];
root_ptr[2] = second;
// Check initial level block index.
if ((ac[root.offset + 2]->flag != second.flag) ||
(ac[root.offset + 2]->offset != second.offset))
{
TS_FAIL("Index operator points to incorrect block.");
}
// Check second level indirection block index.
if (ac[ac[root.offset + 2]->offset + 1]->offset != 0x42)
{
TS_FAIL("Index operator points to incorrect block.");
}
}
};
#endif
|