aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/yassert_ut.cpp
blob: 106eda691ba511a78ae22a924af0459fa1c54e31 (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
#undef NDEBUG
// yassert.h must be included before all headers
#include "yassert.h"

#include <library/cpp/testing/unittest/registar.h>

Y_UNIT_TEST_SUITE(YassertTest) {
    Y_UNIT_TEST(TestAcsLikeFunctionCall) {
        if (true) {
            Y_ASSERT(true); // this cannot be compiled if Y_ASSERT is "if (!cond) { ... }"
        } else {
            Y_ASSERT(false);
        }

        bool var = false;
        if (false) {
            Y_ASSERT(false);
        } else {
            var = true; // this is unreachable if Y_ASSERT is "if (!cond) { ... }"
        }
        UNIT_ASSERT(var);
    }

    Y_UNIT_TEST(TestFailCompiles) {
        if (false) {
            Y_ABORT("%d is a lucky number", 7);
            Y_ABORT();
        }
    }

    Y_UNIT_TEST(TestVerify) {
        Y_ABORT_UNLESS(true, "hi %s", "there");
        Y_ABORT_UNLESS(true);
    }

    Y_UNIT_TEST(TestExceptionVerify) {
        UNIT_ASSERT_EXCEPTION(
            []() { Y_ABORT_UNLESS([]() {throw yexception{} << "check"; return false; }(), "hi %s", "there"); }(),
            yexception);
    }
} // Y_UNIT_TEST_SUITE(YassertTest)