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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSwoichha Adhikari <swoichhaa@gmail.com>2021-05-18 14:09:35 +0300
committerGitHub <noreply@github.com>2021-05-18 14:09:35 +0300
commitf5303eb86b023ae61930cb7a383d9714debf428a (patch)
treeec012f1c8188d79862bb0d61478066f0e08d8f7d /test/gui/shared/steps
parentbd9adb22371f5dec8c3156bbb21088e78febb37e (diff)
[tests-only] DRY public link creation (#8639)
* [tests-only]DRY public link creation * add exception for other item type * remove default argument from function call
Diffstat (limited to 'test/gui/shared/steps')
-rw-r--r--test/gui/shared/steps/steps.py23
1 files changed, 14 insertions, 9 deletions
diff --git a/test/gui/shared/steps/steps.py b/test/gui/shared/steps/steps.py
index a1de3a97c..456333f2b 100644
--- a/test/gui/shared/steps/steps.py
+++ b/test/gui/shared/steps/steps.py
@@ -219,9 +219,7 @@ def executeStepThroughMiddleware(context, step):
@When('the user adds "|any|" as collaborator of resource "|any|" with permissions "|any|" using the client-UI')
def step(context, receiver, resource, permissions):
- resource = sanitizePath(substituteInLineCodes(context, resource))
- waitFor(lambda: isFileSynced(resource), context.userData['clientSyncTimeout'] * 1000)
- waitFor(lambda: shareResource(resource), context.userData['clientSyncTimeout'] * 1000)
+ openSharingDialog(context, resource)
mouseClick(waitForObject(names.sharingDialogUG_shareeLineEdit_QLineEdit), 0, 0, Qt.NoModifier, Qt.LeftButton)
type(waitForObject(names.sharingDialogUG_shareeLineEdit_QLineEdit), receiver)
@@ -391,10 +389,20 @@ def step(context):
clickTab(waitForObject(names.stack_QTabWidget), "Not Synced")
-def openPublicLinkDialog(context, resource):
+def openSharingDialog(context, resource, itemType='file'):
resource = sanitizePath(substituteInLineCodes(context, resource))
- waitFor(lambda: isFileSynced(resource), context.userData['clientSyncTimeout'] * 1000)
+
+ if itemType == 'folder':
+ waitFor(lambda: isFolderSynced(resource), context.userData['clientSyncTimeout'] * 1000)
+ elif itemType == 'file':
+ waitFor(lambda: isFileSynced(resource), context.userData['clientSyncTimeout'] * 1000)
+ else:
+ raise Exception("No such item type for resource")
+
waitFor(lambda: shareResource(resource), context.userData['clientSyncTimeout'] * 1000)
+
+def openPublicLinkDialog(context, resource, itemType='file'):
+ openSharingDialog(context, resource, itemType)
mouseClick(waitForObject(names.qt_tabwidget_tabbar_Public_Links_TabItem), 0, 0, Qt.NoModifier, Qt.LeftButton)
@When('the user opens the public links dialog of "|any|" using the client-UI')
@@ -421,10 +429,7 @@ def step(context):
@When('user "|any|" opens the sharing dialog of "|any|" using the client-UI')
def step(context, receiver, resource):
- resource = sanitizePath(substituteInLineCodes(context, resource))
- waitFor(lambda: isFolderSynced(resource), context.userData['clientSyncTimeout'] * 1000)
- waitFor(lambda: shareResource(resource), context.userData['clientSyncTimeout'] * 1000)
-
+ openSharingDialog(context, resource, 'folder')
@Then('the error text "|any|" should be displayed in the sharing dialog')
def step(context, fileShareContext):