blob: dd29b83292b0f4a9145f06f7a39cd079dcc69c5d (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
// Copyright (c) 2011 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_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_TEST_UTIL_H_
#define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_TEST_UTIL_H_
#pragma once
#include <string>
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop.h"
#include "base/string16.h"
#include "chrome/browser/search_engines/template_url_service_observer.h"
#include "chrome/test/base/testing_browser_process.h"
#include "content/browser/browser_thread.h"
class TemplateURLService;
class TemplateURLServiceTestingProfile;
class TestingTemplateURLService;
class TestingProfile;
class WebDataService;
// Implements functionality to make it easier to test TemplateURLService and
// make changes to it.
class TemplateURLServiceTestUtil : public TemplateURLServiceObserver {
public:
TemplateURLServiceTestUtil();
virtual ~TemplateURLServiceTestUtil();
// Sets up the data structures for this class (mirroring gtest standard
// methods).
void SetUp();
// Cleans up data structures for this class (mirroring gtest standard
// methods).
void TearDown();
// TemplateURLServiceObserver implemementation.
virtual void OnTemplateURLServiceChanged();
// Gets the observer count.
int GetObserverCount();
// Sets the observer count to 0.
void ResetObserverCount();
// Blocks the caller until the service has finished servicing all pending
// requests.
static void BlockTillServiceProcessesRequests();
// Blocks the caller until the I/O thread has finished servicing all pending
// requests.
static void BlockTillIOThreadProcessesRequests();
// Makes sure the load was successful and sent the correct notification.
void VerifyLoad();
// Makes the model believe it has been loaded (without actually doing the
// load). Since this avoids setting the built-in keyword version, the next
// load will do a merge from prepopulated data.
void ChangeModelToLoadState();
// Deletes the current model (and doesn't create a new one).
void ClearModel();
// Creates a new TemplateURLService.
void ResetModel(bool verify_load);
// Returns the search term from the last invocation of
// TemplateURLService::SetKeywordSearchTermsForURL and clears the search term.
string16 GetAndClearSearchTerm();
// Set the google base url.
void SetGoogleBaseURL(const std::string& base_url) const;
// Returns the WebDataService.
WebDataService* GetWebDataService();
// Returns the TemplateURLService.
TemplateURLService* model() const;
// Returns the TestingProfile.
TestingProfile* profile() const;
// Starts an I/O thread.
void StartIOThread();
private:
ScopedTestingBrowserProcess browser_process_;
MessageLoopForUI message_loop_;
// Needed to make the DeleteOnUIThread trait of WebDataService work
// properly.
BrowserThread ui_thread_;
scoped_ptr<TemplateURLServiceTestingProfile> profile_;
scoped_ptr<TestingTemplateURLService> model_;
int changed_count_;
DISALLOW_COPY_AND_ASSIGN(TemplateURLServiceTestUtil);
};
#endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_TEST_UTIL_H_
|