Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
DequeTest.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
9#include "tests/Test.h"
10
11static void assert_count(skiatest::Reporter* reporter, const SkDeque& deq, int count) {
12 if (0 == count) {
14 REPORTER_ASSERT(reporter, 0 == deq.count());
15 REPORTER_ASSERT(reporter, sizeof(int) == deq.elemSize());
16 REPORTER_ASSERT(reporter, nullptr == deq.front());
17 REPORTER_ASSERT(reporter, nullptr == deq.back());
18 } else {
21 REPORTER_ASSERT(reporter, sizeof(int) == deq.elemSize());
24 if (1 == count) {
25 REPORTER_ASSERT(reporter, deq.back() == deq.front());
26 } else {
27 REPORTER_ASSERT(reporter, deq.back() != deq.front());
28 }
29 }
30}
31
33 int max, int min) {
34 // test forward iteration
36 void* ptr;
37
38 int value = max;
39 while ((ptr = iter.next())) {
40 REPORTER_ASSERT(reporter, value == *(int*)ptr);
41 value -= 1;
42 }
44
45 // test reverse iteration
47
48 value = min;
49 while ((ptr = iter.prev())) {
50 REPORTER_ASSERT(reporter, value == *(int*)ptr);
51 value += 1;
52 }
54
55 // test mixed iteration
57
58 value = max;
59 // forward iteration half-way
60 for (int i = 0; i < deq.count()/2 && (ptr = iter.next()); i++) {
61 REPORTER_ASSERT(reporter, value == *(int*)ptr);
62 value -= 1;
63 }
64 // then back down w/ reverse iteration
65 while ((ptr = iter.prev())) {
66 REPORTER_ASSERT(reporter, value == *(int*)ptr);
67 value += 1;
68 }
70}
71
72// This helper is intended to only give the unit test access to SkDeque's
73// private numBlocksAllocated method
75public:
77
79 fNumBlocksAllocated = deq.numBlocksAllocated();
80 }
81};
82
84 const SkDeque& deq,
85 int allocCount) {
86 DequeUnitTestHelper helper(deq);
87
88 if (0 == deq.count()) {
90 } else {
91 int expected = (deq.count() + allocCount - 1) / allocCount;
92 // A block isn't freed in the deque when it first becomes empty so
93 // sometimes an extra block lingers around
95 expected == helper.fNumBlocksAllocated ||
96 expected+1 == helper.fNumBlocksAllocated);
97 }
98}
99
100static void TestSub(skiatest::Reporter* reporter, int allocCount) {
101 SkDeque deq(sizeof(int), allocCount);
102 int i;
103
104 // test pushing on the front
105
106 assert_count(reporter, deq, 0);
107 for (i = 1; i <= 10; i++) {
108 *(int*)deq.push_front() = i;
109 }
110 assert_count(reporter, deq, 10);
111 assert_iter(reporter, deq, 10, 1);
112 assert_blocks(reporter, deq, allocCount);
113
114 for (i = 0; i < 5; i++) {
115 deq.pop_front();
116 }
117 assert_count(reporter, deq, 5);
118 assert_iter(reporter, deq, 5, 1);
119 assert_blocks(reporter, deq, allocCount);
120
121 for (i = 0; i < 5; i++) {
122 deq.pop_front();
123 }
124 assert_count(reporter, deq, 0);
125 assert_blocks(reporter, deq, allocCount);
126
127 // now test pushing on the back
128
129 for (i = 10; i >= 1; --i) {
130 *(int*)deq.push_back() = i;
131 }
132 assert_count(reporter, deq, 10);
133 assert_iter(reporter, deq, 10, 1);
134 assert_blocks(reporter, deq, allocCount);
135
136 for (i = 0; i < 5; i++) {
137 deq.pop_back();
138 }
139 assert_count(reporter, deq, 5);
140 assert_iter(reporter, deq, 10, 6);
141 assert_blocks(reporter, deq, allocCount);
142
143 for (i = 0; i < 5; i++) {
144 deq.pop_back();
145 }
146 assert_count(reporter, deq, 0);
147 assert_blocks(reporter, deq, allocCount);
148
149 // now test pushing/popping on both ends
150
151 *(int*)deq.push_front() = 5;
152 *(int*)deq.push_back() = 4;
153 *(int*)deq.push_front() = 6;
154 *(int*)deq.push_back() = 3;
155 *(int*)deq.push_front() = 7;
156 *(int*)deq.push_back() = 2;
157 *(int*)deq.push_front() = 8;
158 *(int*)deq.push_back() = 1;
159 assert_count(reporter, deq, 8);
160 assert_iter(reporter, deq, 8, 1);
161 assert_blocks(reporter, deq, allocCount);
162}
163
165 // test it once with the default allocation count
166 TestSub(reporter, 1);
167 // test it again with a generous allocation count
168 TestSub(reporter, 10);
169}
static void assert_count(skiatest::Reporter *reporter, const SkDeque &deq, int count)
Definition DequeTest.cpp:11
static void assert_iter(skiatest::Reporter *reporter, const SkDeque &deq, int max, int min)
Definition DequeTest.cpp:32
static void TestSub(skiatest::Reporter *reporter, int allocCount)
static void assert_blocks(skiatest::Reporter *reporter, const SkDeque &deq, int allocCount)
Definition DequeTest.cpp:83
reporter
int count
#define DEF_TEST(name, reporter)
Definition Test.h:312
#define REPORTER_ASSERT(r, cond,...)
Definition Test.h:286
DequeUnitTestHelper(const SkDeque &deq)
Definition DequeTest.cpp:78
void * next()
Definition SkDeque.cpp:251
void * prev()
Definition SkDeque.cpp:270
@ kBack_IterStart
Definition SkDeque.h:66
@ kFront_IterStart
Definition SkDeque.h:65
void reset(const SkDeque &d, IterStart startLoc)
Definition SkDeque.cpp:292
void * push_back()
Definition SkDeque.cpp:112
const void * front() const
Definition SkDeque.h:42
void pop_front()
Definition SkDeque.cpp:153
bool empty() const
Definition SkDeque.h:38
void pop_back()
Definition SkDeque.cpp:187
const void * back() const
Definition SkDeque.h:43
int count() const
Definition SkDeque.h:39
void * push_front()
Definition SkDeque.cpp:72
size_t elemSize() const
Definition SkDeque.h:40
uint8_t value
static float max(float r, float g, float b)
Definition hsl.cpp:49
static float min(float r, float g, float b)
Definition hsl.cpp:48