Support previous boost version on TC 20/128720/2
authorsangwan.kwon <sangwan.kwon@samsung.com>
Thu, 11 May 2017 06:51:30 +0000 (15:51 +0900)
committersangwan.kwon <sangwan.kwon@samsung.com>
Mon, 15 May 2017 04:08:52 +0000 (13:08 +0900)
* This could be revert when boost-version is completely upgraded.

Change-Id: I641d2db94b9e4aa9e712ba3a9ea501059990f883
Signed-off-by: sangwan.kwon <sangwan.kwon@samsung.com>
CMakeLists.txt
packaging/libcryptsvc.spec
test/colour_log_formatter.cc
test/colour_log_formatter.h

index e409988..9805779 100644 (file)
@@ -5,10 +5,7 @@ INCLUDE(FindPkgConfig)
 
 STRING(REGEX MATCH "([^.]*)" SO_VERSION "${VERSION}")
 
-# _GLIBCXX_USE_CXX11_ABI is temporary off
-# When boost and package compiled with same gcc version,
-# it can be deleted.
-SET(EXTRA_CXXFLAGS "${EXTRA_CXXFLAGS} -std=c++0x -D_GLIBCXX_USE_CXX11_ABI=0")
+SET(EXTRA_CXXFLAGS "${EXTRA_CXXFLAGS} -std=c++0x")
 
 SET(CMAKE_C_FLAGS_PROFILING   "-g -O0 -pg -Wp,-U_FORITY_SOURCE")
 SET(CMAKE_CXX_FLAGS_PROFILING "-g -O0 -pg -Wp,-U_FORITY_SOURCE ${EXTRA_CXXFLAGS}")
index c467259..a7d11b7 100644 (file)
@@ -26,7 +26,7 @@ Crypto Service Library (Development).
 %package test
 Summary:    Testing for Crypto Service
 Group:      Security/Testing
-BuildRequires: boost-devel >= 1.62.0
+BuildRequires: boost-devel
 Requires:   boost-test
 Requires:   %{name} = %{version}-%{release}
 
index c7854d2..71a66b4 100644 (file)
 #include <iostream>
 #include <string>
 
+#include <boost/test/impl/execution_monitor.ipp>
+#if BOOST_VERSION >= 105900
 #include <boost/test/tree/test_unit.hpp>
-
+#else
+#include <boost/test/unit_test_suite_impl.hpp>
+#endif
 #include <boost/test/framework.hpp>
-#include <boost/test/execution_monitor.hpp>
-#include <boost/test/unit_test_parameters.hpp>
-
 #include <boost/test/utils/basic_cstring/io.hpp>
 #include <boost/test/utils/lazy_ostream.hpp>
 #include <boost/version.hpp>
 
-#include <boost/test/utils/setcolor.hpp>
-
 using namespace boost::unit_test;
 
 namespace cryptsvc {
@@ -42,11 +41,29 @@ const char* COLOR_BOLD_YELLOW = "\033[1;33m";
 const char* COLOR_END = "\033[m";
 
 const_string
+test_unit_type_name(const test_unit &tu)
+{
+#if BOOST_VERSION >= 105900
+    return const_string(tu.p_type_name);
+#else
+    return tu.p_type_name.get();
+#endif
+}
+
+const_string
+test_unit_name(const test_unit &tu)
+{
+#if BOOST_VERSION >= 105900
+    return const_string(tu.p_name);
+#else
+    return tu.p_name.get();
+#endif
+}
+
+const_string
 test_phase_identifier()
 {
-    return framework::test_in_progress()
-            ? const_string( framework::current_test_case().p_name.get() )
-            : BOOST_TEST_L( "Test setup" );
+    return test_unit_name(framework::current_test_case());
 }
 
 const_string
@@ -54,6 +71,12 @@ get_basename(const const_string &file_name) {
     return basename(file_name.begin());
 }
 
+bool
+test_unit_type_name_contains(const test_unit &tu, const std::string &substr)
+{
+    return test_unit_type_name(tu).find(const_string(substr)) == 0;
+}
+
 } // local namespace
 
 //____________________________________________________________________________//
@@ -96,11 +119,13 @@ colour_log_formatter::test_unit_start(
         std::ostream& output,
         test_unit const& tu )
 {
-    if (tu.p_type_name.find(const_string("suite")) == 0) {
-        output << "Starting test " << tu.p_type_name << " \"" << tu.p_name << "\"" << std::endl;
+    if (test_unit_type_name_contains(tu, "suite")) {
+        output << "Starting test ";
     } else {
-        output << "Running test " << tu.p_type_name << " \"" << tu.p_name << "\"" << std::endl;
+        output << "Running test ";
     }
+    output << test_unit_type_name(tu) << " \"" << test_unit_name(tu) << "\"" <<
+               std::endl;
 }
 
 //____________________________________________________________________________//
@@ -111,10 +136,12 @@ colour_log_formatter::test_unit_finish(
         test_unit const& tu,
         unsigned long elapsed )
 {
-    if (tu.p_type_name.find(const_string("suite")) == 0) {
-        output << "Finished test " << tu.p_type_name << " \"" << tu.p_name << "\""<< std::endl;
+    if (test_unit_type_name_contains(tu, "suite")) {
+        output << "Finished test " << test_unit_type_name(tu) << " \"" << test_unit_name(tu) << "\"" <<
+               std::endl;
         return;
     }
+
     std::string color = COLOR_GREEN;
     std::string status = "OK";
     if (m_isTestCaseFailed) {
@@ -145,12 +172,42 @@ colour_log_formatter::test_unit_skipped(
         std::ostream& output,
         test_unit const& tu )
 {
-    output  << "Test " << tu.p_type_name << " \"" << tu.p_name << "\"" << "is skipped" << std::endl;
+    output << "Test " << test_unit_type_name(tu) << " \"" << test_unit_name(tu)
+           << "\"" << "is skipped" << std::endl;
 }
 
 //____________________________________________________________________________//
 
 void
+colour_log_formatter::log_exception(
+    std::ostream &output,
+    log_checkpoint_data const &checkpoint_data,
+    boost::execution_exception const &ex)
+{
+    boost::execution_exception::location const &loc = ex.where();
+    output << '\t' << COLOR_BOLD_YELLOW << get_basename(loc.m_file_name)
+           << '(' << loc.m_line_num << "), ";
+
+    output << "fatal error in \""
+           << (loc.m_function.is_empty() ? test_phase_identifier() : loc.m_function) <<
+           "\": ";
+
+    output << COLOR_END << ex.what();
+
+    if (!checkpoint_data.m_file_name.is_empty()) {
+        output << '\n';
+        output << "\tlast checkpoint : " << get_basename(checkpoint_data.m_file_name)
+               << '(' << checkpoint_data.m_line_num << ")";
+
+        if (!checkpoint_data.m_message.empty())
+            output << ": " << checkpoint_data.m_message;
+    }
+
+    output << std::endl;
+    m_isTestCaseFailed = true;
+}
+
+void
 colour_log_formatter::log_exception_start(
         std::ostream& output,
         boost::unit_test::log_checkpoint_data const& checkpoint_data,
index 224898d..734012a 100644 (file)
@@ -37,6 +37,9 @@ public:
                std::ostream &,
                boost::unit_test::test_unit const &tu);
 
+       void    log_exception(std::ostream &,
+                                                 boost::unit_test::log_checkpoint_data const &,
+                                                 boost::execution_exception const &ex);
        void    log_exception_start(
                std::ostream &,
                boost::unit_test::log_checkpoint_data const &,