summaryrefslogtreecommitdiff
path: root/tests/noti_ex_unittest/src/test_noti_ex_icon_item.cc
blob: 0ca4010ac8e5737ddd94044f77a0404f587b6b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * Copyright (c) 2019 Samsung Electronics Co., Ltd.
 *
 * Licensed 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 <gtest/gtest.h>
#include <gmock/gmock.h>

#include "mock/app_common_mock.hh"
#include "mock/smack_mock.hh"
#include "mock/test_fixture.hh"
#include "notification-ex/icon_item.h"
#include "notification-ex/item_inflator.h"

using namespace tizen_base;
using namespace notification;
using namespace notification::item;

namespace {
class Mocks :
    virtual public ::testing::NiceMock<SmackMock>,
    virtual public ::testing::NiceMock<AppCommonMock> {};
} // namespace

class IconItemTest : public TestFixture {
 public:
  IconItemTest() : TestFixture(std::make_unique<::Mocks>()) {}
  IconItem* item;
  std::string id = "icon_id";
  virtual void SetUp() {
    item = new IconItem(id, "icon_path");
  }
  virtual void TearDown() {
    delete item;
  }
};

TEST_F(IconItemTest, create) {
  EXPECT_NE(IconItemTest::item, nullptr);
}

TEST_F(IconItemTest, FindByID) {
  AbstractItem& child = IconItemTest::item->FindByID(IconItemTest::id);
  IconItem& icon = static_cast<IconItem&>(child);
  ASSERT_EQ(icon.GetImagePath(), "icon_path");
}

TEST_F(IconItemTest, FindByIDNullItemReturn) {
  AbstractItem& child = IconItemTest::item->FindByID("not_existed_item");
  ASSERT_EQ(child.GetType(), IconItem::NullObject);
}

TEST_F(IconItemTest, SerializeDeserialize) {
  Bundle b = IconItemTest::item->Serialize();

  std::shared_ptr<AbstractItem> gen_item = ItemInflator::Create(b);
  ASSERT_EQ(IconItemTest::item->GetType(), gen_item->GetType());

  auto gen_icon = std::static_pointer_cast<IconItem>(gen_item);
  ASSERT_EQ(IconItemTest::item->GetImagePath(), gen_icon->GetImagePath());
}