1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_SEARCH_ENGINES_HELPER_H_
6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_SEARCH_ENGINES_HELPER_H_
11 #include "base/strings/string16.h"
15 class TemplateURLService
;
17 typedef std::map
<std::string
, const TemplateURL
*> GUIDToTURLMap
;
19 namespace search_engines_helper
{
21 // Used to access the search engines within a particular sync profile.
22 TemplateURLService
* GetServiceForBrowserContext(int profile_index
);
24 // Used to access the search engines within the verifier sync profile.
25 TemplateURLService
* GetVerifierService();
27 // Compared a single TemplateURLService for a given profile to the verifier.
28 // Retrns true iff their user-visible fields match.
29 bool ServiceMatchesVerifier(int profile_index
);
31 // Returns true iff all TemplateURLServices match with the verifier.
32 bool AllServicesMatch();
34 // Create a TemplateURL with some test values based on |seed|. The caller owns
35 // the returned TemplateURL*.
36 TemplateURL
* CreateTestTemplateURL(Profile
* profile
,
38 const base::string16
& keyword
,
39 const std::string
& sync_guid
);
40 TemplateURL
* CreateTestTemplateURL(Profile
* profile
,
42 const base::string16
& keyword
,
43 const std::string
& url
,
44 const std::string
& sync_guid
);
46 // Add a search engine based on a seed to the service at index |profile_index|
47 // and the verifier if it is used.
48 void AddSearchEngine(int profile_index
, int seed
);
50 // Retrieves a search engine from the service at index |profile_index| with
51 // original keyword |keyword| and changes its user-visible fields. Does the same
52 // to the verifier, if it is used.
53 void EditSearchEngine(int profile_index
,
54 const base::string16
& keyword
,
55 const base::string16
& short_name
,
56 const base::string16
& new_keyword
,
57 const std::string
& url
);
59 // Deletes a search engine from the service at index |profile_index| which was
60 // generated by seed |seed|.
61 void DeleteSearchEngineBySeed(int profile_index
, int seed
);
63 // Change the search engine generated with |seed| in service at index
64 // |profile_index| to be the new default. Does the same to the verifier, if it
66 void ChangeDefaultSearchProvider(int profile_index
, int seed
);
68 } // namespace search_engines_helper
70 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_SEARCH_ENGINES_HELPER_H_