blob: c3bc7a1fb1596c735fe7e1949f6d9b1af8f721f1 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/notifications/notification_platform_bridge_linux.h"
#include <memory>
#include <vector>
#include "base/callback.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/memory/ref_counted.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/notifications/notification.h"
#include "chrome/browser/notifications/notification_test_util.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "content/public/test/test_utils.h"
#include "dbus/mock_bus.h"
#include "dbus/mock_object_proxy.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using testing::_;
using testing::Return;
using testing::StrictMock;
namespace {
const char kFreedesktopNotificationsName[] = "org.freedesktop.Notifications";
const char kFreedesktopNotificationsPath[] = "/org/freedesktop/Notifications";
ACTION_P(RegisterSignalCallback, callback_addr) {
*callback_addr = arg2;
arg3.Run("" /* interface_name */, "" /* signal_name */, true /* success */);
}
ACTION_P(OnGetCapabilities, capabilities) {
// MockObjectProxy::CallMethodAndBlock will wrap the return value in
// a unique_ptr.
dbus::Response* response = dbus::Response::CreateEmpty().release();
dbus::MessageWriter writer(response);
writer.AppendArrayOfStrings(capabilities);
return response;
}
ACTION_P(OnNotify, id) {
// The "Notify" message must have type (susssasa{sv}i).
// https://developer.gnome.org/notification-spec/#command-notify
dbus::MethodCall* method_call = arg0;
dbus::MessageReader reader(method_call);
std::string str;
uint32_t uint32;
int32_t int32;
EXPECT_TRUE(reader.PopString(&str));
EXPECT_TRUE(reader.PopUint32(&uint32));
EXPECT_TRUE(reader.PopString(&str));
EXPECT_TRUE(reader.PopString(&str));
EXPECT_TRUE(reader.PopString(&str));
{
dbus::MessageReader actions_reader(nullptr);
EXPECT_TRUE(reader.PopArray(&actions_reader));
while (actions_reader.HasMoreData()) {
// Actions come in pairs.
EXPECT_TRUE(actions_reader.PopString(&str));
EXPECT_TRUE(actions_reader.PopString(&str));
}
}
{
dbus::MessageReader hints_reader(nullptr);
EXPECT_TRUE(reader.PopArray(&hints_reader));
while (hints_reader.HasMoreData()) {
dbus::MessageReader dict_entry_reader(nullptr);
EXPECT_TRUE(hints_reader.PopDictEntry(&dict_entry_reader));
EXPECT_TRUE(dict_entry_reader.PopString(&str));
dbus::MessageReader variant_reader(nullptr);
EXPECT_TRUE(dict_entry_reader.PopVariant(&variant_reader));
EXPECT_FALSE(dict_entry_reader.HasMoreData());
}
}
EXPECT_TRUE(reader.PopInt32(&int32));
EXPECT_FALSE(reader.HasMoreData());
dbus::Response* response = dbus::Response::CreateEmpty().release();
dbus::MessageWriter writer(response);
writer.AppendUint32(id);
return response;
}
ACTION(OnCloseNotification) {
// The "CloseNotification" message must have type (u).
// https://developer.gnome.org/notification-spec/#command-close-notification
dbus::MethodCall* method_call = arg0;
dbus::MessageReader reader(method_call);
uint32_t uint32;
EXPECT_TRUE(reader.PopUint32(&uint32));
EXPECT_FALSE(reader.HasMoreData());
return dbus::Response::CreateEmpty().release();
}
// Matches a method call to the specified dbus target.
MATCHER_P(Calls, member, "") {
return arg->GetMember() == member;
}
Notification CreateNotification(const char* id,
const char* title,
const char* body,
const char* origin) {
message_center::RichNotificationData optional_fields;
GURL url = GURL(origin);
return Notification(message_center::NOTIFICATION_TYPE_SIMPLE,
base::UTF8ToUTF16(title), base::UTF8ToUTF16(body),
gfx::Image(), message_center::NotifierId(url),
base::UTF8ToUTF16("Notifier's Name"), url, id,
optional_fields, new MockNotificationDelegate(id));
}
} // namespace
class NotificationPlatformBridgeLinuxTest : public testing::Test {
public:
NotificationPlatformBridgeLinuxTest() = default;
~NotificationPlatformBridgeLinuxTest() override = default;
void SetUp() override {
mock_bus_ = new dbus::MockBus(dbus::Bus::Options());
mock_notification_proxy_ = new StrictMock<dbus::MockObjectProxy>(
mock_bus_.get(), kFreedesktopNotificationsName,
dbus::ObjectPath(kFreedesktopNotificationsPath));
EXPECT_CALL(*mock_bus_.get(),
GetObjectProxy(kFreedesktopNotificationsName,
dbus::ObjectPath(kFreedesktopNotificationsPath)))
.WillOnce(Return(mock_notification_proxy_.get()));
EXPECT_CALL(*mock_notification_proxy_.get(),
MockCallMethodAndBlock(Calls("GetCapabilities"), _))
.WillOnce(OnGetCapabilities(std::vector<std::string>()));
EXPECT_CALL(
*mock_notification_proxy_.get(),
ConnectToSignal(kFreedesktopNotificationsName, "ActionInvoked", _, _))
.WillOnce(RegisterSignalCallback(&action_invoked_callback_));
EXPECT_CALL(*mock_notification_proxy_.get(),
ConnectToSignal(kFreedesktopNotificationsName,
"NotificationClosed", _, _))
.WillOnce(RegisterSignalCallback(&notification_closed_callback_));
notification_bridge_linux_ =
base::WrapUnique(new NotificationPlatformBridgeLinux(mock_bus_));
}
void TearDown() override {
EXPECT_CALL(*mock_bus_.get(), ShutdownAndBlock());
notification_bridge_linux_->CleanUp();
content::RunAllBlockingPoolTasksUntilIdle();
notification_bridge_linux_.reset();
mock_notification_proxy_ = nullptr;
mock_bus_ = nullptr;
}
protected:
content::TestBrowserThreadBundle thread_bundle_;
scoped_refptr<dbus::MockBus> mock_bus_;
scoped_refptr<dbus::MockObjectProxy> mock_notification_proxy_;
base::Callback<void(dbus::Signal*)> action_invoked_callback_;
base::Callback<void(dbus::Signal*)> notification_closed_callback_;
std::unique_ptr<NotificationPlatformBridgeLinux> notification_bridge_linux_;
private:
DISALLOW_COPY_AND_ASSIGN(NotificationPlatformBridgeLinuxTest);
};
TEST_F(NotificationPlatformBridgeLinuxTest, SetUpAndTearDown) {}
TEST_F(NotificationPlatformBridgeLinuxTest, NotifyAndCloseFormat) {
EXPECT_CALL(*mock_notification_proxy_.get(),
MockCallMethodAndBlock(Calls("Notify"), _))
.WillOnce(OnNotify(1));
notification_bridge_linux_->Display(NotificationCommon::PERSISTENT, "", "",
false,
CreateNotification("id1", "", "", ""));
EXPECT_CALL(*mock_notification_proxy_.get(),
MockCallMethodAndBlock(Calls("CloseNotification"), _))
.WillOnce(OnCloseNotification());
notification_bridge_linux_->Close("", "");
}