Squish: Don't expect pastes to pastebin.com to appear in list

Change-Id: I02a73244e3aecad906f2c08b37d60ebe1880f534
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Robert Loehning
2020-05-07 13:26:44 +02:00
parent b788c70b95
commit a90ec2809c

View File

@@ -129,7 +129,7 @@ def fetchSnippet(protocol, description, pasteId, skippedPasting):
closeHTTPStatusAndPasterDialog(protocol, ':PasteSelectDialog_CodePaster::PasteSelectDialog') closeHTTPStatusAndPasterDialog(protocol, ':PasteSelectDialog_CodePaster::PasteSelectDialog')
return -1 return -1
waitFor("pasteModel.rowCount() > 1", 20000) waitFor("pasteModel.rowCount() > 1", 20000)
if (not skippedPasting and not any(map(lambda str:pasteId in str, dumpItems(pasteModel)))): if (protocol != NAME_PBCOM and not skippedPasting and not any(map(lambda str:pasteId in str, dumpItems(pasteModel)))):
test.warning("Fetching too fast for server of %s - waiting 3s and trying to refresh." % protocol) test.warning("Fetching too fast for server of %s - waiting 3s and trying to refresh." % protocol)
snooze(3) snooze(3)
clickButton("{text='Refresh' type='QPushButton' unnamed='1' visible='1' " clickButton("{text='Refresh' type='QPushButton' unnamed='1' visible='1' "
@@ -152,7 +152,11 @@ def fetchSnippet(protocol, description, pasteId, skippedPasting):
"Verify that line in list of pastes contains the description") "Verify that line in list of pastes contains the description")
except: except:
if not skippedPasting: if not skippedPasting:
test.fail("Could not find id '%s' in list of pastes from %s" % (pasteId, protocol)) message = "Could not find id '%s' in list of pastes from %s" % (pasteId, protocol)
if protocol == NAME_PBCOM:
test.xfail(message, "pastebin.com does not show pastes in list anymore")
else:
test.fail(message)
foundSnippet = False foundSnippet = False
replaceEditorContent(waitForObject(":PasteSelectDialog.pasteEdit_QLineEdit"), pasteId) replaceEditorContent(waitForObject(":PasteSelectDialog.pasteEdit_QLineEdit"), pasteId)
if foundSnippet: if foundSnippet: