| 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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 ::testing::Values(false)); | 769 ::testing::Values(false)); |
| 770 | 770 |
| 771 IN_PROC_BROWSER_TEST_P(FileManagerBrowserLocalTest, TestFileDisplay) { | 771 IN_PROC_BROWSER_TEST_P(FileManagerBrowserLocalTest, TestFileDisplay) { |
| 772 DoTestFileDisplay(&volume_); | 772 DoTestFileDisplay(&volume_); |
| 773 } | 773 } |
| 774 | 774 |
| 775 IN_PROC_BROWSER_TEST_P(FileManagerBrowserLocalTest, TestGalleryOpen) { | 775 IN_PROC_BROWSER_TEST_P(FileManagerBrowserLocalTest, TestGalleryOpen) { |
| 776 DoTestGalleryOpen(&volume_); | 776 DoTestGalleryOpen(&volume_); |
| 777 } | 777 } |
| 778 | 778 |
| 779 // Disabled temporarily since fails on Linux Chromium OS ASAN Tests (2). | 779 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestGalleryOpen) { |
| 780 // TODO(mtomasz): crbug.com/243611. | |
| 781 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, DISABLED_TestGalleryOpen) { | |
| 782 DoTestGalleryOpen(&volume_); | 780 DoTestGalleryOpen(&volume_); |
| 783 } | 781 } |
| 784 | 782 |
| 785 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestKeyboardCopy) { | 783 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestKeyboardCopy) { |
| 786 DoTestKeyboardCopy(&volume_); | 784 DoTestKeyboardCopy(&volume_); |
| 787 } | 785 } |
| 788 | 786 |
| 789 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestKeyboardDelete) { | 787 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestKeyboardDelete) { |
| 790 DoTestKeyboardDelete(&volume_); | 788 DoTestKeyboardDelete(&volume_); |
| 791 } | 789 } |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 | 865 |
| 868 // TODO(hirono): Bring back the offline feature. http://crbug.com/238545 | 866 // TODO(hirono): Bring back the offline feature. http://crbug.com/238545 |
| 869 IN_PROC_BROWSER_TEST_P(FileManagerBrowserTransferTest, | 867 IN_PROC_BROWSER_TEST_P(FileManagerBrowserTransferTest, |
| 870 DISABLED_TransferFromOfflineToDrive) { | 868 DISABLED_TransferFromOfflineToDrive) { |
| 871 ResultCatcher catcher; | 869 ResultCatcher catcher; |
| 872 ASSERT_NO_FATAL_FAILURE(StartTest("transferFromOfflineToDrive")); | 870 ASSERT_NO_FATAL_FAILURE(StartTest("transferFromOfflineToDrive")); |
| 873 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message(); | 871 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message(); |
| 874 } | 872 } |
| 875 | 873 |
| 876 } // namespace | 874 } // namespace |
| OLD | NEW |