Improve unit TCs
[platform/core/api/notification.git] / unittest / src / test_checkbox_item.cc
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <gtest/gtest.h>
18 #include <gmock/gmock.h>
19
20 #include "notification-ex/checkbox_item.h"
21 #include "notification-ex/item_inflator.h"
22
23 using namespace notification;
24 using namespace notification::item;
25
26 class CheckBoxItemTest : public ::testing::Test {
27  public:
28   CheckBoxItem* item;
29   std::string id = "checkbox_id";
30   std::string title = "title";
31   bool isChecked = false;
32   virtual void SetUp() {
33     item = new CheckBoxItem(id, title, isChecked);
34   }
35   virtual void TearDown() {
36     delete item;
37   }
38 };
39
40 TEST_F(CheckBoxItemTest, create) {
41   EXPECT_NE(CheckBoxItemTest::item, nullptr);
42 }
43
44 TEST_F(CheckBoxItemTest, FindByID) {
45   AbstractItem& child = CheckBoxItemTest::item->FindByID(CheckBoxItemTest::id);
46   CheckBoxItem& checkbox = static_cast<CheckBoxItem&>(child);
47   ASSERT_EQ(checkbox.GetTitle(), CheckBoxItemTest::title);
48   ASSERT_EQ(checkbox.IsChecked(), CheckBoxItemTest::isChecked);
49 }
50
51 TEST_F(CheckBoxItemTest, FindByIDNullItemReturn) {
52   AbstractItem& child = CheckBoxItemTest::item->FindByID("not_existed_item");
53   ASSERT_EQ(child.GetType(), CheckBoxItem::NullObject);
54 }
55
56 TEST_F(CheckBoxItemTest, SerializeDeserialize) {
57   Bundle b = CheckBoxItemTest::item->Serialize();
58
59   std::shared_ptr<AbstractItem> gen_item = ItemInflator::Create(b);
60   ASSERT_EQ(CheckBoxItemTest::item->GetType(), gen_item->GetType());
61
62   auto gen_checkbox = std::static_pointer_cast<CheckBoxItem>(gen_item);
63   ASSERT_EQ(CheckBoxItemTest::item->GetTitle(), gen_checkbox->GetTitle());
64 }