blob: 2e26dd1b6be37e8635351a1fd39c50022475ff05 [file] [log] [blame]
// Copyright (c) 2013 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.
#ifndef CHROMEOS_DBUS_FAKE_GSM_SMS_CLIENT_H_
#define CHROMEOS_DBUS_FAKE_GSM_SMS_CLIENT_H_
#include <string>
#include "base/memory/weak_ptr.h"
#include "base/values.h"
#include "chromeos/dbus/gsm_sms_client.h"
#include "dbus/object_path.h"
namespace chromeos {
// A fake implementation of GsmSMSClient used for tests.
class CHROMEOS_EXPORT FakeGsmSMSClient : public GsmSMSClient {
public:
FakeGsmSMSClient();
virtual ~FakeGsmSMSClient();
// GsmSMSClient overrides
virtual void Init(dbus::Bus* bus) OVERRIDE;
virtual void SetSmsReceivedHandler(const std::string& service_name,
const dbus::ObjectPath& object_path,
const SmsReceivedHandler& handler)
OVERRIDE;
virtual void ResetSmsReceivedHandler(const std::string& service_name,
const dbus::ObjectPath& object_path)
OVERRIDE;
virtual void Delete(const std::string& service_name,
const dbus::ObjectPath& object_path,
uint32 index,
const DeleteCallback& callback) OVERRIDE;
virtual void Get(const std::string& service_name,
const dbus::ObjectPath& object_path,
uint32 index,
const GetCallback& callback) OVERRIDE;
virtual void List(const std::string& service_name,
const dbus::ObjectPath& object_path,
const ListCallback& callback) OVERRIDE;
virtual void RequestUpdate(const std::string& service_name,
const dbus::ObjectPath& object_path) OVERRIDE;
// Sets if the command line switch for test is present. RequestUpdate()
// changes its behavior depending on the switch.
void set_sms_test_message_switch_present(bool is_present) {
sms_test_message_switch_present_ = is_present;
}
private:
void PushTestMessageChain();
void PushTestMessageDelayed();
bool PushTestMessage();
int test_index_;
std::vector<std::string> test_messages_;
base::ListValue message_list_;
SmsReceivedHandler handler_;
bool sms_test_message_switch_present_;
base::WeakPtrFactory<FakeGsmSMSClient> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(FakeGsmSMSClient);
};
} // namespace chromeos
#endif // CHROMEOS_DBUS_FAKE_GSM_SMS_CLIENT_H_