summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/flimflam_profile_client_unittest.cc
diff options
context:
space:
mode:
authorhashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-17 02:08:01 +0000
committerhashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-17 02:08:01 +0000
commit18929a9d3aaa97967efa8a93def0c7b818b429be (patch)
treea4befbc7cfaeacc244806c059a6fef223ebe54c1 /chromeos/dbus/flimflam_profile_client_unittest.cc
parent097fef767b3d04bda91e4731343e7ddb9c7b2e9c (diff)
downloadchromium_src-18929a9d3aaa97967efa8a93def0c7b818b429be.zip
chromium_src-18929a9d3aaa97967efa8a93def0c7b818b429be.tar.gz
chromium_src-18929a9d3aaa97967efa8a93def0c7b818b429be.tar.bz2
Add FlimflamProfileClientTest
BUG=chromium-os:16557 TEST=chromeos_unittests --gtest_filter="FlimflamProfileClientTest.*" Review URL: https://chromiumcodereview.appspot.com/10038011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/dbus/flimflam_profile_client_unittest.cc')
-rw-r--r--chromeos/dbus/flimflam_profile_client_unittest.cc160
1 files changed, 160 insertions, 0 deletions
diff --git a/chromeos/dbus/flimflam_profile_client_unittest.cc b/chromeos/dbus/flimflam_profile_client_unittest.cc
new file mode 100644
index 0000000..7e2e837
--- /dev/null
+++ b/chromeos/dbus/flimflam_profile_client_unittest.cc
@@ -0,0 +1,160 @@
+// Copyright (c) 2012 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 "base/bind.h"
+#include "base/values.h"
+#include "chromeos/dbus/flimflam_client_unittest_base.h"
+#include "chromeos/dbus/flimflam_profile_client.h"
+#include "dbus/message.h"
+#include "dbus/object_path.h"
+#include "dbus/values_util.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "third_party/cros_system_api/dbus/service_constants.h"
+
+namespace chromeos {
+
+namespace {
+
+const char kDefaultProfilePath[] = "/profile/default";
+const char kExampleEntryPath[] = "example_entry_path";
+
+void AppendVariantOfArrayOfStrings(dbus::MessageWriter* writer,
+ const std::vector<std::string>& strings) {
+ dbus::MessageWriter variant_writer(NULL);
+ writer->OpenVariant("as", &variant_writer);
+ variant_writer.AppendArrayOfStrings(strings);
+ writer->CloseContainer(&variant_writer);
+}
+
+} // namespace
+
+class FlimflamProfileClientTest : public FlimflamClientUnittestBase {
+ public:
+ FlimflamProfileClientTest()
+ : FlimflamClientUnittestBase(flimflam::kFlimflamProfileInterface,
+ dbus::ObjectPath(kDefaultProfilePath)) {
+ }
+
+ virtual void SetUp() {
+ FlimflamClientUnittestBase::SetUp();
+ // Create a client with the mock bus.
+ client_.reset(FlimflamProfileClient::Create(REAL_DBUS_CLIENT_IMPLEMENTATION,
+ mock_bus_));
+ // Run the message loop to run the signal connection result callback.
+ message_loop_.RunAllPending();
+ }
+
+ virtual void TearDown() {
+ FlimflamClientUnittestBase::TearDown();
+ }
+
+ protected:
+ scoped_ptr<FlimflamProfileClient> client_;
+};
+
+TEST_F(FlimflamProfileClientTest, PropertyChanged) {
+ // Create a signal.
+ dbus::Signal signal(flimflam::kFlimflamProfileInterface,
+ flimflam::kMonitorPropertyChanged);
+ dbus::MessageWriter writer(&signal);
+ writer.AppendString(flimflam::kEntriesProperty);
+ AppendVariantOfArrayOfStrings(&writer,
+ std::vector<std::string>(1, kExampleEntryPath));
+
+ // Set expectations.
+ base::ListValue* value = new base::ListValue;
+ value->Append(base::Value::CreateStringValue(kExampleEntryPath));
+
+ client_->SetPropertyChangedHandler(dbus::ObjectPath(kDefaultProfilePath),
+ base::Bind(&ExpectPropertyChanged,
+ flimflam::kEntriesProperty,
+ value));
+ // Run the signal callback.
+ SendPropertyChangedSignal(&signal);
+
+ // Reset the handler.
+ client_->ResetPropertyChangedHandler(dbus::ObjectPath(kDefaultProfilePath));
+}
+
+TEST_F(FlimflamProfileClientTest, GetProperties) {
+ // Create response.
+ scoped_ptr<dbus::Response> response(dbus::Response::CreateEmpty());
+ dbus::MessageWriter writer(response.get());
+ dbus::MessageWriter array_writer(NULL);
+ writer.OpenArray("{sv}", &array_writer);
+ dbus::MessageWriter entry_writer(NULL);
+ array_writer.OpenDictEntry(&entry_writer);
+ entry_writer.AppendString(flimflam::kEntriesProperty);
+ AppendVariantOfArrayOfStrings(&entry_writer,
+ std::vector<std::string>(1, kExampleEntryPath));
+ array_writer.CloseContainer(&entry_writer);
+ writer.CloseContainer(&array_writer);
+
+ // Create the expected value.
+ base::ListValue* entries = new base::ListValue;
+ entries->Append(base::Value::CreateStringValue(kExampleEntryPath));
+ base::DictionaryValue value;
+ value.SetWithoutPathExpansion(flimflam::kEntriesProperty, entries);
+ // Set expectations.
+ PrepareForMethodCall(flimflam::kGetPropertiesFunction,
+ base::Bind(&ExpectNoArgument),
+ response.get());
+ // Call method.
+ client_->GetProperties(dbus::ObjectPath(kDefaultProfilePath),
+ base::Bind(&ExpectDictionaryValueResult, &value));
+ // Run the message loop.
+ message_loop_.RunAllPending();
+}
+
+TEST_F(FlimflamProfileClientTest, GetEntry) {
+ // Create response.
+ scoped_ptr<dbus::Response> response(dbus::Response::CreateEmpty());
+ dbus::MessageWriter writer(response.get());
+ dbus::MessageWriter array_writer(NULL);
+ writer.OpenArray("{sv}", &array_writer);
+ dbus::MessageWriter entry_writer(NULL);
+ array_writer.OpenDictEntry(&entry_writer);
+ entry_writer.AppendString(flimflam::kTypeProperty);
+ entry_writer.AppendVariantOfString(flimflam::kTypeWifi);
+ array_writer.CloseContainer(&entry_writer);
+ writer.CloseContainer(&array_writer);
+
+ // Create the expected value.
+ base::DictionaryValue value;
+ value.SetWithoutPathExpansion(
+ flimflam::kTypeProperty,
+ base::Value::CreateStringValue(flimflam::kTypeWifi));
+ // Set expectations.
+ PrepareForMethodCall(flimflam::kGetEntryFunction,
+ base::Bind(&ExpectStringArgument, kExampleEntryPath),
+ response.get());
+ // Call method.
+ client_->GetEntry(dbus::ObjectPath(kDefaultProfilePath),
+ kExampleEntryPath,
+ base::Bind(&ExpectDictionaryValueResult, &value));
+ // Run the message loop.
+ message_loop_.RunAllPending();
+}
+
+TEST_F(FlimflamProfileClientTest, DeleteEntry) {
+ // Create response.
+ scoped_ptr<dbus::Response> response(dbus::Response::CreateEmpty());
+
+ // Create the expected value.
+ base::DictionaryValue value;
+ value.SetWithoutPathExpansion(flimflam::kOfflineModeProperty,
+ base::Value::CreateBooleanValue(true));
+ // Set expectations.
+ PrepareForMethodCall(flimflam::kDeleteEntryFunction,
+ base::Bind(&ExpectStringArgument, kExampleEntryPath),
+ response.get());
+ // Call method.
+ client_->DeleteEntry(dbus::ObjectPath(kDefaultProfilePath),
+ kExampleEntryPath,
+ base::Bind(&ExpectNoResultValue));
+ // Run the message loop.
+ message_loop_.RunAllPending();
+}
+
+} // namespace chromeos