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_
10 #include "base/basictypes.h"
11 #include "base/callback.h"
12 #include "chromeos/chromeos_export.h"
13 #include "chromeos/dbus/shill_manager_client.h"
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
{
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
) OVERRIDE
;
98 virtual void RemoveManagerService(const std::string
& service_path
,
99 bool remove_from_complete_list
) 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
;
106 virtual void SetBestServiceToConnect(
107 const std::string
& service_path
) OVERRIDE
;
109 // Constants used for testing.
110 static const char kFakeEthernetNetworkPath
[];
113 // |property| should be kServicesProperty or kServiceCompleteListProperty.
114 void SortServiceList(const std::string
& property
);
116 void SetDefaultProperties();
117 void PassStubProperties(const DictionaryValueCallback
& callback
) const;
118 void PassStubGeoNetworks(const DictionaryValueCallback
& callback
) const;
119 void CallNotifyObserversPropertyChanged(const std::string
& property
);
120 void NotifyObserversPropertyChanged(const std::string
& property
);
121 base::ListValue
* GetListProperty(const std::string
& property
);
122 bool TechnologyEnabled(const std::string
& type
) const;
123 void SetTechnologyEnabled(const std::string
& type
,
124 const base::Closure
& callback
,
126 base::ListValue
* GetEnabledServiceList(const std::string
& property
) const;
127 void ScanCompleted(const std::string
& device_path
,
128 const base::Closure
& callback
);
130 // Parses the command line for Shill stub switches and sets initial states.
131 // Uses comma-separated name-value pairs (see SplitStringIntoKeyValuePairs):
132 // interactive={delay} - sets delay in seconds for interactive UI
133 // {wifi,cellular,etc}={on,off,disabled,none} - sets initial state for type
134 void ParseCommandLineSwitch();
135 bool ParseOption(const std::string
& arg0
, const std::string
& arg1
);
136 bool SetInitialNetworkState(std::string type_arg
, std::string state_arg
);
137 std::string
GetInitialStateForType(const std::string
& type
,
140 // Dictionary of property name -> property value
141 base::DictionaryValue stub_properties_
;
143 // Dictionary of technology -> list of property dictionaries
144 base::DictionaryValue stub_geo_networks_
;
146 // Seconds to delay interactive actions
147 int interactive_delay_
;
149 // Initial state for fake services.
150 std::map
<std::string
, std::string
> shill_initial_state_map_
;
152 ObserverList
<ShillPropertyChangedObserver
> observer_list_
;
154 // Note: This should remain the last member so it'll be destroyed and
155 // invalidate its weak pointers before any other members are destroyed.
156 base::WeakPtrFactory
<FakeShillManagerClient
> weak_ptr_factory_
;
158 // Track the default service for signaling Manager.DefaultService.
159 std::string default_service_
;
161 // 'Best' service to connect to on ConnectToBestServices() calls.
162 std::string best_service_
;
164 DISALLOW_COPY_AND_ASSIGN(FakeShillManagerClient
);
167 } // namespace chromeos
169 #endif // CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_