Update some unittests
[platform/core/api/notification.git] / notification-ex / icon_text_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 <dlog.h>
18
19 #include "notification-ex/icon_text_item.h"
20 #include "notification-ex/icon_text_item_implementation.h"
21 #include "notification-ex/item_factory.h"
22 #include "notification-ex/exception.h"
23
24 #ifdef LOG_TAG
25 #undef LOG_TAG
26 #endif
27
28 #define LOG_TAG "NOTIFICATION_EX"
29 #define ICONTEXT_PATH_KEY "__ICONTEXT_PATH_KEY__"
30 #define ICONTEXT_TITLE_KEY "__ICONTEXT_TITLE_KEY__"
31
32 namespace notification {
33 namespace item {
34
35 IconTextItem::IconTextItem(std::string id, std::shared_ptr<IconItem> icon,
36   std::shared_ptr<TextItem> text, std::shared_ptr<AbstractAction> action)
37   : AbstractItem(id, AbstractItem::IconText, action),
38   impl_(new Impl(this, icon, text)) {
39 }
40
41 IconTextItem::Impl::Impl(IconTextItem* parent, std::shared_ptr<IconItem> icon,
42   std::shared_ptr<TextItem> text)
43   : parent_(parent), icon_(icon), text_(text) {
44   LOGI("IconTextItem impl created");
45 }
46
47 Bundle IconTextItem::Serialize() {
48   Bundle b;
49   b = AbstractItem::Serialize();
50
51   b.Add(ICONTEXT_PATH_KEY,
52     reinterpret_cast<char*>(impl_->icon_->Serialize().ToRaw().first.get()));
53   b.Add(ICONTEXT_TITLE_KEY,
54     reinterpret_cast<char*>(impl_->text_->Serialize().ToRaw().first.get()));
55   return b;
56 }
57
58 void IconTextItem::Deserialize(Bundle b) {
59   ItemFactory factory;
60
61   AbstractItem::Deserialize(b);
62
63   std::shared_ptr<AbstractItem> icon = factory.CreateItem(AbstractItem::Icon);
64   icon.get()->Deserialize(Bundle(b.GetString(ICONTEXT_PATH_KEY)));
65   impl_->icon_ = std::static_pointer_cast<IconItem>(icon);
66
67   std::shared_ptr<AbstractItem> text = factory.CreateItem(AbstractItem::Text);
68   text.get()->Deserialize(Bundle(b.GetString(ICONTEXT_TITLE_KEY)));
69   impl_->text_ = std::static_pointer_cast<TextItem>(text);
70 }
71
72 AbstractItem& IconTextItem::FindByID(std::string id) {
73   if (GetId() == id)
74     return *this;
75
76   return ItemFactory::GetNullItem();
77 }
78
79 IconItem& IconTextItem::GetIconItem() const {
80   return *(impl_->icon_);
81 }
82
83 TextItem& IconTextItem::GetTextItem() const {
84   return *(impl_->text_);
85 }
86
87 IconTextItem::~IconTextItem() = default;
88 IconTextItem::Impl::~Impl() = default;
89
90 }  // namespace item
91 }  // namespace notification_ex