Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BLI_pool_test.cc « tests « blenlib « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31cb255d9979937bf36cbbbaa0771ee98f81b902 (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
/* SPDX-License-Identifier: Apache-2.0 */

#include "BLI_exception_safety_test_utils.hh"
#include "BLI_pool.hh"
#include "BLI_strict_flags.h"
#include "testing/testing.h"

namespace blender::tests {

TEST(pool, DefaultConstructor)
{
  Pool<int> pool;
  EXPECT_EQ(pool.size(), 0);
}

TEST(pool, Allocation)
{
  Vector<int *> ptrs;
  Pool<int> pool;
  for (int i = 0; i < 100; i++) {
    ptrs.append(&pool.construct(i));
  }
  EXPECT_EQ(pool.size(), 100);

  for (int *ptr : ptrs) {
    pool.destruct(*ptr);
  }
  EXPECT_EQ(pool.size(), 0);
}

TEST(pool, Reuse)
{
  Vector<int *> ptrs;
  Pool<int> pool;
  for (int i = 0; i < 32; i++) {
    ptrs.append(&pool.construct(i));
  }

  int *freed_ptr = ptrs[6];
  pool.destruct(*freed_ptr);

  ptrs[6] = &pool.construct(0);

  EXPECT_EQ(ptrs[6], freed_ptr);

  for (int *ptr : ptrs) {
    pool.destruct(*ptr);
  }
}

}  // namespace blender::tests