Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(666)

Side by Side Diff: chrome/browser/chromeos/file_manager/file_manager_browsertest.cc

Issue 216513004: Files.app: Add a test to create new folder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/foreground/js/file_manager.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 744
745 INSTANTIATE_TEST_CASE_P( 745 INSTANTIATE_TEST_CASE_P(
746 KeyboardOperations, 746 KeyboardOperations,
747 FileManagerBrowserTest, 747 FileManagerBrowserTest,
748 ::testing::Values(TestParameter(IN_GUEST_MODE, "keyboardDeleteDownloads"), 748 ::testing::Values(TestParameter(IN_GUEST_MODE, "keyboardDeleteDownloads"),
749 TestParameter(NOT_IN_GUEST_MODE, 749 TestParameter(NOT_IN_GUEST_MODE,
750 "keyboardDeleteDownloads"), 750 "keyboardDeleteDownloads"),
751 TestParameter(NOT_IN_GUEST_MODE, "keyboardDeleteDrive"), 751 TestParameter(NOT_IN_GUEST_MODE, "keyboardDeleteDrive"),
752 TestParameter(IN_GUEST_MODE, "keyboardCopyDownloads"), 752 TestParameter(IN_GUEST_MODE, "keyboardCopyDownloads"),
753 TestParameter(NOT_IN_GUEST_MODE, "keyboardCopyDownloads"), 753 TestParameter(NOT_IN_GUEST_MODE, "keyboardCopyDownloads"),
754 TestParameter(NOT_IN_GUEST_MODE, "keyboardCopyDrive"))); 754 TestParameter(NOT_IN_GUEST_MODE, "keyboardCopyDrive"),
755 TestParameter(IN_GUEST_MODE,
756 "createNewFolderDownloads"),
757 TestParameter(NOT_IN_GUEST_MODE,
758 "createNewFolderDownloads"),
759 TestParameter(NOT_IN_GUEST_MODE,
760 "createNewFolderDrive")));
755 761
756 INSTANTIATE_TEST_CASE_P( 762 INSTANTIATE_TEST_CASE_P(
757 DriveSpecific, 763 DriveSpecific,
758 FileManagerBrowserTest, 764 FileManagerBrowserTest,
759 ::testing::Values(TestParameter(NOT_IN_GUEST_MODE, "openSidebarRecent"), 765 ::testing::Values(TestParameter(NOT_IN_GUEST_MODE, "openSidebarRecent"),
760 TestParameter(NOT_IN_GUEST_MODE, "openSidebarOffline"), 766 TestParameter(NOT_IN_GUEST_MODE, "openSidebarOffline"),
761 TestParameter(NOT_IN_GUEST_MODE, 767 TestParameter(NOT_IN_GUEST_MODE,
762 "openSidebarSharedWithMe"), 768 "openSidebarSharedWithMe"),
763 TestParameter(NOT_IN_GUEST_MODE, "autocomplete"))); 769 TestParameter(NOT_IN_GUEST_MODE, "autocomplete")));
764 770
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
1044 // (bob and charlie) are added in the test. Thus the existing test verifies 1050 // (bob and charlie) are added in the test. Thus the existing test verifies
1045 // that the feature is effectively working with lastly logged in users. 1051 // that the feature is effectively working with lastly logged in users.
1046 AddExtraUsersForStressTesting(); 1052 AddExtraUsersForStressTesting();
1047 1053
1048 set_test_case_name("multiProfileVisitDesktopMenu"); 1054 set_test_case_name("multiProfileVisitDesktopMenu");
1049 StartTest(); 1055 StartTest();
1050 } 1056 }
1051 1057
1052 } // namespace 1058 } // namespace
1053 } // namespace file_manager 1059 } // namespace file_manager
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/foreground/js/file_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698