123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- <?php
- namespace Jobby\Tests;
- use Jobby\Helper;
- use Jobby\Jobby;
- /**
- * @coversDefaultClass Jobby\Helper
- */
- class HelperTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * @var Helper
- */
- private $helper;
- /**
- * @var string
- */
- private $tmpDir;
- /**
- * @var string
- */
- private $lockFile;
- /**
- * @var string
- */
- private $copyOfLockFile;
- /**
- * {@inheritdoc}
- */
- protected function setUp()
- {
- $this->helper = new Helper();
- $this->tmpDir = $this->helper->getTempDir();
- $this->lockFile = $this->tmpDir . '/test.lock';
- $this->copyOfLockFile = $this->tmpDir . "/test.lock.copy";
- }
- /**
- * {@inheritdoc}
- */
- protected function tearDown()
- {
- unset($_SERVER['APPLICATION_ENV']);
- }
- /**
- * @param string $input
- * @param string $expected
- *
- * @dataProvider dataProviderTestEscape
- */
- public function testEscape($input, $expected)
- {
- $actual = $this->helper->escape($input);
- $this->assertEquals($expected, $actual);
- }
- /**
- * @return array
- */
- public function dataProviderTestEscape()
- {
- return [
- ['lower', 'lower'],
- ['UPPER', 'upper'],
- ['0123456789', '0123456789'],
- ['with spaces', 'with_spaces'],
- ['invalid!@#$%^&*()chars', 'invalidchars'],
- ['._-', '._-'],
- ];
- }
- /**
- * @covers ::getPlatform
- */
- public function testGetPlatform()
- {
- $actual = $this->helper->getPlatform();
- $this->assertContains($actual, [Helper::UNIX, Helper::WINDOWS]);
- }
- /**
- * @covers ::getPlatform
- */
- public function testPlatformConstants()
- {
- $this->assertNotEquals(Helper::UNIX, Helper::WINDOWS);
- }
- /**
- * @covers ::acquireLock
- * @covers ::releaseLock
- */
- public function testAquireAndReleaseLock()
- {
- $this->helper->acquireLock($this->lockFile);
- $this->helper->releaseLock($this->lockFile);
- $this->helper->acquireLock($this->lockFile);
- $this->helper->releaseLock($this->lockFile);
- }
- /**
- * @covers ::acquireLock
- * @covers ::releaseLock
- */
- public function testLockFileShouldContainCurrentPid()
- {
- $this->helper->acquireLock($this->lockFile);
- //on Windows, file locking is mandatory not advisory, so you can't do file_get_contents on a locked file
- //therefore, we need to make a copy of the lock file in order to read its contents
- if ($this->helper->getPlatform() === Helper::WINDOWS) {
- copy($this->lockFile, $this->copyOfLockFile);
- $lockFile = $this->copyOfLockFile;
- } else {
- $lockFile = $this->lockFile;
- }
- $this->assertEquals(getmypid(), file_get_contents($lockFile));
- $this->helper->releaseLock($this->lockFile);
- $this->assertEmpty(file_get_contents($this->lockFile));
- }
- /**
- * @covers ::getLockLifetime
- */
- public function testLockLifetimeShouldBeZeroIfFileDoesNotExists()
- {
- unlink($this->lockFile);
- $this->assertFalse(file_exists($this->lockFile));
- $this->assertEquals(0, $this->helper->getLockLifetime($this->lockFile));
- }
- /**
- * @covers ::getLockLifetime
- */
- public function testLockLifetimeShouldBeZeroIfFileIsEmpty()
- {
- file_put_contents($this->lockFile, '');
- $this->assertEquals(0, $this->helper->getLockLifetime($this->lockFile));
- }
- /**
- * @covers ::getLockLifetime
- */
- public function testLockLifetimeShouldBeZeroIfItContainsAInvalidPid()
- {
- if ($this->helper->getPlatform() === Helper::WINDOWS) {
- $this->markTestSkipped("Test relies on posix_ functions");
- }
- file_put_contents($this->lockFile, 'invalid-pid');
- $this->assertEquals(0, $this->helper->getLockLifetime($this->lockFile));
- }
- /**
- * @covers ::getLockLifetime
- */
- public function testGetLocklifetime()
- {
- if ($this->helper->getPlatform() === Helper::WINDOWS) {
- $this->markTestSkipped("Test relies on posix_ functions");
- }
- $this->helper->acquireLock($this->lockFile);
- $this->assertEquals(0, $this->helper->getLockLifetime($this->lockFile));
- sleep(1);
- $this->assertEquals(1, $this->helper->getLockLifetime($this->lockFile));
- sleep(1);
- $this->assertEquals(2, $this->helper->getLockLifetime($this->lockFile));
- $this->helper->releaseLock($this->lockFile);
- }
- /**
- * @covers ::releaseLock
- * @expectedException \Jobby\Exception
- */
- public function testReleaseNonExistin()
- {
- $this->helper->releaseLock($this->lockFile);
- }
- /**
- * @covers ::acquireLock
- * @expectedException \Jobby\InfoException
- */
- public function testExceptionIfAquireFails()
- {
- $fh = fopen($this->lockFile, 'r+');
- $this->assertTrue(is_resource($fh));
- $res = flock($fh, LOCK_EX | LOCK_NB);
- $this->assertTrue($res);
- $this->helper->acquireLock($this->lockFile);
- }
- /**
- * @covers ::acquireLock
- * @expectedException \Jobby\Exception
- */
- public function testAquireLockShouldFailOnSecondTry()
- {
- $this->helper->acquireLock($this->lockFile);
- $this->helper->acquireLock($this->lockFile);
- }
- /**
- * @covers ::getTempDir
- */
- public function testGetTempDir()
- {
- $valid = [sys_get_temp_dir(), getcwd()];
- foreach (['TMP', 'TEMP', 'TMPDIR'] as $key) {
- if (!empty($_SERVER[$key])) {
- $valid[] = $_SERVER[$key];
- }
- }
- $actual = $this->helper->getTempDir();
- $this->assertContains($actual, $valid);
- }
- /**
- * @covers ::getApplicationEnv
- */
- public function testGetApplicationEnv()
- {
- $_SERVER['APPLICATION_ENV'] = 'foo';
- $actual = $this->helper->getApplicationEnv();
- $this->assertEquals('foo', $actual);
- }
- /**
- * @covers ::getApplicationEnv
- */
- public function testGetApplicationEnvShouldBeNullIfUndefined()
- {
- $actual = $this->helper->getApplicationEnv();
- $this->assertNull($actual);
- }
- /**
- * @covers ::getHost
- */
- public function testGetHostname()
- {
- $actual = $this->helper->getHost();
- $this->assertContains($actual, [gethostname(), php_uname('n')]);
- }
- /**
- * @covers ::sendMail
- * @covers ::getCurrentMailer
- */
- public function testSendMail()
- {
- $mailer = $this->getSwiftMailerMock();
- $mailer->expects($this->once())
- ->method('send')
- ;
- $jobby = new Jobby();
- $config = $jobby->getDefaultConfig();
- $config['output'] = 'output message';
- $config['recipients'] = 'a@a.com,b@b.com';
- $helper = new Helper($mailer);
- $mail = $helper->sendMail('job', $config, 'message');
- $host = $helper->getHost();
- $email = "jobby@$host";
- $this->assertContains('job', $mail->getSubject());
- $this->assertContains("[$host]", $mail->getSubject());
- $this->assertEquals(1, count($mail->getFrom()));
- $this->assertEquals('jobby', current($mail->getFrom()));
- $this->assertEquals($email, current(array_keys($mail->getFrom())));
- $this->assertEquals($email, current(array_keys($mail->getSender())));
- $this->assertContains($config['output'], $mail->getBody());
- $this->assertContains('message', $mail->getBody());
- }
- /**
- * @return \Swift_Mailer
- */
- private function getSwiftMailerMock()
- {
- $nullTransport = new \Swift_NullTransport();
- return $this->getMock('Swift_Mailer', [], [$nullTransport]);
- }
- /**
- * @return void
- */
- public function testItReturnsTheCorrectNullSystemDeviceForUnix()
- {
- /** @var Helper $helper */
- $helper = $this->getMock("\\Jobby\\Helper", ["getPlatform"]);
- $helper->expects($this->once())
- ->method("getPlatform")
- ->willReturn(Helper::UNIX);
- $this->assertEquals("/dev/null", $helper->getSystemNullDevice());
- }
- /**
- * @return void
- */
- public function testItReturnsTheCorrectNullSystemDeviceForWindows()
- {
- /** @var Helper $helper */
- $helper = $this->getMock("\\Jobby\\Helper", ["getPlatform"]);
- $helper->expects($this->once())
- ->method("getPlatform")
- ->willReturn(Helper::WINDOWS);
- $this->assertEquals("NUL", $helper->getSystemNullDevice());
- }
- }
|