summaryrefslogtreecommitdiff
path: root/test/unit/util/integer_white.cpp
blob: 16e606d87ce268e2886d05aa1374440eca7a9001 (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
/*********************                                                        */
/*! \file integer_white.cpp
 ** \verbatim
 ** Top contributors (to current version):
 **   Aina Niemetz, Tim King
 ** 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::Integer.
 **
 ** White box testing of CVC4::Integer.
 **/

#include <sstream>

#include "test.h"
#include "util/integer.h"

namespace CVC4 {
namespace test {

class TestUtilWhiteInteger : public TestInternal
{
 protected:
  static const char* s_large_val;
};

const char* TestUtilWhiteInteger::s_large_val =
    "4547897890548754897897897897890789078907890";

TEST_F(TestUtilWhiteInteger, hash)
{
  Integer large(s_large_val);
  Integer zero;
  Integer fits_in_2_bytes(55890);
  Integer fits_in_16_bytes("7890D789D33234027890D789D3323402", 16);

  ASSERT_NO_THROW(zero.hash());
  ASSERT_NO_THROW(fits_in_2_bytes.hash());
  ASSERT_NO_THROW(fits_in_16_bytes.hash());
  ASSERT_NO_THROW(large.hash());
}

/** Make sure we can handle: http://www.ginac.de/CLN/cln_3.html#SEC15 */
TEST_F(TestUtilWhiteInteger, construction)
{
  const int32_t i = (1 << 29) + 1;
  const uint32_t u = (1 << 29) + 1;
  ASSERT_EQ(Integer(i), Integer(i));
  ASSERT_EQ(Integer(u), Integer(u));
}
}  // namespace test
}  // namespace CVC4
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback