Skip to content
Snippets Groups Projects
Commit c3322d41 authored by catch's avatar catch
Browse files

Issue #3315227 by alexpott, Spokje, andypost, quietone:...

Issue #3315227 by alexpott, Spokje, andypost, quietone: Drupal\Tests\views\FunctionalJavascript\Plugin\views\Handler\FilterTest is failing a lot at the moment

(cherry picked from commit eb8c8d48)
parent 931361f6
No related branches found
No related tags found
17 merge requests!8506Draft: Issue #3456536 by ibrahim tameme,!5646Issue #3350972 by nod_: [random test failure]...,!5600Issue #3350972 by nod_: [random test failure]...,!5343Issue #3305066 by quietone, Rename RedirectLeadingSlashesSubscriber,!3603#ISSUE 3346218 Add a different message on edit comment,!3555Issue #2473873: Views entity operations lack cacheability support, resulting in incorrect dropbuttons,!3494Issue #3327018 by Spokje, longwave, xjm, mondrake: Update PHPStan to 1.9.3 and...,!3410Issue #3340128: UserLoginForm::submitForm has some dead code,!3389Issue #3325184 by Spokje, andypost, xjm, smustgrave: $this->configFactory is...,!3381Issue #3332363: Refactor Claro's menus-and-lists stylesheet,!3307Issue #3326193: CKEditor 5 can grow past the viewport when there is a lot of content,!3236Issue #3332419: Refactor Claro's messages stylesheet,!3231Draft: Issue #3049525 by longwave, fougere, larowlan, kim.pepper, AaronBauman, Wim...,!3212Issue #3294003: Refactor Claro's entity-meta stylesheet,!3194Issue #3330981: Fix PHPStan L1 error "Relying on entity queries to check access by default is deprecated...",!3143Issue #3313342: [PHP 8.1] Deprecated function: strpos(): Passing null to parameter #1 LayoutBuilderUiCacheContext.php on line 28,!2972Issue #1845004: Replace custom password hashing library with PHP 5.5 password_hash()
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
use PHPUnit\Framework\Constraint\IsNull; use PHPUnit\Framework\Constraint\IsNull;
use PHPUnit\Framework\Constraint\LogicalNot; use PHPUnit\Framework\Constraint\LogicalNot;
use WebDriver\Exception; use WebDriver\Exception;
use WebDriver\Exception\CurlExec;
// cspell:ignore interactable // cspell:ignore interactable
...@@ -156,18 +155,7 @@ public function waitForText($text, $timeout = 10000) { ...@@ -156,18 +155,7 @@ public function waitForText($text, $timeout = 10000) {
* The result of $callback. * The result of $callback.
*/ */
private function waitForHelper(int $timeout, callable $callback) { private function waitForHelper(int $timeout, callable $callback) {
WebDriverCurlService::disableRetry(); return $this->session->getPage()->waitFor($timeout / 1000, $callback);
$wrapper = function (Element $element) use ($callback) {
try {
return call_user_func($callback, $element);
}
catch (CurlExec $e) {
return NULL;
}
};
$result = $this->session->getPage()->waitFor($timeout / 1000, $wrapper);
WebDriverCurlService::enableRetry();
return $result;
} }
/** /**
......
...@@ -7,7 +7,10 @@ ...@@ -7,7 +7,10 @@
namespace Drupal\Tests; namespace Drupal\Tests;
use Behat\Mink\Driver\BrowserKitDriver; use Behat\Mink\Driver\BrowserKitDriver;
use Behat\Mink\Element\Element;
use Behat\Mink\Element\TraversableElement; use Behat\Mink\Element\TraversableElement;
use Drupal\FunctionalJavascriptTests\WebDriverCurlService;
use WebDriver\Exception\CurlExec;
/** /**
* Document element. * Document element.
...@@ -85,4 +88,31 @@ public function getText() { ...@@ -85,4 +88,31 @@ public function getText() {
return parent::getText(); return parent::getText();
} }
/**
* {@inheritdoc}
*/
public function waitFor($timeout, $callback) {
// Wraps waits in a function to catch curl exceptions to continue waiting.
WebDriverCurlService::disableRetry();
$count = 0;
$wrapper = function (Element $element) use ($callback, &$count) {
$count++;
try {
return call_user_func($callback, $element);
}
catch (CurlExec $e) {
return NULL;
}
};
$result = parent::waitFor($timeout, $wrapper);
if (!$result && $count < 2) {
// If the callback or the system is really slow, then it might have only
// fired once. In this case it is better to trigger it once more as the
// page state has probably changed while the callback is running.
return call_user_func($callback, $this);
}
WebDriverCurlService::enableRetry();
return $result;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment