about summary refs log tree commit diff homepage
path: root/unittests
diff options
context:
space:
mode:
authorDaniel Grumberg <dany.grumberg@gmail.com>2020-03-27 17:43:14 +0000
committerCristian Cadar <c.cadar@imperial.ac.uk>2020-04-07 20:29:26 +0100
commit18d8d063ae42f56bfc3995ec2593eaf9d59b8209 (patch)
tree4d606bb74d1ec7eee250b63a005bcfd7fd326517 /unittests
parenta71db108f52ca60a196b59cc653281ae6c370c2e (diff)
downloadklee-18d8d063ae42f56bfc3995ec2593eaf9d59b8209.tar.gz
Add unit test for Z3Solver::getConstraintLog
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Solver/CMakeLists.txt6
-rw-r--r--unittests/Solver/Z3SolverTest.cpp69
2 files changed, 75 insertions, 0 deletions
diff --git a/unittests/Solver/CMakeLists.txt b/unittests/Solver/CMakeLists.txt
index c82e51b5..c3dc63b6 100644
--- a/unittests/Solver/CMakeLists.txt
+++ b/unittests/Solver/CMakeLists.txt
@@ -1,3 +1,9 @@
 add_klee_unit_test(SolverTest
   SolverTest.cpp)
 target_link_libraries(SolverTest PRIVATE kleaverSolver)
+
+if (${ENABLE_Z3})
+  add_klee_unit_test(Z3SolverTest
+    Z3SolverTest.cpp)
+target_link_libraries(Z3SolverTest PRIVATE kleaverSolver)
+endif()
diff --git a/unittests/Solver/Z3SolverTest.cpp b/unittests/Solver/Z3SolverTest.cpp
new file mode 100644
index 00000000..a3aa52f6
--- /dev/null
+++ b/unittests/Solver/Z3SolverTest.cpp
@@ -0,0 +1,69 @@
+//===-- Z3SolverTest.cpp
+//----------------------------------------------------===//
+//
+//                     The KLEE Symbolic Virtual Machine
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include <algorithm>
+#include <iterator>
+#include <vector>
+
+#include "gtest/gtest.h"
+
+#include "klee/Expr/ArrayCache.h"
+#include "klee/Expr/Constraints.h"
+#include "klee/Expr/Expr.h"
+#include "klee/Solver/Solver.h"
+
+using namespace klee;
+
+namespace {
+ArrayCache AC;
+}
+class Z3SolverTest : public ::testing::Test {
+protected:
+  Z3SolverTest() : Z3Solver_(createCoreSolver(CoreSolverType::Z3_SOLVER)) {
+    Z3Solver_->setCoreSolverTimeout(time::Span("10s"));
+  }
+
+  virtual ~Z3SolverTest() { delete Z3Solver_; }
+
+  Solver *Z3Solver_;
+};
+
+TEST_F(Z3SolverTest, GetConstraintLog) {
+  ConstraintManager Constraints;
+  const std::vector<uint64_t> ConstantValues{1, 2, 3, 4};
+  std::vector<ref<ConstantExpr>> ConstantExpressions;
+
+  std::transform(
+      ConstantValues.begin(), ConstantValues.end(),
+      std::back_inserter(ConstantExpressions), [](const uint64_t Value) {
+        ref<ConstantExpr> ConstantExpr(ConstantExpr::alloc(Value, Expr::Int8));
+        return ConstantExpr;
+      });
+
+  const Array *ConstantArray =
+      AC.CreateArray("const_array", 4, ConstantExpressions.data(),
+                     ConstantExpressions.data() + ConstantExpressions.size());
+
+  const UpdateList ConstantArrayUL(ConstantArray, nullptr);
+  const ref<Expr> Index = ConstantExpr::alloc(1, Expr::Int32);
+  const ref<Expr> Lhs = ReadExpr::alloc(ConstantArrayUL, Index);
+  const ref<Expr> Rhs = ConstantExpr::alloc(2, Expr::Int8);
+  const ref<Expr> Eqn = EqExpr::alloc(Lhs, Rhs);
+
+  Query TheQuery(Constraints, Eqn);
+
+  // Ensure this is not buggy as fixed in https://github.com/klee/klee/pull/1235
+  // If the bug is still present this fail due to an internal assertion
+  char *ConstraintsString = Z3Solver_->getConstraintLog(TheQuery);
+  const char *ExpectedArraySelection = "(= (select const_array0";
+  const char *Occurence = std::strstr(ConstraintsString, ExpectedArraySelection);
+  ASSERT_STRNE(Occurence, nullptr);
+  free(ConstraintsString);
+}