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

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

#include "testing/testing.h"
#include <cstring>

#include "MEM_guardedalloc.h"

#include "BLI_compiler_attrs.h"
#include "BLI_heap_simple.h"
#include "BLI_rand.h"
#include "BLI_sys_types.h"
#include "BLI_utildefines.h"

#define SIZE 1024

static void range_fl(float *array_tar, const int size)
{
  float *array_pt = array_tar + (size - 1);
  int i = size;
  while (i--) {
    *(array_pt--) = (float)i;
  }
}

TEST(heap, SimpleEmpty)
{
  HeapSimple *heap;

  heap = BLI_heapsimple_new();
  EXPECT_TRUE(BLI_heapsimple_is_empty(heap));
  EXPECT_EQ(BLI_heapsimple_len(heap), 0);
  BLI_heapsimple_free(heap, nullptr);
}

TEST(heap, SimpleOne)
{
  HeapSimple *heap;
  const char *in = "test";

  heap = BLI_heapsimple_new();

  BLI_heapsimple_insert(heap, 0.0f, (void *)in);
  EXPECT_FALSE(BLI_heapsimple_is_empty(heap));
  EXPECT_EQ(BLI_heapsimple_len(heap), 1);
  EXPECT_EQ(in, BLI_heapsimple_pop_min(heap));
  EXPECT_TRUE(BLI_heapsimple_is_empty(heap));
  EXPECT_EQ(BLI_heapsimple_len(heap), 0);
  BLI_heapsimple_free(heap, nullptr);
}

TEST(heap, SimpleRange)
{
  const int items_total = SIZE;
  HeapSimple *heap = BLI_heapsimple_new();
  for (int in = 0; in < items_total; in++) {
    BLI_heapsimple_insert(heap, (float)in, POINTER_FROM_INT(in));
  }
  for (int out_test = 0; out_test < items_total; out_test++) {
    EXPECT_EQ(out_test, POINTER_AS_INT(BLI_heapsimple_pop_min(heap)));
  }
  EXPECT_TRUE(BLI_heapsimple_is_empty(heap));
  BLI_heapsimple_free(heap, nullptr);
}

TEST(heap, SimpleRangeReverse)
{
  const int items_total = SIZE;
  HeapSimple *heap = BLI_heapsimple_new();
  for (int in = 0; in < items_total; in++) {
    BLI_heapsimple_insert(heap, (float)-in, POINTER_FROM_INT(-in));
  }
  for (int out_test = items_total - 1; out_test >= 0; out_test--) {
    EXPECT_EQ(-out_test, POINTER_AS_INT(BLI_heapsimple_pop_min(heap)));
  }
  EXPECT_TRUE(BLI_heapsimple_is_empty(heap));
  BLI_heapsimple_free(heap, nullptr);
}

TEST(heap, SimpleDuplicates)
{
  const int items_total = SIZE;
  HeapSimple *heap = BLI_heapsimple_new();
  for (int in = 0; in < items_total; in++) {
    BLI_heapsimple_insert(heap, 1.0f, nullptr);
  }
  for (int out_test = 0; out_test < items_total; out_test++) {
    EXPECT_EQ(0, POINTER_AS_INT(BLI_heapsimple_pop_min(heap)));
  }
  EXPECT_TRUE(BLI_heapsimple_is_empty(heap));
  BLI_heapsimple_free(heap, nullptr);
}

static void random_heapsimple_helper(const int items_total, const int random_seed)
{
  HeapSimple *heap = BLI_heapsimple_new();
  float *values = (float *)MEM_mallocN(sizeof(float) * items_total, __func__);
  range_fl(values, items_total);
  BLI_array_randomize(values, sizeof(float), items_total, random_seed);
  for (int i = 0; i < items_total; i++) {
    BLI_heapsimple_insert(heap, values[i], POINTER_FROM_INT((int)values[i]));
  }
  for (int out_test = 0; out_test < items_total; out_test++) {
    EXPECT_EQ(out_test, POINTER_AS_INT(BLI_heapsimple_pop_min(heap)));
  }
  EXPECT_TRUE(BLI_heapsimple_is_empty(heap));
  BLI_heapsimple_free(heap, nullptr);
  MEM_freeN(values);
}

TEST(heap, SimpleRand1)
{
  random_heapsimple_helper(1, 1234);
}
TEST(heap, SimpleRand2)
{
  random_heapsimple_helper(2, 1234);
}
TEST(heap, SimpleRand100)
{
  random_heapsimple_helper(100, 4321);
}