aboutsummaryrefslogtreecommitdiff
path: root/test/option.cc
blob: 09c0fdf8f6fb67da5af49843264a8f3bef0357ec (plain) (blame)
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
#include <option.h>
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <utility>

struct checker {
  static unsigned cnt;

  checker() {
    ++cnt;
  }
  checker(const checker&) {
    ++cnt;
  }
  checker(checker&&) noexcept {
    ++cnt;
  }
  ~checker() {
    --cnt;
  }
};

unsigned checker::cnt = 0;

int main() {
  using option::option;

  auto check_cnt = [](unsigned expect) {
    if (expect != checker::cnt) {
      std::printf("Checker: expect=%u cnt=%u\n", expect, checker::cnt);
      std::abort();
    }
  };

  {
    const option<int> kO1{};
    const option<int> kO2{::option::none{}};

    assert(!kO1.has_value());
    assert(!kO2.has_value());
  }

  // Assume we start test with cnt=0.
  check_cnt(0);

  {
    option<checker> o1(checker{});
    // copy construct
    option<checker> o2 = o1;
    // move construct
    option<checker> o3 = o1.take();

    assert(!o1.has_value());
    assert(o2.has_value());
    assert(o3.has_value());

    // move option
    option<checker> o4 = std::move(o2);

    assert(!o2.has_value());
    assert(o4.has_value());

    // take reference to inner
    auto x = o3.value();
    // take ownership of inner
    auto y = o4.take();

    assert(!o1.has_value());
    assert(!o2.has_value());
    assert(o3.has_value());
    assert(!o4.has_value());
  }

  // Expect to finish test with cnt=0.
  check_cnt(0);

  {
    option<checker> o1;
    assert(!o1.has_value());

    o1.emplace();
    assert(o1.has_value());
  }

  // Expect to finish test with cnt=0.
  check_cnt(0);

  return 0;
}