| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
| 7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 }; | 108 }; |
| 109 | 109 |
| 110 TEST_F(SandboxedUnpackerTest, NoCatalogsSuccess) { | 110 TEST_F(SandboxedUnpackerTest, NoCatalogsSuccess) { |
| 111 SetupUnpacker("no_l10n.crx"); | 111 SetupUnpacker("no_l10n.crx"); |
| 112 // Check that there is no _locales folder. | 112 // Check that there is no _locales folder. |
| 113 base::FilePath install_path = | 113 base::FilePath install_path = |
| 114 GetInstallPath().Append(kLocaleFolder); | 114 GetInstallPath().Append(kLocaleFolder); |
| 115 EXPECT_FALSE(base::PathExists(install_path)); | 115 EXPECT_FALSE(base::PathExists(install_path)); |
| 116 } | 116 } |
| 117 | 117 |
| 118 TEST_F(SandboxedUnpackerTest, WithCatalogsSuccess) { | 118 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(USE_AURA) |
| 119 // Consistently times out. |
| 120 // TODO(erg): linux_aura bringup: http://crbug.com/163931 |
| 121 #define MAYBE_WithCatalogsSuccess DISABLED_WithCatalogsSuccess |
| 122 #else |
| 123 #define MAYBE_WithCatalogsSuccess WithCatalogsSuccess |
| 124 #endif |
| 125 |
| 126 TEST_F(SandboxedUnpackerTest, MAYBE_WithCatalogsSuccess) { |
| 119 SetupUnpacker("good_l10n.crx"); | 127 SetupUnpacker("good_l10n.crx"); |
| 120 // Check that there is _locales folder. | 128 // Check that there is _locales folder. |
| 121 base::FilePath install_path = | 129 base::FilePath install_path = |
| 122 GetInstallPath().Append(kLocaleFolder); | 130 GetInstallPath().Append(kLocaleFolder); |
| 123 EXPECT_TRUE(base::PathExists(install_path)); | 131 EXPECT_TRUE(base::PathExists(install_path)); |
| 124 } | 132 } |
| 125 | 133 |
| 126 } // namespace extensions | 134 } // namespace extensions |
| OLD | NEW |