Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: chromeos/dbus/flimflam_profile_client_unittest.cc

Issue 10915106: Renaming instances of "flimflam" with "shill", now that we're only (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Upload after merge Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/dbus/flimflam_profile_client.cc ('k') | chromeos/dbus/flimflam_service_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/flimflam_profile_client_unittest.cc
diff --git a/chromeos/dbus/flimflam_profile_client_unittest.cc b/chromeos/dbus/flimflam_profile_client_unittest.cc
deleted file mode 100644
index e91d7e446c2e7cb6da7e9325e231b1d5b2cca253..0000000000000000000000000000000000000000
--- a/chromeos/dbus/flimflam_profile_client_unittest.cc
+++ /dev/null
@@ -1,160 +0,0 @@
-// 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;
- 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
« no previous file with comments | « chromeos/dbus/flimflam_profile_client.cc ('k') | chromeos/dbus/flimflam_service_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698