HelperTest.php 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <?php
  2. namespace Jobby\Tests;
  3. use Jobby\Helper;
  4. use Jobby\Jobby;
  5. /**
  6. * @coversDefaultClass Jobby\Helper
  7. */
  8. class HelperTest extends \PHPUnit_Framework_TestCase
  9. {
  10. /**
  11. * @var Helper
  12. */
  13. private $helper;
  14. /**
  15. * @var string
  16. */
  17. private $tmpDir;
  18. /**
  19. * @var string
  20. */
  21. private $lockFile;
  22. /**
  23. * @var string
  24. */
  25. private $copyOfLockFile;
  26. /**
  27. * {@inheritdoc}
  28. */
  29. protected function setUp()
  30. {
  31. $this->helper = new Helper();
  32. $this->tmpDir = $this->helper->getTempDir();
  33. $this->lockFile = $this->tmpDir . '/test.lock';
  34. $this->copyOfLockFile = $this->tmpDir . "/test.lock.copy";
  35. }
  36. /**
  37. * {@inheritdoc}
  38. */
  39. protected function tearDown()
  40. {
  41. unset($_SERVER['APPLICATION_ENV']);
  42. }
  43. /**
  44. * @param string $input
  45. * @param string $expected
  46. *
  47. * @dataProvider dataProviderTestEscape
  48. */
  49. public function testEscape($input, $expected)
  50. {
  51. $actual = $this->helper->escape($input);
  52. $this->assertEquals($expected, $actual);
  53. }
  54. /**
  55. * @return array
  56. */
  57. public function dataProviderTestEscape()
  58. {
  59. return [
  60. ['lower', 'lower'],
  61. ['UPPER', 'upper'],
  62. ['0123456789', '0123456789'],
  63. ['with spaces', 'with_spaces'],
  64. ['invalid!@#$%^&*()chars', 'invalidchars'],
  65. ['._-', '._-'],
  66. ];
  67. }
  68. /**
  69. * @covers ::getPlatform
  70. */
  71. public function testGetPlatform()
  72. {
  73. $actual = $this->helper->getPlatform();
  74. $this->assertContains($actual, [Helper::UNIX, Helper::WINDOWS]);
  75. }
  76. /**
  77. * @covers ::getPlatform
  78. */
  79. public function testPlatformConstants()
  80. {
  81. $this->assertNotEquals(Helper::UNIX, Helper::WINDOWS);
  82. }
  83. /**
  84. * @covers ::acquireLock
  85. * @covers ::releaseLock
  86. */
  87. public function testAquireAndReleaseLock()
  88. {
  89. $this->helper->acquireLock($this->lockFile);
  90. $this->helper->releaseLock($this->lockFile);
  91. $this->helper->acquireLock($this->lockFile);
  92. $this->helper->releaseLock($this->lockFile);
  93. }
  94. /**
  95. * @covers ::acquireLock
  96. * @covers ::releaseLock
  97. */
  98. public function testLockFileShouldContainCurrentPid()
  99. {
  100. $this->helper->acquireLock($this->lockFile);
  101. //on Windows, file locking is mandatory not advisory, so you can't do file_get_contents on a locked file
  102. //therefore, we need to make a copy of the lock file in order to read its contents
  103. if ($this->helper->getPlatform() === Helper::WINDOWS) {
  104. copy($this->lockFile, $this->copyOfLockFile);
  105. $lockFile = $this->copyOfLockFile;
  106. } else {
  107. $lockFile = $this->lockFile;
  108. }
  109. $this->assertEquals(getmypid(), file_get_contents($lockFile));
  110. $this->helper->releaseLock($this->lockFile);
  111. $this->assertEmpty(file_get_contents($this->lockFile));
  112. }
  113. /**
  114. * @covers ::getLockLifetime
  115. */
  116. public function testLockLifetimeShouldBeZeroIfFileDoesNotExists()
  117. {
  118. unlink($this->lockFile);
  119. $this->assertFalse(file_exists($this->lockFile));
  120. $this->assertEquals(0, $this->helper->getLockLifetime($this->lockFile));
  121. }
  122. /**
  123. * @covers ::getLockLifetime
  124. */
  125. public function testLockLifetimeShouldBeZeroIfFileIsEmpty()
  126. {
  127. file_put_contents($this->lockFile, '');
  128. $this->assertEquals(0, $this->helper->getLockLifetime($this->lockFile));
  129. }
  130. /**
  131. * @covers ::getLockLifetime
  132. */
  133. public function testLockLifetimeShouldBeZeroIfItContainsAInvalidPid()
  134. {
  135. if ($this->helper->getPlatform() === Helper::WINDOWS) {
  136. $this->markTestSkipped("Test relies on posix_ functions");
  137. }
  138. file_put_contents($this->lockFile, 'invalid-pid');
  139. $this->assertEquals(0, $this->helper->getLockLifetime($this->lockFile));
  140. }
  141. /**
  142. * @covers ::getLockLifetime
  143. */
  144. public function testGetLocklifetime()
  145. {
  146. if ($this->helper->getPlatform() === Helper::WINDOWS) {
  147. $this->markTestSkipped("Test relies on posix_ functions");
  148. }
  149. $this->helper->acquireLock($this->lockFile);
  150. $this->assertEquals(0, $this->helper->getLockLifetime($this->lockFile));
  151. sleep(1);
  152. $this->assertEquals(1, $this->helper->getLockLifetime($this->lockFile));
  153. sleep(1);
  154. $this->assertEquals(2, $this->helper->getLockLifetime($this->lockFile));
  155. $this->helper->releaseLock($this->lockFile);
  156. }
  157. /**
  158. * @covers ::releaseLock
  159. * @expectedException \Jobby\Exception
  160. */
  161. public function testReleaseNonExistin()
  162. {
  163. $this->helper->releaseLock($this->lockFile);
  164. }
  165. /**
  166. * @covers ::acquireLock
  167. * @expectedException \Jobby\InfoException
  168. */
  169. public function testExceptionIfAquireFails()
  170. {
  171. $fh = fopen($this->lockFile, 'r+');
  172. $this->assertTrue(is_resource($fh));
  173. $res = flock($fh, LOCK_EX | LOCK_NB);
  174. $this->assertTrue($res);
  175. $this->helper->acquireLock($this->lockFile);
  176. }
  177. /**
  178. * @covers ::acquireLock
  179. * @expectedException \Jobby\Exception
  180. */
  181. public function testAquireLockShouldFailOnSecondTry()
  182. {
  183. $this->helper->acquireLock($this->lockFile);
  184. $this->helper->acquireLock($this->lockFile);
  185. }
  186. /**
  187. * @covers ::getTempDir
  188. */
  189. public function testGetTempDir()
  190. {
  191. $valid = [sys_get_temp_dir(), getcwd()];
  192. foreach (['TMP', 'TEMP', 'TMPDIR'] as $key) {
  193. if (!empty($_SERVER[$key])) {
  194. $valid[] = $_SERVER[$key];
  195. }
  196. }
  197. $actual = $this->helper->getTempDir();
  198. $this->assertContains($actual, $valid);
  199. }
  200. /**
  201. * @covers ::getApplicationEnv
  202. */
  203. public function testGetApplicationEnv()
  204. {
  205. $_SERVER['APPLICATION_ENV'] = 'foo';
  206. $actual = $this->helper->getApplicationEnv();
  207. $this->assertEquals('foo', $actual);
  208. }
  209. /**
  210. * @covers ::getApplicationEnv
  211. */
  212. public function testGetApplicationEnvShouldBeNullIfUndefined()
  213. {
  214. $actual = $this->helper->getApplicationEnv();
  215. $this->assertNull($actual);
  216. }
  217. /**
  218. * @covers ::getHost
  219. */
  220. public function testGetHostname()
  221. {
  222. $actual = $this->helper->getHost();
  223. $this->assertContains($actual, [gethostname(), php_uname('n')]);
  224. }
  225. /**
  226. * @covers ::sendMail
  227. * @covers ::getCurrentMailer
  228. */
  229. public function testSendMail()
  230. {
  231. $mailer = $this->getSwiftMailerMock();
  232. $mailer->expects($this->once())
  233. ->method('send')
  234. ;
  235. $jobby = new Jobby();
  236. $config = $jobby->getDefaultConfig();
  237. $config['output'] = 'output message';
  238. $config['recipients'] = 'a@a.com,b@b.com';
  239. $helper = new Helper($mailer);
  240. $mail = $helper->sendMail('job', $config, 'message');
  241. $host = $helper->getHost();
  242. $email = "jobby@$host";
  243. $this->assertContains('job', $mail->getSubject());
  244. $this->assertContains("[$host]", $mail->getSubject());
  245. $this->assertEquals(1, count($mail->getFrom()));
  246. $this->assertEquals('jobby', current($mail->getFrom()));
  247. $this->assertEquals($email, current(array_keys($mail->getFrom())));
  248. $this->assertEquals($email, current(array_keys($mail->getSender())));
  249. $this->assertContains($config['output'], $mail->getBody());
  250. $this->assertContains('message', $mail->getBody());
  251. }
  252. /**
  253. * @return \Swift_Mailer
  254. */
  255. private function getSwiftMailerMock()
  256. {
  257. $nullTransport = new \Swift_NullTransport();
  258. return $this->getMock('Swift_Mailer', [], [$nullTransport]);
  259. }
  260. /**
  261. * @return void
  262. */
  263. public function testItReturnsTheCorrectNullSystemDeviceForUnix()
  264. {
  265. /** @var Helper $helper */
  266. $helper = $this->getMock("\\Jobby\\Helper", ["getPlatform"]);
  267. $helper->expects($this->once())
  268. ->method("getPlatform")
  269. ->willReturn(Helper::UNIX);
  270. $this->assertEquals("/dev/null", $helper->getSystemNullDevice());
  271. }
  272. /**
  273. * @return void
  274. */
  275. public function testItReturnsTheCorrectNullSystemDeviceForWindows()
  276. {
  277. /** @var Helper $helper */
  278. $helper = $this->getMock("\\Jobby\\Helper", ["getPlatform"]);
  279. $helper->expects($this->once())
  280. ->method("getPlatform")
  281. ->willReturn(Helper::WINDOWS);
  282. $this->assertEquals("NUL", $helper->getSystemNullDevice());
  283. }
  284. }