aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/tests
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-03-14 13:34:17 +0100
committerMorris Jobke <hey@morrisjobke.de>2019-03-14 13:34:17 +0100
commitb7f0091e0fe598dad4e97288d037094494034e8b (patch)
tree58dbb4bdb10424767ec2a73069c6e646ff8c0c14 /apps/files_external/tests
parentf18d989720862f37120a54c559830c8dded7db26 (diff)
downloadnextcloud-server-b7f0091e0fe598dad4e97288d037094494034e8b.tar.gz
nextcloud-server-b7f0091e0fe598dad4e97288d037094494034e8b.zip
Add time between SMB test runs and properly log full changeset
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files_external/tests')
-rw-r--r--apps/files_external/tests/Storage/SmbTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files_external/tests/Storage/SmbTest.php b/apps/files_external/tests/Storage/SmbTest.php
index 562ac6c8e5e..609b362d60d 100644
--- a/apps/files_external/tests/Storage/SmbTest.php
+++ b/apps/files_external/tests/Storage/SmbTest.php
@@ -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
}
}