Chromium Code Reviews| 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 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 786 IN_PROC_BROWSER_TEST_P(FileManagerBrowserLocalTest, TestFileDisplay) { | 786 IN_PROC_BROWSER_TEST_P(FileManagerBrowserLocalTest, TestFileDisplay) { |
| 787 PrepareVolume(); | 787 PrepareVolume(); |
| 788 DoTestFileDisplay(&volume_); | 788 DoTestFileDisplay(&volume_); |
| 789 } | 789 } |
| 790 | 790 |
| 791 IN_PROC_BROWSER_TEST_P(FileManagerBrowserLocalTest, TestGalleryOpen) { | 791 IN_PROC_BROWSER_TEST_P(FileManagerBrowserLocalTest, TestGalleryOpen) { |
| 792 PrepareVolume(); | 792 PrepareVolume(); |
| 793 DoTestGalleryOpen(&volume_); | 793 DoTestGalleryOpen(&volume_); |
| 794 } | 794 } |
| 795 | 795 |
| 796 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestGalleryOpen) { | 796 // Disabled temporarily since fails on Linux Chromium OS ASAN Tests (2). |
| 797 // TODO(mtomasz): crbug.com/243611. | |
|
Dan Beam
2013/05/24 04:27:06
you could do OS_CHROMEOS if you want...
| |
| 798 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, DISABLED_TestGalleryOpen) { | |
| 797 PrepareVolume(); | 799 PrepareVolume(); |
| 798 DoTestGalleryOpen(&volume_); | 800 DoTestGalleryOpen(&volume_); |
| 799 } | 801 } |
| 800 | 802 |
| 801 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestKeyboardCopy) { | 803 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestKeyboardCopy) { |
| 802 PrepareVolume(); | 804 PrepareVolume(); |
| 803 DoTestKeyboardCopy(&volume_); | 805 DoTestKeyboardCopy(&volume_); |
| 804 } | 806 } |
| 805 | 807 |
| 806 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestKeyboardDelete) { | 808 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestKeyboardDelete) { |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 897 // TODO(hirono): Bring back the offline feature. http://crbug.com/238545 | 899 // TODO(hirono): Bring back the offline feature. http://crbug.com/238545 |
| 898 IN_PROC_BROWSER_TEST_P(FileManagerBrowserTransferTest, | 900 IN_PROC_BROWSER_TEST_P(FileManagerBrowserTransferTest, |
| 899 DISABLED_TransferFromOfflineToDrive) { | 901 DISABLED_TransferFromOfflineToDrive) { |
| 900 PrepareVolume(); | 902 PrepareVolume(); |
| 901 ResultCatcher catcher; | 903 ResultCatcher catcher; |
| 902 StartTest("transferFromOfflineToDrive"); | 904 StartTest("transferFromOfflineToDrive"); |
| 903 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message(); | 905 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message(); |
| 904 } | 906 } |
| 905 | 907 |
| 906 } // namespace | 908 } // namespace |
| OLD | NEW |