From e73334a7e0738d6e46bae7dec1e903232550c964 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Mon, 18 Jan 2016 21:46:56 -0500 Subject: Add unit test for LastLogin class --- tests/units/Model/LastLoginTest.php | 43 +++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 tests/units/Model/LastLoginTest.php (limited to 'tests/units/Model') diff --git a/tests/units/Model/LastLoginTest.php b/tests/units/Model/LastLoginTest.php new file mode 100644 index 00000000..fc5ea1e5 --- /dev/null +++ b/tests/units/Model/LastLoginTest.php @@ -0,0 +1,43 @@ +container); + + $this->assertTrue($lastLoginModel->create('Test1', 1, '127.0.0.1', 'My browser')); + $this->assertTrue($lastLoginModel->create('Test2', 1, '127.0.0.1', str_repeat('Too long', 50))); + $this->assertTrue($lastLoginModel->create('Test3', 1, '2001:0db8:0000:0000:0000:ff00:0042:8329', 'My Ipv6 browser')); + + $connections = $lastLoginModel->getAll(1); + $this->assertCount(3, $connections); + + $this->assertEquals('Test3', $connections[0]['auth_type']); + $this->assertEquals('2001:0db8:0000:0000:0000:ff00:0042:8329', $connections[0]['ip']); + + $this->assertEquals('Test2', $connections[1]['auth_type']); + $this->assertEquals('127.0.0.1', $connections[1]['ip']); + + $this->assertEquals('Test1', $connections[2]['auth_type']); + $this->assertEquals('127.0.0.1', $connections[2]['ip']); + } + + public function testCleanup() + { + $lastLoginModel = new LastLogin($this->container); + + for ($i = 0; $i < $lastLoginModel::NB_LOGINS + 5; $i++) { + $this->assertTrue($lastLoginModel->create('Test' . $i, 1, '127.0.0.1', 'My browser')); + } + + $connections = $lastLoginModel->getAll(1); + $this->assertCount(10, $connections); + $this->assertEquals('Test14', $connections[0]['auth_type']); + $this->assertEquals('Test5', $connections[9]['auth_type']); + } +} -- cgit v1.2.3