Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1030)

Side by Side Diff: chrome/browser/translate/translate_browser_test_utils.h

Issue 285293004: Allow browser tests to run with dynamic CLD data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cld_uma
Patch Set: Yet more #ifdefs for compiler cleanliness Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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.
4
5 #ifndef CHROME_BROWSER_TRANSLATE_TRANSLATE_BROWSER_TEST_UTILS_H_
6 #define CHROME_BROWSER_TRANSLATE_TRANSLATE_BROWSER_TEST_UTILS_H_
7
8 #include "base/macros.h"
9
10 namespace test {
11
12 // A utility class that sets up CLD dynamic data upon calling Init() and cleans
13 // it up when destroyed.
14 //
15 // This class is intended to be instantiated within IN_PROC_BROWSER_TEST_F
16 // test fixtures; it uses ASSERT macros for correctness, so that tests will
17 // fail gracefully in error conditions. Sample use:
18 //
19 // #include "chrome/browser/translate/translate_browser_test_utils.h"
20 //
21 // IN_PROC_BROWSER_TEST_F(BrowserTest, PageLanguageDetection) {
22 // test::ScopedCLDDynamicDataHarness dynamic_data_scope;
23 // ASSERT_NO_FATAL_FAILURE(dynamic_data_scope.Init());
24 // // ... your code that depends on language detection goes here
25 // }
26 //
27 // If you have a lot of tests that need language translation features, you can
28 // add an instance of the ScopedCLDDynamicDataHarness to your test class'
29 // private member variables and add the call to Init() into your Setup method.
30 //
31 // NB: Test data lives under src/chrome/test/data/cld2_component
32 class ScopedCLDDynamicDataHarness {
33 public:
34 // Constructs the object, but does nothing. Call Init() to prepare the
35 // harness, and enclose that call in ASSERT_NO_FATAL_FAILURE(...).
36 ScopedCLDDynamicDataHarness();
37
38 // Reverses the work done by the constructor: any files and/or directories
39 // that would be created by the constructor are immediately and irrevocably
40 // deleted.
41 // If dynamic data is not currently available for any reason, this method has
42 // no net effect on the runtime.
43 ~ScopedCLDDynamicDataHarness();
44
45 // Call this method, wrapping it in ASSERT_NO_FATAL_FAILURE, to initialize
46 // the harness and trigger test failure of initialization fails.
47 void Init();
48
49 private:
50 void ClearStandaloneDataFileState();
51
52 DISALLOW_COPY_AND_ASSIGN(ScopedCLDDynamicDataHarness);
53 };
54
55 } // namespace test
56
57 #endif // CHROME_BROWSER_TRANSLATE_TRANSLATE_BROWSER_TEST_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698