ServiceWorker: Initialize member variable in ctor of ServiceWorkerDatabase
[chromium-blink-merge.git] / chromeos / dbus / fake_shill_manager_client.h
blob339e0d16b8845889f2a911c8f7c95a70fc3d47e0
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_
6 #define CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/callback.h"
12 #include "chromeos/chromeos_export.h"
13 #include "chromeos/dbus/shill_manager_client.h"
15 namespace chromeos {
17 // A fake implementation of ShillManagerClient. This works in close coordination
18 // with FakeShillServiceClient. FakeShillDeviceClient, and
19 // FakeShillProfileClient, and is not intended to be used independently.
20 class CHROMEOS_EXPORT FakeShillManagerClient
21 : public ShillManagerClient,
22 public ShillManagerClient::TestInterface {
23 public:
24 FakeShillManagerClient();
25 virtual ~FakeShillManagerClient();
27 // ShillManagerClient overrides
28 virtual void Init(dbus::Bus* bus) OVERRIDE;
29 virtual void AddPropertyChangedObserver(
30 ShillPropertyChangedObserver* observer) OVERRIDE;
31 virtual void RemovePropertyChangedObserver(
32 ShillPropertyChangedObserver* observer) OVERRIDE;
33 virtual void GetProperties(const DictionaryValueCallback& callback) OVERRIDE;
34 virtual void GetNetworksForGeolocation(
35 const DictionaryValueCallback& callback) OVERRIDE;
36 virtual void SetProperty(const std::string& name,
37 const base::Value& value,
38 const base::Closure& callback,
39 const ErrorCallback& error_callback) OVERRIDE;
40 virtual void RequestScan(const std::string& type,
41 const base::Closure& callback,
42 const ErrorCallback& error_callback) OVERRIDE;
43 virtual void EnableTechnology(
44 const std::string& type,
45 const base::Closure& callback,
46 const ErrorCallback& error_callback) OVERRIDE;
47 virtual void DisableTechnology(
48 const std::string& type,
49 const base::Closure& callback,
50 const ErrorCallback& error_callback) OVERRIDE;
51 virtual void ConfigureService(
52 const base::DictionaryValue& properties,
53 const ObjectPathCallback& callback,
54 const ErrorCallback& error_callback) OVERRIDE;
55 virtual void ConfigureServiceForProfile(
56 const dbus::ObjectPath& profile_path,
57 const base::DictionaryValue& properties,
58 const ObjectPathCallback& callback,
59 const ErrorCallback& error_callback) OVERRIDE;
60 virtual void GetService(
61 const base::DictionaryValue& properties,
62 const ObjectPathCallback& callback,
63 const ErrorCallback& error_callback) OVERRIDE;
64 virtual void VerifyDestination(const VerificationProperties& properties,
65 const BooleanCallback& callback,
66 const ErrorCallback& error_callback) OVERRIDE;
67 virtual void VerifyAndEncryptCredentials(
68 const VerificationProperties& properties,
69 const std::string& service_path,
70 const StringCallback& callback,
71 const ErrorCallback& error_callback) OVERRIDE;
72 virtual void VerifyAndEncryptData(
73 const VerificationProperties& properties,
74 const std::string& data,
75 const StringCallback& callback,
76 const ErrorCallback& error_callback) OVERRIDE;
77 virtual void ConnectToBestServices(
78 const base::Closure& callback,
79 const ErrorCallback& error_callback) OVERRIDE;
80 virtual ShillManagerClient::TestInterface* GetTestInterface() OVERRIDE;
82 // ShillManagerClient::TestInterface overrides.
83 virtual void AddDevice(const std::string& device_path) OVERRIDE;
84 virtual void RemoveDevice(const std::string& device_path) OVERRIDE;
85 virtual void ClearDevices() OVERRIDE;
86 virtual void AddTechnology(const std::string& type, bool enabled) OVERRIDE;
87 virtual void RemoveTechnology(const std::string& type) OVERRIDE;
88 virtual void SetTechnologyInitializing(const std::string& type,
89 bool initializing) OVERRIDE;
90 virtual void AddGeoNetwork(const std::string& technology,
91 const base::DictionaryValue& network) OVERRIDE;
92 virtual void AddProfile(const std::string& profile_path) OVERRIDE;
93 virtual void ClearProperties() OVERRIDE;
94 virtual void SetManagerProperty(const std::string& key,
95 const base::Value& value) OVERRIDE;
96 virtual void AddManagerService(const std::string& service_path,
97 bool add_to_visible_list,
98 bool add_to_watch_list) OVERRIDE;
99 virtual void RemoveManagerService(const std::string& service_path) OVERRIDE;
100 virtual void ClearManagerServices() OVERRIDE;
101 virtual void ServiceStateChanged(const std::string& service_path,
102 const std::string& state) OVERRIDE;
103 virtual void SortManagerServices() OVERRIDE;
104 virtual void SetupDefaultEnvironment() OVERRIDE;
105 virtual int GetInteractiveDelay() const OVERRIDE;
107 private:
108 void AddServiceToWatchList(const std::string& service_path);
109 void SetDefaultProperties();
110 void PassStubProperties(const DictionaryValueCallback& callback) const;
111 void PassStubGeoNetworks(const DictionaryValueCallback& callback) const;
112 void CallNotifyObserversPropertyChanged(const std::string& property);
113 void NotifyObserversPropertyChanged(const std::string& property);
114 base::ListValue* GetListProperty(const std::string& property);
115 bool TechnologyEnabled(const std::string& type) const;
116 void SetTechnologyEnabled(const std::string& type,
117 const base::Closure& callback,
118 bool enabled);
119 base::ListValue* GetEnabledServiceList(const std::string& property) const;
120 void ScanCompleted(const std::string& device_path,
121 const base::Closure& callback);
123 // Parses the command line for Shill stub switches and sets initial states.
124 // Uses comma-separated name-value pairs (see SplitStringIntoKeyValuePairs):
125 // interactive={delay} - sets delay in seconds for interactive UI
126 // {wifi,cellular,etc}={on,off,disabled,none} - sets initial state for type
127 void ParseCommandLineSwitch();
128 bool ParseOption(const std::string& arg0, const std::string& arg1);
129 bool SetInitialNetworkState(std::string type_arg, std::string state_arg);
130 std::string GetInitialStateForType(const std::string& type,
131 bool* enabled);
133 // Dictionary of property name -> property value
134 base::DictionaryValue stub_properties_;
136 // Dictionary of technology -> list of property dictionaries
137 base::DictionaryValue stub_geo_networks_;
139 // Seconds to delay interactive actions
140 int interactive_delay_;
142 // Initial state for fake services.
143 std::map<std::string, std::string> shill_initial_state_map_;
145 ObserverList<ShillPropertyChangedObserver> observer_list_;
147 // Note: This should remain the last member so it'll be destroyed and
148 // invalidate its weak pointers before any other members are destroyed.
149 base::WeakPtrFactory<FakeShillManagerClient> weak_ptr_factory_;
151 // Track the default service for signaling Manager.DefaultService.
152 std::string default_service_;
154 DISALLOW_COPY_AND_ASSIGN(FakeShillManagerClient);
157 } // namespace chromeos
159 #endif // CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_