chore: bump reva (#1701)

* chore: bump reva

* enhancement(test): add postprocessing wait helper
This commit is contained in:
Florian Schade
2025-10-27 12:01:27 +01:00
committed by GitHub
parent f04f6ad470
commit fb8af22073
8 changed files with 135 additions and 56 deletions

View File

@@ -741,6 +741,17 @@ trait WebDav {
$this->setResponse($this->downloadFileWithRange($user, $fileSource, $range));
}
/**
* @When the user waits for :time seconds for postprocessing to finish
*
* @param int $time
*
* @return void
*/
public function waitForCertainSeconds(int $time): void {
\sleep($time);
}
/**
* @Then /^user "([^"]*)" using password "([^"]*)" should not be able to download file "([^"]*)"$/
*