aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/TArrayTest.cpp
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2017-06-16 06:47:30 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-06-16 12:17:19 +0000
commit610842af9eec6b49258311b96485447476305faa (patch)
tree5af0f3ccc4d994d6e836aff414e2e8afb482186f /tests/TArrayTest.cpp
parent881f143aec15e35e76bab64ab0c93de610b7f3fd (diff)
Make SkTArray maintain reserve count
Bug: skia:6690 Change-Id: I01f5bb56c654f513365d6ce9f19712d9be07a08d Reviewed-on: https://skia-review.googlesource.com/20055 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Yuqian Li <liyuqian@google.com>
Diffstat (limited to 'tests/TArrayTest.cpp')
-rw-r--r--tests/TArrayTest.cpp52
1 files changed, 52 insertions, 0 deletions
diff --git a/tests/TArrayTest.cpp b/tests/TArrayTest.cpp
index 0e18e9f96d..1b376e4d4b 100644
--- a/tests/TArrayTest.cpp
+++ b/tests/TArrayTest.cpp
@@ -5,6 +5,7 @@
* found in the LICENSE file.
*/
+#include "SkRandom.h"
#include "SkRefCnt.h"
#include "SkTArray.h"
#include "Test.h"
@@ -294,6 +295,52 @@ static void test_self_assignment(skiatest::Reporter* reporter) {
REPORTER_ASSERT(reporter, a[0] == 1);
}
+template <typename Array> static void test_array_reserve(skiatest::Reporter* reporter,
+ Array* array, int reserveCount) {
+ SkRandom random;
+ REPORTER_ASSERT(reporter, array->allocCntForTest() >= reserveCount);
+ array->push_back();
+ REPORTER_ASSERT(reporter, array->allocCntForTest() >= reserveCount);
+ array->pop_back();
+ REPORTER_ASSERT(reporter, array->allocCntForTest() >= reserveCount);
+ while (array->count() < reserveCount) {
+ // Two steps forward, one step back
+ if (random.nextULessThan(3) < 2) {
+ array->push_back();
+ } else if (array->count() > 0) {
+ array->pop_back();
+ }
+ REPORTER_ASSERT(reporter, array->allocCntForTest() >= reserveCount);
+ }
+}
+
+template<typename Array> static void test_reserve(skiatest::Reporter* reporter) {
+ // Test that our allocated space stays >= to the reserve count until the array is filled to
+ // the reserve count
+ for (int reserveCount : {1, 2, 10, 100}) {
+ // Test setting reserve in constructor.
+ Array array1(reserveCount);
+ test_array_reserve(reporter, &array1, reserveCount);
+
+ // Test setting reserve after constructor.
+ Array array2;
+ array2.reserve(reserveCount);
+ test_array_reserve(reporter, &array2, reserveCount);
+
+ // Test increasing reserve after constructor.
+ Array array3(reserveCount/2);
+ array3.reserve(reserveCount);
+ test_array_reserve(reporter, &array3, reserveCount);
+
+ // Test setting reserve on non-empty array.
+ Array array4;
+ array4.push_back_n(reserveCount);
+ array4.reserve(reserveCount);
+ array4.pop_back_n(reserveCount);
+ test_array_reserve(reporter, &array4, 2 * reserveCount);
+ }
+}
+
DEF_TEST(TArray, reporter) {
TestTSet_basic<true>(reporter);
TestTSet_basic<false>(reporter);
@@ -311,4 +358,9 @@ DEF_TEST(TArray, reporter) {
test_unnecessary_alloc(reporter);
test_self_assignment(reporter);
+
+ test_reserve<SkTArray<int>>(reporter);
+ test_reserve<SkSTArray<1, int>>(reporter);
+ test_reserve<SkSTArray<2, int>>(reporter);
+ test_reserve<SkSTArray<16, int>>(reporter);
}