Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / test / content_test_suite.cc
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.
4
5 #include "content/test/content_test_suite.h"
6
7 #include "base/base_paths.h"
8 #include "base/logging.h"
9 #include "content/public/common/content_client.h"
10 #include "content/public/common/content_paths.h"
11 #include "content/public/test/test_content_client_initializer.h"
12 #include "gpu/config/gpu_util.h"
13 #include "testing/gtest/include/gtest/gtest.h"
14
15 #if defined(OS_WIN)
16 #include "ui/gfx/win/dpi.h"
17 #endif
18
19 #if defined(OS_MACOSX)
20 #include "base/mac/scoped_nsautorelease_pool.h"
21 #if !defined(OS_IOS)
22 #include "base/test/mock_chrome_application_mac.h"
23 #endif
24 #endif
25
26 #if !defined(OS_IOS)
27 #include "base/base_switches.h"
28 #include "base/command_line.h"
29 #include "media/base/media.h"
30 #include "ui/gl/gl_surface.h"
31 #endif
32
33 namespace {
34
35 class TestInitializationListener : public testing::EmptyTestEventListener {
36  public:
37   TestInitializationListener() : test_content_client_initializer_(NULL) {
38   }
39
40   virtual void OnTestStart(const testing::TestInfo& test_info) override {
41     test_content_client_initializer_ =
42         new content::TestContentClientInitializer();
43   }
44
45   virtual void OnTestEnd(const testing::TestInfo& test_info) override {
46     delete test_content_client_initializer_;
47   }
48
49  private:
50   content::TestContentClientInitializer* test_content_client_initializer_;
51
52   DISALLOW_COPY_AND_ASSIGN(TestInitializationListener);
53 };
54
55 }  // namespace
56
57 namespace content {
58
59 ContentTestSuite::ContentTestSuite(int argc, char** argv)
60     : ContentTestSuiteBase(argc, argv) {
61 }
62
63 ContentTestSuite::~ContentTestSuite() {
64 }
65
66 void ContentTestSuite::Initialize() {
67 #if defined(OS_MACOSX)
68   base::mac::ScopedNSAutoreleasePool autorelease_pool;
69 #if !defined(OS_IOS)
70   mock_cr_app::RegisterMockCrApp();
71 #endif
72 #endif
73
74 #if defined(OS_WIN)
75   gfx::InitDeviceScaleFactor(1.0f);
76 #endif
77
78   ContentTestSuiteBase::Initialize();
79   {
80     ContentClient client;
81     ContentTestSuiteBase::RegisterContentSchemes(&client);
82   }
83   RegisterPathProvider();
84 #if !defined(OS_IOS)
85   media::InitializeMediaLibraryForTesting();
86   // When running in a child process for Mac sandbox tests, the sandbox exists
87   // to initialize GL, so don't do it here.
88   if (!CommandLine::ForCurrentProcess()->HasSwitch(
89       switches::kTestChildProcess)) {
90     gfx::GLSurface::InitializeOneOffForTests();
91     gpu::ApplyGpuDriverBugWorkarounds(CommandLine::ForCurrentProcess());
92   }
93 #endif
94   testing::TestEventListeners& listeners =
95       testing::UnitTest::GetInstance()->listeners();
96   listeners.Append(new TestInitializationListener);
97 }
98
99 }  // namespace content