[Pkg-owncloud-commits] [owncloud] 17/62: Added unit test
David Prévot
taffit at moszumanska.debian.org
Tue Jun 23 23:39:34 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to annotated tag v8.0.5beta
in repository owncloud.
commit 5865a3af8cedaac7fc9649cf17f660393ea90b9a
Author: Roeland Jago Douma <roeland at famdouma.nl>
Date: Tue Apr 28 14:00:36 2015 +0200
Added unit test
---
tests/lib/share/share.php | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php
index 314fd59..3b6814a 100644
--- a/tests/lib/share/share.php
+++ b/tests/lib/share/share.php
@@ -1203,6 +1203,52 @@ class Test_Share extends \Test\TestCase {
\OC\Share\Share::setPassword($userSession, $connection, $config, 1, 'pass');
}
+ public function testPasswords() {
+ $pass = 'secret';
+
+ $this->shareUserTestFileAsLink();
+
+ $userSession = \OC::$server->getUserSession();
+ $connection = \OC::$server->getDatabaseConnection();
+ $config = $this->getMockBuilder('\OCP\IConfig')
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ // Find the share ID in the db
+ $qb = $connection->createQueryBuilder();
+ $qb->select('`id`')
+ ->from('`*PREFIX*share`')
+ ->where('`item_type` = :type')
+ ->andWhere('`item_source` = :source')
+ ->andWhere('`uid_owner` = :owner')
+ ->andWhere('`share_type` = :share_type')
+ ->setParameter('type', 'test')
+ ->setParameter('source', 'test.txt')
+ ->setParameter('owner', $this->user1)
+ ->setParameter('share_type', \OCP\Share::SHARE_TYPE_LINK);
+
+ $res = $qb->execute()->fetchAll();
+ $this->assertCount(1, $res);
+ $id = $res[0]['id'];
+
+ // Set password on share
+ $res = \OC\Share\Share::setPassword($userSession, $connection, $config, $id, $pass);
+ $this->assertTrue($res);
+
+ // Fetch the hash from the database
+ $qb = $connection->createQueryBuilder();
+ $qb->select('`share_with`')
+ ->from('`*PREFIX*share`')
+ ->where('`id` = :id')
+ ->setParameter('id', $id);
+ $hash = $qb->execute()->fetch()['share_with'];
+
+ $hasher = \OC::$server->getHasher();
+
+ // Verify hash
+ $this->assertTrue($hasher->verify($pass, $hash));
+ }
+
/**
* Test setting a password when everything is fine
*/
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list