summaryrefslogtreecommitdiff
path: root/src/components/rpc_base
diff options
context:
space:
mode:
authoriAndrew5 <abyzhynar@luxoft.com>2015-10-20 18:18:38 +0300
committeriAndrew5 <abyzhynar@luxoft.com>2015-10-20 18:18:38 +0300
commit790208669af77d4da040922283c2644dfab4f457 (patch)
treec671d2100f4c4d3358da76e79df5b2780dd7c5cd /src/components/rpc_base
parent13fd07953c463a8d035df130bf1713ee6508d7d8 (diff)
downloadsdl_core-790208669af77d4da040922283c2644dfab4f457.tar.gz
Moved, Enabled and partially refactored Unit tests
Diffstat (limited to 'src/components/rpc_base')
-rw-r--r--src/components/rpc_base/test/CMakeLists.txt21
-rw-r--r--src/components/rpc_base/test/rpc_base_json_test.cc4
-rw-r--r--src/components/rpc_base/test/validation_report_test.cc156
3 files changed, 167 insertions, 14 deletions
diff --git a/src/components/rpc_base/test/CMakeLists.txt b/src/components/rpc_base/test/CMakeLists.txt
index ea86f29cab..76cf738f46 100644
--- a/src/components/rpc_base/test/CMakeLists.txt
+++ b/src/components/rpc_base/test/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2014, Ford Motor Company
+# Copyright (c) 2015, Ford Motor Company
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -28,14 +28,14 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
-if(BUILD_TESTS)
-include_directories (
- ${COMPONENTS_DIR}/dbus/include
- ${COMPONENTS_DIR}/dbus/src
- ${COMPONENTS_DIR}/rpc_base/include
- ${CMAKE_SOURCE_DIR}/src/3rd_party/dbus-1.7.8
- ${GMOCK_INCLUDE_DIRECTORY}
- ${JSONCPP_INCLUDE_DIRECTORY}
+if (BUILD_TESTS)
+ include_directories (
+ ${COMPONENTS_DIR}/dbus/include
+ ${COMPONENTS_DIR}/dbus/src
+ ${COMPONENTS_DIR}/rpc_base/include
+ ${CMAKE_SOURCE_DIR}/src/3rd_party/dbus-1.7.8
+ ${GMOCK_INCLUDE_DIRECTORY}
+ ${JSONCPP_INCLUDE_DIRECTORY}
)
set(LIBRARIES
@@ -44,8 +44,9 @@ set(LIBRARIES
)
set(SOURCES
- #rpc_base_json_test.cc
+ rpc_base_json_test.cc
rpc_base_test.cc
+ validation_report_test.cc
)
if (${HMI_DBUS_API})
diff --git a/src/components/rpc_base/test/rpc_base_json_test.cc b/src/components/rpc_base/test/rpc_base_json_test.cc
index 8c0bef930e..3a536937ba 100644
--- a/src/components/rpc_base/test/rpc_base_json_test.cc
+++ b/src/components/rpc_base/test/rpc_base_json_test.cc
@@ -45,10 +45,6 @@ enum TestEnum {
kInvalidValue
};
-bool IsValidEnum(TestEnum val) {
- return val == kValue0 || val == kValue1;
-}
-
bool EnumFromJsonString(const std::string& value, TestEnum* enm) {
if (value == "kValue0") {
*enm = kValue0;
diff --git a/src/components/rpc_base/test/validation_report_test.cc b/src/components/rpc_base/test/validation_report_test.cc
new file mode 100644
index 0000000000..1493de3957
--- /dev/null
+++ b/src/components/rpc_base/test/validation_report_test.cc
@@ -0,0 +1,156 @@
+/*
+ * Copyright (c) 2015, Ford Motor Company
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ *
+ * Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided with the
+ * distribution.
+ *
+ * Neither the name of the Ford Motor Company nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <string>
+#include "gtest/gtest.h"
+#include "rpc_base/validation_report.h"
+
+namespace test {
+using namespace rpc;
+
+class ValidationReportTest : public testing::Test {
+ protected:
+ static ValidationReport* report_;
+ static ValidationReport* report_2;
+ static const std::string object_name_;
+ static const std::string object_name_2;
+ static const std::string subobject_name_1;
+ static const std::string subobject_name_2;
+ static const std::string subobject_name_3;
+ static const std::string test_validation_info_;
+ static const std::string parent_object_name_;
+
+ static void SetUpTestCase() {
+ report_ = new ValidationReport(object_name_);
+ report_2 = new ValidationReport(object_name_2);
+ }
+ virtual void TearDown() { ClearReports(); }
+
+ void ClearReports() {
+ ValidationReports& temp =
+ const_cast<ValidationReports&>(report_->subobject_reports());
+ temp.clear();
+ }
+
+ void GeneratePrettyFormatResult(std::string& result, const std::string& parent_name,
+ const std::string& obj_name, const std::string& val_info) {
+ std::string temp;
+ if (obj_name[0] != '[') {
+ temp = ".";
+ } else {
+ temp = "";
+ }
+ result = parent_name + temp + obj_name + ":" + " " +
+ val_info + "\n";
+ }
+
+ void ClearValidationInfo() {
+ std::string& temp = const_cast<std::string&>(report_->validation_info());
+ temp = "";
+ }
+
+ static void TearDownTestCase() {
+ delete report_;
+ delete report_2;
+ }
+
+ void FillReports(ValidationReports& reports_) {
+ reports_.push_back(ValidationReport("test_subobject1"));
+ reports_.push_back(ValidationReport("test_subobject2"));
+ reports_.push_back(ValidationReport("test_subobject3"));
+ }
+};
+
+ValidationReport* ValidationReportTest::report_ = NULL;
+ValidationReport* ValidationReportTest::report_2 = NULL;
+const std::string ValidationReportTest::object_name_ = "test_object";
+const std::string ValidationReportTest::object_name_2 = "[test_object2]";
+const std::string ValidationReportTest::subobject_name_1 = "test_subobject1";
+const std::string ValidationReportTest::subobject_name_2 = "test_subobject2";
+const std::string ValidationReportTest::subobject_name_3 = "test_subobject3";
+const std::string ValidationReportTest::test_validation_info_ =
+ "test_validation_info";
+const std::string ValidationReportTest::parent_object_name_ = "test_parent";
+
+
+TEST_F(ValidationReportTest, Ctor_and_object_name_test_ExpectDataCorrect) {
+ EXPECT_EQ(object_name_, report_->object_name());
+}
+
+TEST_F(ValidationReportTest, Set_Get_Validation_Info_ExpectDataCorrect) {
+ report_->set_validation_info("test_validation_info");
+ EXPECT_EQ(test_validation_info_, report_->validation_info());
+ ClearValidationInfo();
+}
+
+TEST_F(ValidationReportTest, Subobject_Reports_ExpectDataCorrect) {
+ // Check before act
+ EXPECT_EQ(0u, report_->subobject_reports().size());
+ // Act
+ report_->ReportSubobject(subobject_name_1).object_name();
+ report_->ReportSubobject(subobject_name_2).object_name();
+ report_->ReportSubobject(subobject_name_3).object_name();
+ // Check after act
+ EXPECT_EQ(3u, report_->subobject_reports().size());
+}
+
+TEST_F(ValidationReportTest, ReportSubobject_ExpectDataCorrect) {
+ // Act and check
+ EXPECT_EQ(subobject_name_1,
+ report_->ReportSubobject(subobject_name_1).object_name());
+ EXPECT_EQ(subobject_name_2,
+ report_->ReportSubobject(subobject_name_2).object_name());
+ EXPECT_EQ(subobject_name_3,
+ report_->ReportSubobject(subobject_name_3).object_name());
+ // Check after act
+ EXPECT_EQ(3u, report_->subobject_reports().size());
+}
+
+TEST_F(ValidationReportTest, PrettyFormat_ExpectDataCorrect) {
+ // Arrange
+ std::string result1;
+ std::string result2;
+ report_->set_validation_info(test_validation_info_);
+ report_2->set_validation_info(test_validation_info_);
+ // Act
+ impl::PrettyFormat(*report_, parent_object_name_, &result1);
+ impl::PrettyFormat(*report_2, parent_object_name_, &result2);
+ std::string temp1;
+ GeneratePrettyFormatResult(temp1, parent_object_name_, object_name_, test_validation_info_);
+ std::string temp2;
+ GeneratePrettyFormatResult(temp2, parent_object_name_, object_name_2, test_validation_info_);
+ // Checks
+ EXPECT_EQ(temp1, result1);
+ EXPECT_EQ(temp2, result2);
+}
+
+} // namespace rpc