LCOV - code coverage report
Current view: top level - buildbot/coverage/build/test/unit/node - node_manager_white.cpp (source / functions) Hit Total Coverage
Test: coverage.info Lines: 30 30 100.0 %
Date: 2024-09-23 10:48:02 Functions: 6 6 100.0 %
Branches: 23 46 50.0 %

           Branch data     Line data    Source code
       1                 :            : /******************************************************************************
       2                 :            :  * Top contributors (to current version):
       3                 :            :  *   Aina Niemetz, Andres Noetzli, Andrew Reynolds
       4                 :            :  *
       5                 :            :  * This file is part of the cvc5 project.
       6                 :            :  *
       7                 :            :  * Copyright (c) 2009-2024 by the authors listed in the file AUTHORS
       8                 :            :  * in the top-level source directory and their institutional affiliations.
       9                 :            :  * All rights reserved.  See the file COPYING in the top-level source
      10                 :            :  * directory for licensing information.
      11                 :            :  * ****************************************************************************
      12                 :            :  *
      13                 :            :  * White box testing of cvc5::NodeManager.
      14                 :            :  */
      15                 :            : 
      16                 :            : #include <string>
      17                 :            : 
      18                 :            : #include "expr/node_manager.h"
      19                 :            : #include "test_node.h"
      20                 :            : #include "util/integer.h"
      21                 :            : #include "util/rational.h"
      22                 :            : 
      23                 :            : namespace cvc5::internal {
      24                 :            : 
      25                 :            : using namespace cvc5::internal::expr;
      26                 :            : 
      27                 :            : namespace test {
      28                 :            : 
      29                 :            : class TestNodeWhiteNodeManager : public TestNode
      30                 :            : {
      31                 :            : };
      32                 :            : 
      33                 :          2 : TEST_F(TestNodeWhiteNodeManager, mkConst_rational)
      34                 :            : {
      35                 :          1 :   Rational i("3");
      36                 :          1 :   Node n = d_nodeManager->mkConstInt(i);
      37                 :          1 :   Node m = d_nodeManager->mkConstInt(i);
      38         [ -  + ]:          1 :   ASSERT_EQ(n.getId(), m.getId());
      39                 :            : }
      40                 :            : 
      41                 :          2 : TEST_F(TestNodeWhiteNodeManager, oversized_node_builder)
      42                 :            : {
      43                 :          1 :   NodeBuilder nb;
      44                 :            : 
      45 [ +  - ][ +  - ]:          1 :   ASSERT_NO_THROW(nb.realloc(15));
      46 [ +  - ][ +  - ]:          1 :   ASSERT_NO_THROW(nb.realloc(25));
      47 [ +  - ][ +  - ]:          1 :   ASSERT_NO_THROW(nb.realloc(256));
      48                 :            : #ifdef CVC5_ASSERTIONS
      49                 :          1 :   ASSERT_DEATH(nb.realloc(100), "toSize > d_nvMaxChildren");
      50                 :            : #endif /* CVC5_ASSERTIONS */
      51 [ +  - ][ +  - ]:          1 :   ASSERT_NO_THROW(nb.realloc(257));
      52 [ +  - ][ +  - ]:          1 :   ASSERT_NO_THROW(nb.realloc(4000));
      53 [ +  - ][ +  - ]:          1 :   ASSERT_NO_THROW(nb.realloc(20000));
      54 [ +  - ][ +  - ]:          1 :   ASSERT_NO_THROW(nb.realloc(60000));
      55 [ +  - ][ +  - ]:          1 :   ASSERT_NO_THROW(nb.realloc(65535));
      56 [ +  - ][ +  - ]:          1 :   ASSERT_NO_THROW(nb.realloc(65536));
      57 [ +  - ][ +  - ]:          1 :   ASSERT_NO_THROW(nb.realloc(67108863));
      58                 :            : #ifdef CVC5_ASSERTIONS
      59                 :          1 :   ASSERT_DEATH(nb.realloc(67108863), "toSize > d_nvMaxChildren");
      60                 :            : #endif /* CVC5_ASSERTIONS */
      61                 :            : }
      62                 :            : 
      63                 :          2 : TEST_F(TestNodeWhiteNodeManager, topological_sort)
      64                 :            : {
      65                 :          1 :   TypeNode boolType = d_nodeManager->booleanType();
      66                 :          2 :   Node i = d_skolemManager->mkDummySkolem("i", boolType);
      67                 :          2 :   Node j = d_skolemManager->mkDummySkolem("j", boolType);
      68                 :          2 :   Node n1 = d_nodeManager->mkNode(Kind::AND, j, j);
      69                 :          2 :   Node n2 = d_nodeManager->mkNode(Kind::AND, i, n1);
      70                 :            : 
      71                 :            :   {
      72                 :          1 :     std::vector<NodeValue*> roots = {n1.d_nv};
      73         [ -  + ]:          2 :     ASSERT_EQ(NodeManager::TopologicalSort(roots), roots);
      74                 :            :   }
      75                 :            : 
      76                 :            :   {
      77                 :          1 :     std::vector<NodeValue*> roots = {n2.d_nv, n1.d_nv};
      78                 :          1 :     std::vector<NodeValue*> result = {n1.d_nv, n2.d_nv};
      79         [ -  + ]:          2 :     ASSERT_EQ(NodeManager::TopologicalSort(roots), result);
      80                 :            :   }
      81                 :            : }
      82                 :            : }  // namespace test
      83                 :            : }  // namespace cvc5::internal

Generated by: LCOV version 1.14