1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// 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.
#ifndef CHROME_BROWSER_CHROMEOS_CRYPTOHOME_MOCK_ASYNC_METHOD_CALLER_H_
#define CHROME_BROWSER_CHROMEOS_CRYPTOHOME_MOCK_ASYNC_METHOD_CALLER_H_
#pragma once
#include <string>
#include "base/basictypes.h"
#include "chrome/browser/chromeos/cryptohome/async_method_caller.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace cryptohome {
class MockAsyncMethodCaller : public AsyncMethodCaller {
public:
MockAsyncMethodCaller();
virtual ~MockAsyncMethodCaller();
void SetUp(bool success, MountError return_code);
MOCK_METHOD3(AsyncCheckKey, void(const std::string& user_email,
const std::string& passhash,
Callback callback));
MOCK_METHOD4(AsyncMigrateKey, void(const std::string& user_email,
const std::string& old_hash,
const std::string& new_hash,
Callback callback));
MOCK_METHOD4(AsyncMount, void(const std::string& user_email,
const std::string& passhash,
const bool create_if_missing,
Callback callback));
MOCK_METHOD1(AsyncMountGuest, void(Callback callback));
MOCK_METHOD2(AsyncRemove, void(const std::string& user_email,
Callback callback));
private:
bool success_;
MountError return_code_;
void DoCallback(Callback callback);
DISALLOW_COPY_AND_ASSIGN(MockAsyncMethodCaller);
};
} // namespace cryptohome
#endif // CHROME_BROWSER_CHROMEOS_CRYPTOHOME_MOCK_ASYNC_METHOD_CALLER_H_
|