summaryrefslogtreecommitdiff
path: root/subversion/bindings/cxx/tests/test_init.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/bindings/cxx/tests/test_init.cpp')
-rw-r--r--subversion/bindings/cxx/tests/test_init.cpp64
1 files changed, 64 insertions, 0 deletions
diff --git a/subversion/bindings/cxx/tests/test_init.cpp b/subversion/bindings/cxx/tests/test_init.cpp
new file mode 100644
index 0000000..7db7609
--- /dev/null
+++ b/subversion/bindings/cxx/tests/test_init.cpp
@@ -0,0 +1,64 @@
+/*
+ * ====================================================================
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ * ====================================================================
+ */
+#include <boost/test/unit_test.hpp>
+
+#include "../src/private/init_private.hpp"
+
+namespace svn = ::apache::subversion::svnxx;
+namespace detail = ::apache::subversion::svnxx::detail;
+
+BOOST_AUTO_TEST_SUITE(init);
+
+BOOST_AUTO_TEST_CASE(state_with_init)
+{
+ svn::init svnxx_initialized;
+ BOOST_TEST(detail::global_state::get());
+}
+
+BOOST_AUTO_TEST_CASE(state_without_init)
+{
+ BOOST_CHECK_THROW(detail::global_state::get(), std::logic_error);
+}
+
+BOOST_AUTO_TEST_CASE(init_scope)
+{
+ {
+ svn::init svnxx_initialized;
+ BOOST_TEST(detail::global_state::get());
+ }
+ BOOST_CHECK_THROW(detail::global_state::get(), std::logic_error);
+}
+
+BOOST_AUTO_TEST_CASE(multi_init_same_state)
+{
+ svn::init svnxx_initialized_first;
+ const auto state = detail::global_state::get();
+ BOOST_REQUIRE(state);
+
+ {
+ svn::init svnxx_initialized_second;
+ BOOST_TEST(state == detail::global_state::get());
+ }
+
+ BOOST_TEST(state == detail::global_state::get());
+}
+
+BOOST_AUTO_TEST_SUITE_END();