]> source.dussan.org Git - nextcloud-server.git/commitdiff
Test whether an expired user share is still accessible.
authorAndreas Fischer <bantu@owncloud.com>
Wed, 4 Sep 2013 15:15:08 +0000 (17:15 +0200)
committerAndreas Fischer <bantu@owncloud.com>
Thu, 12 Sep 2013 21:43:20 +0000 (23:43 +0200)
tests/lib/share/share.php

index e7d441a7e780db7ff1c8d20a0a498c8d4a8863a3..bce041a06f23bbdfe70aba11520a8c2f79846ee6 100644 (file)
@@ -264,6 +264,39 @@ class Test_Share extends PHPUnit_Framework_TestCase {
                $this->assertEquals(array('test1.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET));
        }
 
+       public function testShareWithUserExpirationExpired()
+       {
+               OC_User::setUserId($this->user1);
+               $this->assertTrue(
+                       OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\PERMISSION_READ),
+                       'Failed asserting that user 1 successfully shared text.txt with user 2.'
+               );
+               $this->assertEquals(
+                       array('test.txt'),
+                       OCP\Share::getItemShared('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE),
+                       'Failed asserting that test.txt is a shared file of user 1.'
+               );
+
+               OC_User::setUserId($this->user2);
+               $this->assertEquals(
+                       array('test.txt'),
+                       OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE),
+                       'Failed asserting that user 2 has access to test.txt after initial sharing.'
+               );
+
+               OC_User::setUserId($this->user1);
+               $this->assertTrue(
+                       OCP\Share::setExpirationDate('test', 'test.txt', '2000-01-01 00:00'),
+                       'Failed asserting that user 1 successfully set an expiration date for the test.txt share.'
+               );
+
+               OC_User::setUserId($this->user2);
+               $this->assertFalse(
+                       OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE),
+                       'Failed asserting that user 2 no longer has access to test.txt after expiration.'
+               );
+       }
+
        public function testShareWithGroup() {
                // Invalid shares
                $message = 'Sharing test.txt failed, because the group foobar does not exist';