OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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/callback.h" | 5 #include "base/callback.h" |
6 #include "base/logging.h" | 6 #include "base/logging.h" |
7 #include "base/macros.h" | 7 #include "base/macros.h" |
8 #include "base/strings/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
9 #include "chrome/browser/apps/app_browsertest_util.h" | 9 #include "chrome/browser/apps/app_browsertest_util.h" |
10 #include "chrome/test/base/interactive_test_utils.h" | 10 #include "chrome/test/base/interactive_test_utils.h" |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 #define MAYBE_InterceptDisabledByDefault DISABLED_InterceptDisabledByDefault | 213 #define MAYBE_InterceptDisabledByDefault DISABLED_InterceptDisabledByDefault |
214 #endif | 214 #endif |
215 | 215 |
216 IN_PROC_BROWSER_TEST_F(AppWindowInterceptAllKeysTest, | 216 IN_PROC_BROWSER_TEST_F(AppWindowInterceptAllKeysTest, |
217 MAYBE_InterceptDisabledByDefault) { | 217 MAYBE_InterceptDisabledByDefault) { |
218 ValidateCannotInterceptKeys(app_with_permission_, false, false); | 218 ValidateCannotInterceptKeys(app_with_permission_, false, false); |
219 } | 219 } |
220 | 220 |
221 // Tests that the application cannot be loaded in stable. | 221 // Tests that the application cannot be loaded in stable. |
222 IN_PROC_BROWSER_TEST_F(AppWindowInterceptAllKeysTest, CannotLoadOtherThanDev) { | 222 IN_PROC_BROWSER_TEST_F(AppWindowInterceptAllKeysTest, CannotLoadOtherThanDev) { |
223 chrome::VersionInfo::Channel version_info[] = { | 223 version_info::Channel version_info[] = { |
224 chrome::VersionInfo::CHANNEL_BETA, chrome::VersionInfo::CHANNEL_STABLE}; | 224 version_info::Channel::BETA, version_info::Channel::STABLE}; |
225 for (unsigned int index = 0; index < arraysize(version_info); index++) { | 225 for (unsigned int index = 0; index < arraysize(version_info); index++) { |
226 extensions::ScopedCurrentChannel channel(version_info[index]); | 226 extensions::ScopedCurrentChannel channel(version_info[index]); |
227 const extensions::Extension* extension = nullptr; | 227 const extensions::Extension* extension = nullptr; |
228 EXPECT_NONFATAL_FAILURE( | 228 EXPECT_NONFATAL_FAILURE( |
229 extension = LoadExtension(test_data_dir_.AppendASCII("platform_apps") | 229 extension = LoadExtension(test_data_dir_.AppendASCII("platform_apps") |
230 .AppendASCII(app_with_permission_)), | 230 .AppendASCII(app_with_permission_)), |
231 ""); | 231 ""); |
232 | 232 |
233 DVLOG(1) << "Finished loading extension"; | 233 DVLOG(1) << "Finished loading extension"; |
234 | 234 |
235 ASSERT_TRUE(extension == nullptr) << "Application loaded in" | 235 ASSERT_TRUE(extension == nullptr) << "Application loaded in" |
236 << version_info[index] | 236 << static_cast<int>(version_info[index]) |
237 << " while permission does not exist"; | 237 << " while permission does not exist"; |
238 } | 238 } |
239 } | 239 } |
240 | 240 |
241 // Inject different keyboard combos and make sure that the app get them all. | 241 // Inject different keyboard combos and make sure that the app get them all. |
242 // Disabled test http://crbug.com/438209 | 242 // Disabled test http://crbug.com/438209 |
243 #if defined(OS_WIN) | 243 #if defined(OS_WIN) |
244 #define MAYBE_ValidateKeyEvent DISABLED_ValidateKeyEvent | 244 #define MAYBE_ValidateKeyEvent DISABLED_ValidateKeyEvent |
245 #else | 245 #else |
246 #define MAYBE_ValidateKeyEvent DISABLED_ValidateKeyEvent | 246 #define MAYBE_ValidateKeyEvent DISABLED_ValidateKeyEvent |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 new ExtensionTestMessageListener(current_event->result[i], false)); | 355 new ExtensionTestMessageListener(current_event->result[i], false)); |
356 } | 356 } |
357 ASSERT_TRUE(SimulateKeyPress(current_event->key, current_event->control, | 357 ASSERT_TRUE(SimulateKeyPress(current_event->key, current_event->control, |
358 current_event->shift, current_event->alt, | 358 current_event->shift, current_event->alt, |
359 current_event->command)); | 359 current_event->command)); |
360 for (int i = 0; i < current_event->result_length; i++) { | 360 for (int i = 0; i < current_event->result_length; i++) { |
361 EXPECT_TRUE(listeners[i]->WaitUntilSatisfied()); | 361 EXPECT_TRUE(listeners[i]->WaitUntilSatisfied()); |
362 } | 362 } |
363 } | 363 } |
364 } | 364 } |
OLD | NEW |