summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/units/AuthenticationTest.php39
-rw-r--r--tests/units/UserTest.php25
2 files changed, 64 insertions, 0 deletions
diff --git a/tests/units/AuthenticationTest.php b/tests/units/AuthenticationTest.php
new file mode 100644
index 00000000..75b55ece
--- /dev/null
+++ b/tests/units/AuthenticationTest.php
@@ -0,0 +1,39 @@
+<?php
+
+require_once __DIR__.'/Base.php';
+
+use Model\User;
+use Model\Authentication;
+
+class AuthenticationTest extends Base
+{
+ public function testHasCaptcha()
+ {
+ $u = new User($this->container);
+ $a = new Authentication($this->container);
+
+ $this->assertFalse($a->hasCaptcha('not_found'));
+ $this->assertFalse($a->hasCaptcha('admin'));
+
+ $this->assertTrue($u->incrementFailedLogin('admin'));
+ $this->assertTrue($u->incrementFailedLogin('admin'));
+ $this->assertTrue($u->incrementFailedLogin('admin'));
+
+ $this->assertFalse($a->hasCaptcha('not_found'));
+ $this->assertTrue($a->hasCaptcha('admin'));
+ }
+
+ public function testHandleFailedLogin()
+ {
+ $u = new User($this->container);
+ $a = new Authentication($this->container);
+
+ $this->assertFalse($u->isLocked('admin'));
+
+ for ($i = 0; $i <= 6; $i++) {
+ $a->handleFailedLogin('admin');
+ }
+
+ $this->assertTrue($u->isLocked('admin'));
+ }
+}
diff --git a/tests/units/UserTest.php b/tests/units/UserTest.php
index fcdf3934..6c68dfd2 100644
--- a/tests/units/UserTest.php
+++ b/tests/units/UserTest.php
@@ -12,6 +12,31 @@ use Model\Project;
class UserTest extends Base
{
+ public function testFailedLogin()
+ {
+ $u = new User($this->container);
+
+ $this->assertEquals(0, $u->getFailedLogin('admin'));
+ $this->assertEquals(0, $u->getFailedLogin('not_found'));
+
+ $this->assertTrue($u->incrementFailedLogin('admin'));
+ $this->assertTrue($u->incrementFailedLogin('admin'));
+
+ $this->assertEquals(2, $u->getFailedLogin('admin'));
+ $this->assertTrue($u->resetFailedLogin('admin'));
+ $this->assertEquals(0, $u->getFailedLogin('admin'));
+ }
+
+ public function testLocking()
+ {
+ $u = new User($this->container);
+
+ $this->assertFalse($u->isLocked('admin'));
+ $this->assertFalse($u->isLocked('not_found'));
+ $this->assertTrue($u->lock('admin', 1));
+ $this->assertTrue($u->isLocked('admin'));
+ }
+
public function testGetByEmail()
{
$u = new User($this->container);