Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-03-15 01:30:05 +0300
committerGitHub <noreply@github.com>2019-03-15 01:30:05 +0300
commitbfe2c19512fb4e5b4c545e2a0a2aee3409ca0274 (patch)
treeed792bf260f0e8ce9038712c01c68824c8687448 /tests
parent45e106ce013cfe491a8ebf756f4a8202e26e11a2 (diff)
parent1d938947e19655754fffd4d8bc3d37a138b0e855 (diff)
Merge pull request #14681 from nextcloud/forwardport/noid/fragile-tests
Disable fragile tests - part 2
Diffstat (limited to 'tests')
-rw-r--r--tests/acceptance/features/app-comments.feature12
-rw-r--r--tests/acceptance/features/app-files.feature72
-rw-r--r--tests/acceptance/features/apps.feature32
3 files changed, 58 insertions, 58 deletions
diff --git a/tests/acceptance/features/app-comments.feature b/tests/acceptance/features/app-comments.feature
index 25d1f639712..b57883d8ba8 100644
--- a/tests/acceptance/features/app-comments.feature
+++ b/tests/acceptance/features/app-comments.feature
@@ -1,11 +1,11 @@
Feature: app-comments
- Scenario: Writing a comment
- Given I am logged in
- And I open the details view for "welcome.txt"
- And I open the "Comments" tab in the details view
- When I create a new comment with "Hello world" as message
- Then I see a comment with "Hello world" as message
+# Scenario: Writing a comment
+# Given I am logged in
+# And I open the details view for "welcome.txt"
+# And I open the "Comments" tab in the details view
+# When I create a new comment with "Hello world" as message
+# Then I see a comment with "Hello world" as message
# Scenario: open the comments for a different file
# Given I am logged in
diff --git a/tests/acceptance/features/app-files.feature b/tests/acceptance/features/app-files.feature
index fb7e7ee1be9..1117815ddab 100644
--- a/tests/acceptance/features/app-files.feature
+++ b/tests/acceptance/features/app-files.feature
@@ -112,16 +112,16 @@ Feature: app-files
Then I see that the current section is "Shares"
Then I see that the file list contains a file named "welcome.txt"
- Scenario: show shares for a second time
- Given I am logged in
- And I open the "Shares" section
- And I see that the current section is "Shares"
- And I open the "All files" section
- And I see that the current section is "All files"
- And I share the link for "welcome.txt"
- When I open the "Shares" section
- Then I see that the current section is "Shares"
- Then I see that the file list contains a file named "welcome.txt"
+# Scenario: show shares for a second time
+# Given I am logged in
+# And I open the "Shares" section
+# And I see that the current section is "Shares"
+# And I open the "All files" section
+# And I see that the current section is "All files"
+# And I share the link for "welcome.txt"
+# When I open the "Shares" section
+# Then I see that the current section is "Shares"
+# Then I see that the file list contains a file named "welcome.txt"
# Scenario: show deleted files
# Given I am logged in
@@ -182,26 +182,26 @@ Feature: app-files
# And I open the Files app
# And I see that the file list contains a file named "welcome.txt"
- Scenario: copy a selection to another folder
- Given I am logged in
- And I create a new folder named "Folder"
- And I create a new folder named "Not selected folder"
- And I create a new folder named "Destination"
- When I select "welcome.txt"
- And I select "Folder"
- And I start the move or copy operation for the selected files
- And I select "Destination" in the file picker
- And I copy to the last selected folder in the file picker
- Then I enter in the folder named "Destination"
- # The files will appear in the destination once the copy operation finishes
- And I see that the file list contains a file named "welcome.txt"
- And I see that the file list contains a file named "Folder"
- And I see that the file list does not contain a file named "Not selected folder"
- # The Files app is open again to reload the file list in the root folder
- And I open the Files app
- And I see that the file list contains a file named "welcome.txt"
- And I see that the file list contains a file named "Folder"
- And I see that the file list contains a file named "Not selected folder"
+# Scenario: copy a selection to another folder
+# Given I am logged in
+# And I create a new folder named "Folder"
+# And I create a new folder named "Not selected folder"
+# And I create a new folder named "Destination"
+# When I select "welcome.txt"
+# And I select "Folder"
+# And I start the move or copy operation for the selected files
+# And I select "Destination" in the file picker
+# And I copy to the last selected folder in the file picker
+# Then I enter in the folder named "Destination"
+# # The files will appear in the destination once the copy operation finishes
+# And I see that the file list contains a file named "welcome.txt"
+# And I see that the file list contains a file named "Folder"
+# And I see that the file list does not contain a file named "Not selected folder"
+# # The Files app is open again to reload the file list in the root folder
+# And I open the Files app
+# And I see that the file list contains a file named "welcome.txt"
+# And I see that the file list contains a file named "Folder"
+# And I see that the file list contains a file named "Not selected folder"
Scenario: copy a file in its same folder
Given I am logged in
@@ -236,12 +236,12 @@ Feature: app-files
And I see that the file list contains a file named "welcome (copy).txt"
And I see that the file list contains a file named "welcome (copy 2).txt"
- Scenario: rename a file with the details view open
- Given I am logged in
- And I open the details view for "welcome.txt"
- When I rename "welcome.txt" to "farewell.txt"
- Then I see that the file list contains a file named "farewell.txt"
- And I see that the file name shown in the details view is "farewell.txt"
+# Scenario: rename a file with the details view open
+# Given I am logged in
+# And I open the details view for "welcome.txt"
+# When I rename "welcome.txt" to "farewell.txt"
+# Then I see that the file list contains a file named "farewell.txt"
+# And I see that the file name shown in the details view is "farewell.txt"
Scenario: marking a file as favorite causes the file list to be sorted again
Given I am logged in
diff --git a/tests/acceptance/features/apps.feature b/tests/acceptance/features/apps.feature
index 70e0abf7753..4b03ff7c76d 100644
--- a/tests/acceptance/features/apps.feature
+++ b/tests/acceptance/features/apps.feature
@@ -72,20 +72,20 @@ Feature: apps
#Then I see that there some apps listed from the app store
#And I see that the current section is "Files"
- Scenario: View app details for app store apps
- Given I act as Jane
- And I am logged in as the admin
- And I open the Apps management
- And I open the "Tools" section
- When I click on the "Antivirus for files" app
- Then I see that the app details are shown
+# Scenario: View app details for app store apps
+# Given I act as Jane
+# And I am logged in as the admin
+# And I open the Apps management
+# And I open the "Tools" section
+# When I click on the "Antivirus for files" app
+# Then I see that the app details are shown
- Scenario: Install an app from the app store
- Given I act as Jane
- And I am logged in as the admin
- And I open the Apps management
- And I open the "Tools" section
- And I click on the "Antivirus for files" app
- And I see that the app details are shown
- Then I download and enable the "Antivirus for files" app
- And I see that the "Antivirus for files" app has been enabled
+# Scenario: Install an app from the app store
+# Given I act as Jane
+# And I am logged in as the admin
+# And I open the Apps management
+# And I open the "Tools" section
+# And I click on the "Antivirus for files" app
+# And I see that the app details are shown
+# Then I download and enable the "Antivirus for files" app
+# And I see that the "Antivirus for files" app has been enabled