Add time between SMB test runs and properly log full changeset

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2019-03-14 13:34:17 +01:00
parent f18d989720
commit b7f0091e0f
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 3 additions and 1 deletions

View File

@ -98,7 +98,9 @@ class SmbTest extends \Test\Files\Storage\Storage {
$notifyHandler = $this->instance->notify('');
sleep(1); //give time for the notify to start
$this->instance->file_put_contents('/newfile.txt', 'test content');
sleep(1);
$this->instance->rename('/newfile.txt', 'renamed.txt');
sleep(1);
$this->instance->unlink('/renamed.txt');
sleep(1); //time for all changes to be processed
@ -119,7 +121,7 @@ class SmbTest extends \Test\Files\Storage\Storage {
];
foreach ($expected as $expectedChange) {
$this->assertContains($expectedChange, $changes, '', false, false); // dont check object identity
$this->assertContains($expectedChange, $changes, 'Actual changes are:' . PHP_EOL . print_r($expected, true), false, false); // dont check object identity
}
}