blob: 689503f2200fbfb432e7119ec6ccf9970e85e493 [file] [log] [blame]
// Copyright (c) 2013 The Chromium OS 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 CRYPTOHOME_MOCK_SERVICE_H_
#define CRYPTOHOME_MOCK_SERVICE_H_
#include "cryptohome/service.h"
#include "cryptohome/service_monolithic.h"
#include <memory>
#include <string>
#include <base/files/file_path.h>
#include <gmock/gmock.h>
namespace cryptohome {
class MockService : public ServiceMonolithic {
public:
explicit MockService(const std::string& abe_data);
MockService(); // For convenience in unit tests.
virtual ~MockService();
MOCK_METHOD7(Mount, gboolean(const gchar *,
const gchar *,
gboolean,
gboolean,
gint *,
gboolean *,
GError **));
MOCK_METHOD2(Unmount, gboolean(gboolean *, GError **));
MOCK_METHOD2(GetMountPointForUser, bool(const std::string&, base::FilePath*));
MOCK_METHOD1(IsOwner, bool(const std::string&));
};
} // namespace cryptohome
#endif // CRYPTOHOME_MOCK_SERVICE_H_