]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Add a few tests.
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Fri, 8 Nov 2013 05:06:55 +0000 (05:06 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Fri, 8 Nov 2013 05:06:55 +0000 (05:06 +0000)
git-svn-id: https://svn.dealii.org/trunk@31583 0785d39b-7218-0410-832d-ea1e28bc413d

tests/bits/parameter_handler_1_include.cc [new file with mode: 0644]
tests/bits/parameter_handler_1_include.output [new file with mode: 0644]
tests/bits/parameter_handler_1_include.prm [new file with mode: 0644]
tests/bits/parameter_handler_1_include.prm2 [new file with mode: 0644]
tests/bits/parameter_handler_1_include_fail.cc [new file with mode: 0644]
tests/bits/parameter_handler_1_include_fail.output [new file with mode: 0644]
tests/bits/parameter_handler_1_include_fail.prm [new file with mode: 0644]

diff --git a/tests/bits/parameter_handler_1_include.cc b/tests/bits/parameter_handler_1_include.cc
new file mode 100644 (file)
index 0000000..cc32b3e
--- /dev/null
@@ -0,0 +1,52 @@
+// ---------------------------------------------------------------------
+// $Id$
+//
+// Copyright (C) 2002 - 2013 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+
+// check that we can do include statements
+
+#include "../tests.h"
+#include <deal.II/base/logstream.h>
+#include <deal.II/base/parameter_handler.h>
+#include <fstream>
+
+void check (const char *p)
+{
+  ParameterHandler prm;
+  prm.declare_entry ("test_1", "-1,0",
+                     Patterns::List(Patterns::Integer(-1,1),2,3));
+
+  std::ifstream in(p);
+  prm.read_input (in);
+
+  deallog << "test_1=" << prm.get ("test_1") << std::endl;
+}
+
+
+int main ()
+{
+  std::ofstream logfile("output");
+  deallog.attach(logfile);
+  deallog.depth_console(0);
+  deallog.threshold_double(1.e-10);
+
+  // go into the source dir to read files there. this
+  // is necessary so that we can include files there
+  chdir (SOURCE_DIR);
+  check ("parameter_handler_1_include.prm");
+
+  return 0;
+}
diff --git a/tests/bits/parameter_handler_1_include.output b/tests/bits/parameter_handler_1_include.output
new file mode 100644 (file)
index 0000000..46f81e3
--- /dev/null
@@ -0,0 +1,2 @@
+
+DEAL::test_1=1,0,1
diff --git a/tests/bits/parameter_handler_1_include.prm b/tests/bits/parameter_handler_1_include.prm
new file mode 100644 (file)
index 0000000..a2de6a5
--- /dev/null
@@ -0,0 +1,2 @@
+set test_1 = 1,1,1
+include parameter_handler_1_include.prm2
diff --git a/tests/bits/parameter_handler_1_include.prm2 b/tests/bits/parameter_handler_1_include.prm2
new file mode 100644 (file)
index 0000000..cbf86bd
--- /dev/null
@@ -0,0 +1,2 @@
+set test_1 = 1,0,1
+
diff --git a/tests/bits/parameter_handler_1_include_fail.cc b/tests/bits/parameter_handler_1_include_fail.cc
new file mode 100644 (file)
index 0000000..7d6a205
--- /dev/null
@@ -0,0 +1,54 @@
+// ---------------------------------------------------------------------
+// $Id$
+//
+// Copyright (C) 2002 - 2013 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+
+// check that we can do include statements. the current test verifies what
+// happens if such an include statement fails
+
+#include "../tests.h"
+#include <deal.II/base/logstream.h>
+#include <deal.II/base/parameter_handler.h>
+#include <fstream>
+
+void check (const char *p)
+{
+  ParameterHandler prm;
+  prm.declare_entry ("test_1", "-1,0",
+                     Patterns::List(Patterns::Integer(-1,1),2,3));
+
+  std::ifstream in(p);
+  bool status = prm.read_input (in);
+  Assert (status == false, ExcInternalError());
+  
+  deallog << "test_1=" << prm.get ("test_1") << std::endl;
+}
+
+
+int main ()
+{
+  std::ofstream logfile("output");
+  deallog.attach(logfile);
+  deallog.depth_console(0);
+  deallog.threshold_double(1.e-10);
+
+  // go into the source dir to read files there. this
+  // is necessary so that we can include files there
+  chdir (SOURCE_DIR);
+  check ("parameter_handler_1_include_fail.prm");
+
+  return 0;
+}
diff --git a/tests/bits/parameter_handler_1_include_fail.output b/tests/bits/parameter_handler_1_include_fail.output
new file mode 100644 (file)
index 0000000..433921b
--- /dev/null
@@ -0,0 +1,2 @@
+
+DEAL::test_1=1,1,1
diff --git a/tests/bits/parameter_handler_1_include_fail.prm b/tests/bits/parameter_handler_1_include_fail.prm
new file mode 100644 (file)
index 0000000..e3ee532
--- /dev/null
@@ -0,0 +1,4 @@
+set test_1 = 1,1,1
+
+# the following file does not exist
+include parameter_handler_1_include_fail.prm2

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.