blob: 982519fa1fd9ebece50dd52975c847c2119e559c [file] [log] [blame]
Ethan Nicholas1b9924f2016-12-15 15:28:42 -05001/*
2 * Copyright 2016 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
John Stilesfbd050b2020-08-03 13:21:46 -04008#include <memory>
9
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "src/core/SkLRUCache.h"
11#include "tests/Test.h"
Ethan Nicholas1b9924f2016-12-15 15:28:42 -050012
13struct Value {
14 Value(int value, int* counter)
15 : fValue(value)
16 , fCounter(counter) {
17 (*fCounter)++;
18 }
19
20 ~Value() {
21 (*fCounter)--;
22 }
23
24 int fValue;
25 int* fCounter;
26};
27
28DEF_TEST(LRUCacheSequential, r) {
29 int instances = 0;
30 {
31 static const int kSize = 100;
32 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
33 for (int i = 1; i < kSize * 2; i++) {
34 REPORTER_ASSERT(r, !test.find(i));
John Stilesfbd050b2020-08-03 13:21:46 -040035 test.insert(i, std::make_unique<Value>(i * i, &instances));
Ethan Nicholas1b9924f2016-12-15 15:28:42 -050036 REPORTER_ASSERT(r, test.find(i));
37 REPORTER_ASSERT(r, i * i == (*test.find(i))->fValue);
38 if (i > kSize) {
39 REPORTER_ASSERT(r, kSize == instances);
40 REPORTER_ASSERT(r, !test.find(i - kSize));
41 } else {
42 REPORTER_ASSERT(r, i == instances);
43 }
44 REPORTER_ASSERT(r, (int) test.count() == instances);
45 }
46 }
47 REPORTER_ASSERT(r, 0 == instances);
48}
49
50DEF_TEST(LRUCacheRandom, r) {
51 int instances = 0;
52 {
53 int seq[] = { 0, 1, 2, 3, 4, 1, 6, 2, 7, 5, 3, 2, 2, 3, 1, 7 };
54 int expected[] = { 7, 1, 3, 2, 5 };
55 static const int kSize = 5;
56 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
57 for (int i = 0; i < (int) (sizeof(seq) / sizeof(int)); i++) {
58 int k = seq[i];
59 if (!test.find(k)) {
John Stilesfbd050b2020-08-03 13:21:46 -040060 test.insert(k, std::make_unique<Value>(k, &instances));
Ethan Nicholas1b9924f2016-12-15 15:28:42 -050061 }
62 }
63 REPORTER_ASSERT(r, kSize == instances);
64 REPORTER_ASSERT(r, kSize == test.count());
65 for (int i = 0; i < kSize; i++) {
66 int k = expected[i];
67 REPORTER_ASSERT(r, test.find(k));
68 REPORTER_ASSERT(r, k == (*test.find(k))->fValue);
69 }
70 }
71 REPORTER_ASSERT(r, 0 == instances);
72}