blob: 6b77c1769074813af4d02b76185a14f07074645b [file] [log] [blame]
Chris Masone7156c922011-08-23 20:36:21 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
Chris Masone88cbd5f2011-07-03 14:30:04 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "shill/default_profile.h"
6
7#include <map>
8#include <string>
Chris Masone877ff982011-09-21 16:18:24 -07009#include <vector>
Chris Masone88cbd5f2011-07-03 14:30:04 -070010
Chris Masone6515aab2011-10-12 16:19:09 -070011#include <base/file_path.h>
Chris Masone88cbd5f2011-07-03 14:30:04 -070012#include <chromeos/dbus/service_constants.h>
13#include <gtest/gtest.h>
14#include <gmock/gmock.h>
15
Chris Masone6515aab2011-10-12 16:19:09 -070016#include "shill/key_file_store.h"
17#include "shill/glib.h"
Chris Masone88cbd5f2011-07-03 14:30:04 -070018#include "shill/manager.h"
19#include "shill/mock_control.h"
Chris Masone877ff982011-09-21 16:18:24 -070020#include "shill/mock_device.h"
Chris Masoneaa482372011-09-14 16:40:37 -070021#include "shill/mock_store.h"
Chris Masone88cbd5f2011-07-03 14:30:04 -070022#include "shill/property_store_unittest.h"
23
24using std::map;
25using std::string;
Chris Masone877ff982011-09-21 16:18:24 -070026using std::vector;
Chris Masone88cbd5f2011-07-03 14:30:04 -070027using ::testing::_;
Paul Stewart870523b2012-01-11 17:00:42 -080028using ::testing::DoAll;
Chris Masoneaa482372011-09-14 16:40:37 -070029using ::testing::Return;
Paul Stewart870523b2012-01-11 17:00:42 -080030using ::testing::SetArgumentPointee;
Chris Masone88cbd5f2011-07-03 14:30:04 -070031
32namespace shill {
33
34class DefaultProfileTest : public PropertyStoreTest {
35 public:
Chris Masone7aa5f902011-07-11 11:13:35 -070036 DefaultProfileTest()
Chris Masone2176a882011-09-14 22:29:15 -070037 : profile_(new DefaultProfile(control_interface(),
Chris Masone9d779932011-08-25 16:33:41 -070038 manager(),
Chris Masone6515aab2011-10-12 16:19:09 -070039 FilePath(storage_path()),
Chris Masone877ff982011-09-21 16:18:24 -070040 properties_)),
41 device_(new MockDevice(control_interface(),
42 dispatcher(),
43 manager(),
44 "null0",
45 "addr0",
46 0)) {
Chris Masone7aa5f902011-07-11 11:13:35 -070047 }
Chris Masone88cbd5f2011-07-03 14:30:04 -070048
49 virtual ~DefaultProfileTest() {}
50
Chris Masone6515aab2011-10-12 16:19:09 -070051 virtual void SetUp() {
52 PropertyStoreTest::SetUp();
53 FilePath final_path;
54 ASSERT_TRUE(profile_->GetStoragePath(&final_path));
55 scoped_ptr<KeyFileStore> storage(new KeyFileStore(&real_glib_));
56 storage->set_path(final_path);
57 ASSERT_TRUE(storage->Open());
58 profile_->set_storage(storage.release()); // Passes ownership.
59 }
60
Chris Masone88cbd5f2011-07-03 14:30:04 -070061 protected:
Chris Masone2ae797d2011-08-23 20:41:00 -070062 static const char kTestStoragePath[];
63
Chris Masone6515aab2011-10-12 16:19:09 -070064 GLib real_glib_;
Paul Stewart870523b2012-01-11 17:00:42 -080065 scoped_refptr<DefaultProfile> profile_;
Chris Masone877ff982011-09-21 16:18:24 -070066 scoped_refptr<MockDevice> device_;
Chris Masone88cbd5f2011-07-03 14:30:04 -070067 Manager::Properties properties_;
68};
69
Chris Masone2ae797d2011-08-23 20:41:00 -070070const char DefaultProfileTest::kTestStoragePath[] = "/no/where";
71
Chris Masone88cbd5f2011-07-03 14:30:04 -070072TEST_F(DefaultProfileTest, GetProperties) {
73 Error error(Error::kInvalidProperty, "");
74 {
75 map<string, ::DBus::Variant> props;
76 ::DBus::Error dbus_error;
Chris Masone7aa5f902011-07-11 11:13:35 -070077 DBusAdaptor::GetProperties(profile_->store(), &props, &dbus_error);
Chris Masone88cbd5f2011-07-03 14:30:04 -070078 ASSERT_FALSE(props.find(flimflam::kOfflineModeProperty) == props.end());
79 EXPECT_FALSE(props[flimflam::kOfflineModeProperty].reader().get_bool());
80 }
81 properties_.offline_mode = true;
82 {
83 map<string, ::DBus::Variant> props;
84 ::DBus::Error dbus_error;
Chris Masone7aa5f902011-07-11 11:13:35 -070085 DBusAdaptor::GetProperties(profile_->store(), &props, &dbus_error);
Chris Masone88cbd5f2011-07-03 14:30:04 -070086 ASSERT_FALSE(props.find(flimflam::kOfflineModeProperty) == props.end());
87 EXPECT_TRUE(props[flimflam::kOfflineModeProperty].reader().get_bool());
88 }
89 {
90 Error error(Error::kInvalidProperty, "");
91 EXPECT_FALSE(
mukesh agrawalde29fa82011-09-16 16:16:36 -070092 profile_->mutable_store()->SetBoolProperty(
93 flimflam::kOfflineModeProperty,
94 true,
95 &error));
Chris Masone88cbd5f2011-07-03 14:30:04 -070096 }
97}
98
Chris Masoneaa482372011-09-14 16:40:37 -070099TEST_F(DefaultProfileTest, Save) {
Chris Masoneb9c00592011-10-06 13:10:39 -0700100 scoped_ptr<MockStore> storage(new MockStore);
101 EXPECT_CALL(*storage.get(), SetString(DefaultProfile::kStorageId,
102 DefaultProfile::kStorageName,
103 DefaultProfile::kDefaultId))
Chris Masoneaa482372011-09-14 16:40:37 -0700104 .WillOnce(Return(true));
Chris Masoneb9c00592011-10-06 13:10:39 -0700105 EXPECT_CALL(*storage.get(), SetString(DefaultProfile::kStorageId,
106 DefaultProfile::kStorageCheckPortalList,
107 ""))
Chris Masoneaa482372011-09-14 16:40:37 -0700108 .WillOnce(Return(true));
Chris Masoneb9c00592011-10-06 13:10:39 -0700109 EXPECT_CALL(*storage.get(), SetBool(DefaultProfile::kStorageId,
110 DefaultProfile::kStorageOfflineMode,
111 false))
Chris Masoneaa482372011-09-14 16:40:37 -0700112 .WillOnce(Return(true));
Chris Masoneb9c00592011-10-06 13:10:39 -0700113 EXPECT_CALL(*storage.get(), Flush()).WillOnce(Return(true));
Chris Masone877ff982011-09-21 16:18:24 -0700114
Chris Masoneb9c00592011-10-06 13:10:39 -0700115 EXPECT_CALL(*device_.get(), Save(storage.get())).WillOnce(Return(true));
116 profile_->set_storage(storage.release());
Chris Masone877ff982011-09-21 16:18:24 -0700117
118 manager()->RegisterDevice(device_);
Chris Masoneb9c00592011-10-06 13:10:39 -0700119 ASSERT_TRUE(profile_->Save());
Chris Masone877ff982011-09-21 16:18:24 -0700120 manager()->DeregisterDevice(device_);
Chris Masoneaa482372011-09-14 16:40:37 -0700121}
122
Paul Stewart870523b2012-01-11 17:00:42 -0800123TEST_F(DefaultProfileTest, LoadManagerProperties) {
124 scoped_ptr<MockStore> storage(new MockStore);
125 EXPECT_CALL(*storage.get(), GetBool(DefaultProfile::kStorageId,
126 DefaultProfile::kStorageOfflineMode,
127 _))
128 .WillOnce(DoAll(SetArgumentPointee<2>(true), Return(true)));
129 const string portal_list("technology1,technology2");
130 EXPECT_CALL(*storage.get(), GetString(DefaultProfile::kStorageId,
131 DefaultProfile::kStorageCheckPortalList,
132 _))
133 .WillOnce(DoAll(SetArgumentPointee<2>(portal_list), Return(true)));
134 profile_->set_storage(storage.release());
135
136 Manager::Properties manager_props;
137 ASSERT_TRUE(profile_->LoadManagerProperties(&manager_props));
138 EXPECT_TRUE(manager_props.offline_mode);
139 EXPECT_EQ(portal_list, manager_props.check_portal_list);
140}
141
Chris Masone2ae797d2011-08-23 20:41:00 -0700142TEST_F(DefaultProfileTest, GetStoragePath) {
143 FilePath path;
144 EXPECT_TRUE(profile_->GetStoragePath(&path));
Chris Masone6515aab2011-10-12 16:19:09 -0700145 EXPECT_EQ(storage_path() + "/default.profile", path.value());
Chris Masone2ae797d2011-08-23 20:41:00 -0700146}
147
Chris Masone88cbd5f2011-07-03 14:30:04 -0700148} // namespace shill