| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 // Browser test for basic Chrome OS file manager functionality: | 5 // Browser test for basic Chrome OS file manager functionality: |
| 6 // - The file list is updated when a file is added externally to the Downloads | 6 // - The file list is updated when a file is added externally to the Downloads |
| 7 // folder. | 7 // folder. |
| 8 // - Selecting a file and copy-pasting it with the keyboard copies the file. | 8 // - Selecting a file and copy-pasting it with the keyboard copies the file. |
| 9 // - Selecting a file and pressing delete deletes it. | 9 // - Selecting a file and pressing delete deletes it. |
| 10 | 10 |
| (...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 920 #define MAYBE_DriveSpecific DriveSpecific | 920 #define MAYBE_DriveSpecific DriveSpecific |
| 921 #endif | 921 #endif |
| 922 WRAPPED_INSTANTIATE_TEST_CASE_P( | 922 WRAPPED_INSTANTIATE_TEST_CASE_P( |
| 923 MAYBE_DriveSpecific, | 923 MAYBE_DriveSpecific, |
| 924 FileManagerBrowserTest, | 924 FileManagerBrowserTest, |
| 925 ::testing::Values( | 925 ::testing::Values( |
| 926 TestParameter(NOT_IN_GUEST_MODE, "openSidebarRecent"), | 926 TestParameter(NOT_IN_GUEST_MODE, "openSidebarRecent"), |
| 927 TestParameter(NOT_IN_GUEST_MODE, "openSidebarOffline"), | 927 TestParameter(NOT_IN_GUEST_MODE, "openSidebarOffline"), |
| 928 TestParameter(NOT_IN_GUEST_MODE, "openSidebarSharedWithMe"), | 928 TestParameter(NOT_IN_GUEST_MODE, "openSidebarSharedWithMe"), |
| 929 TestParameter(NOT_IN_GUEST_MODE, "autocomplete"), | 929 TestParameter(NOT_IN_GUEST_MODE, "autocomplete"), |
| 930 TestParameter(NOT_IN_GUEST_MODE, "pinFileOnMobileNetwork"))); | 930 TestParameter(NOT_IN_GUEST_MODE, "pinFileOnMobileNetwork"), |
| 931 TestParameter(NOT_IN_GUEST_MODE, "clickFirstSearchResult"), |
| 932 TestParameter(NOT_IN_GUEST_MODE, "pressEnterToSearch"))); |
| 931 | 933 |
| 932 // Slow tests are disabled on debug build. http://crbug.com/327719 | 934 // Slow tests are disabled on debug build. http://crbug.com/327719 |
| 933 // Fails on official build. http://crbug.com/429294 | 935 // Fails on official build. http://crbug.com/429294 |
| 934 #if !defined(NDEBUG) || defined(OFFICIAL_BUILD) | 936 #if !defined(NDEBUG) || defined(OFFICIAL_BUILD) |
| 935 #define MAYBE_Transfer DISABLED_Transfer | 937 #define MAYBE_Transfer DISABLED_Transfer |
| 936 #else | 938 #else |
| 937 #define MAYBE_Transfer Transfer | 939 #define MAYBE_Transfer Transfer |
| 938 #endif | 940 #endif |
| 939 WRAPPED_INSTANTIATE_TEST_CASE_P( | 941 WRAPPED_INSTANTIATE_TEST_CASE_P( |
| 940 MAYBE_Transfer, | 942 MAYBE_Transfer, |
| (...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1508 StartTest(); | 1510 StartTest(); |
| 1509 } | 1511 } |
| 1510 | 1512 |
| 1511 IN_PROC_BROWSER_TEST_F(VideoPlayerBrowserTest, OpenSingleVideoOnDrive) { | 1513 IN_PROC_BROWSER_TEST_F(VideoPlayerBrowserTest, OpenSingleVideoOnDrive) { |
| 1512 set_test_case_name("openSingleVideoOnDrive"); | 1514 set_test_case_name("openSingleVideoOnDrive"); |
| 1513 StartTest(); | 1515 StartTest(); |
| 1514 } | 1516 } |
| 1515 | 1517 |
| 1516 } // namespace | 1518 } // namespace |
| 1517 } // namespace file_manager | 1519 } // namespace file_manager |
| OLD | NEW |