summaryrefslogtreecommitdiff
path: root/test/unit/util/assert_white.cpp
blob: 0f1d5786ee9d24d014bcd3450b5b38d236c58c0a (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
/*********************                                                        */
/*! \file assert_white.cpp
 ** \verbatim
 ** Top contributors (to current version):
 **   Aina Niemetz
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
 ** in the top-level source directory and their institutional affiliations.
 ** All rights reserved.  See the file COPYING in the top-level source
 ** directory for licensing information.\endverbatim
 **
 ** \brief White box testing of CVC4::Configuration.
 **
 ** White box testing of CVC4::Configuration.
 **/

#include <cstring>
#include <string>

#include "base/check.h"
#include "test.h"

namespace CVC4 {
namespace test {

class TestUtilWhite : public TestInternal
{
};

TEST_F(TestUtilWhite, Assert)
{
#ifdef CVC4_ASSERTIONS
  ASSERT_DEATH(Assert(false), "false");
#else
  ASSERT_NO_THROW(Assert(false));
#endif
  ASSERT_DEATH(AlwaysAssert(false), "false");
  ASSERT_NO_FATAL_FAILURE(Assert(true));
  ASSERT_NO_FATAL_FAILURE(AlwaysAssert(true));
}

TEST_F(TestUtilWhite, AssertArgument)
{
#ifdef CVC4_ASSERTIONS
  ASSERT_THROW(AssertArgument(false, "x"), AssertArgumentException);
#else
  ASSERT_NO_THROW(AssertArgument(false, "x"));
#endif
  ASSERT_THROW(AlwaysAssertArgument(false, "x"), AssertArgumentException);
  ASSERT_NO_THROW(AssertArgument(true, "x"));
  ASSERT_NO_THROW(AssertArgument(true, "x"));
}

TEST_F(TestUtilWhite, Unreachable)
{
  ASSERT_DEATH(Unreachable(), "Unreachable code reached");
  ASSERT_DEATH(Unreachable() << "hello", "Unreachable code reachedhello");
  ASSERT_DEATH(Unreachable() << "hello "
                             << "world",
               "Unreachable code reachedhello world");
}

TEST_F(TestUtilWhite, Unhandled)
{
  ASSERT_DEATH(Unhandled(), "Unhandled case encountered");
  ASSERT_DEATH(Unhandled() << 5, "Unhandled case encountered5");
  ASSERT_DEATH(Unhandled() << "foo", "Unhandled case encounteredfoo");
  ASSERT_DEATH(Unhandled() << "foo "
                           << "bar"
                           << " baz",
               "Unhandled case encounteredfoo bar baz");
}

TEST_F(TestUtilWhite, Unimplemented)
{
  ASSERT_DEATH(Unimplemented(), "Unimplemented code encountered");
}

TEST_F(TestUtilWhite, IllegalArgument)
{
  ASSERT_THROW(IllegalArgument("x"), IllegalArgumentException);
}

TEST_F(TestUtilWhite, CheckArgument)
{
  ASSERT_THROW(CheckArgument(false, "x"), IllegalArgumentException);
}
}  // namespace test
}  // namespace CVC4
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback