blob: a393852404f7b5d52b1ce216c2de8221e7fbb19f (
plain)
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
51
52
53
54
55
56
57
|
// Copyright (c) 2010 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_POLICY_ASYNCHRONOUS_POLICY_TEST_BASE_H_
#define CHROME_BROWSER_POLICY_ASYNCHRONOUS_POLICY_TEST_BASE_H_
#pragma once
#include "base/message_loop.h"
#include "chrome/browser/policy/asynchronous_policy_provider.h"
#include "content/browser/browser_thread.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace policy {
class MockConfigurationPolicyStore;
// A delegate for testing that can feed arbitrary information to the loader.
class ProviderDelegateMock : public AsynchronousPolicyProvider::Delegate {
public:
ProviderDelegateMock();
virtual ~ProviderDelegateMock();
MOCK_METHOD0(Load, DictionaryValue*());
private:
DISALLOW_COPY_AND_ASSIGN(ProviderDelegateMock);
};
class AsynchronousPolicyTestBase : public testing::Test {
public:
AsynchronousPolicyTestBase();
virtual ~AsynchronousPolicyTestBase();
// testing::Test:
virtual void SetUp();
virtual void TearDown();
protected:
MessageLoop loop_;
// The mocks that are used in the test must outlive the scope of the test
// because they still get accessed in the RunAllPending of the TearDown.
scoped_ptr<MockConfigurationPolicyStore> store_;
scoped_ptr<ProviderDelegateMock> delegate_;
private:
BrowserThread ui_thread_;
BrowserThread file_thread_;
DISALLOW_COPY_AND_ASSIGN(AsynchronousPolicyTestBase);
};
} // namespace policy
#endif // CHROME_BROWSER_POLICY_ASYNCHRONOUS_POLICY_TEST_BASE_H_
|