JobbyTest.php 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. <?php
  2. namespace Jobby\Tests;
  3. use Jobby\Helper;
  4. use Jobby\Jobby;
  5. use SuperClosure\SerializableClosure;
  6. /**
  7. * @coversDefaultClass Jobby\Jobby
  8. */
  9. class JobbyTest extends \PHPUnit_Framework_TestCase
  10. {
  11. /**
  12. * @var string
  13. */
  14. private $logFile;
  15. /**
  16. * @var Helper
  17. */
  18. private $helper;
  19. /**
  20. * {@inheritdoc}
  21. */
  22. protected function setUp()
  23. {
  24. $this->logFile = __DIR__ . '/_files/JobbyTest.log';
  25. if (file_exists($this->logFile)) {
  26. unlink($this->logFile);
  27. }
  28. $this->helper = new Helper();
  29. }
  30. /**
  31. * {@inheritdoc}
  32. */
  33. protected function tearDown()
  34. {
  35. if (file_exists($this->logFile)) {
  36. unlink($this->logFile);
  37. }
  38. }
  39. /**
  40. * @covers ::add
  41. * @covers ::run
  42. */
  43. public function testShell()
  44. {
  45. $jobby = new Jobby();
  46. $jobby->add(
  47. 'HelloWorldShell',
  48. [
  49. 'command' => 'php ' . __DIR__ . '/_files/helloworld.php',
  50. 'schedule' => '* * * * *',
  51. 'output' => $this->logFile,
  52. ]
  53. );
  54. $jobby->run();
  55. // Job runs asynchronously, so wait a bit
  56. sleep($this->getSleepTime());
  57. $this->assertEquals('Hello World!', $this->getLogContent());
  58. }
  59. /**
  60. * @return void
  61. */
  62. public function testBackgroundProcessIsNotSpawnedIfJobIsNotDueToBeRun()
  63. {
  64. $hour = date("H", strtotime("+1 hour"));
  65. $jobby = new Jobby();
  66. $jobby->add(
  67. 'HelloWorldShell',
  68. [
  69. 'command' => 'php ' . __DIR__ . '/_files/helloworld.php',
  70. 'schedule' => "* {$hour} * * *",
  71. 'output' => $this->logFile,
  72. ]
  73. );
  74. $jobby->run();
  75. // Job runs asynchronously, so wait a bit
  76. sleep($this->getSleepTime());
  77. $this->assertFalse(
  78. file_exists($this->logFile),
  79. "Failed to assert that log file doesn't exist and that background process did not spawn"
  80. );
  81. }
  82. /**
  83. * @covers ::add
  84. * @covers ::run
  85. */
  86. public function testSuperClosure()
  87. {
  88. $fn = static function () {
  89. echo 'Another function!';
  90. return true;
  91. };
  92. $jobby = new Jobby();
  93. $jobby->add(
  94. 'HelloWorldClosure',
  95. [
  96. 'command' => new SerializableClosure($fn),
  97. 'schedule' => '* * * * *',
  98. 'output' => $this->logFile,
  99. ]
  100. );
  101. $jobby->run();
  102. // Job runs asynchronously, so wait a bit
  103. sleep($this->getSleepTime());
  104. $this->assertEquals('Another function!', $this->getLogContent());
  105. }
  106. /**
  107. * @covers ::add
  108. * @covers ::run
  109. */
  110. public function testClosure()
  111. {
  112. $jobby = new Jobby();
  113. $jobby->add(
  114. 'HelloWorldClosure',
  115. [
  116. 'command' => static function () {
  117. echo 'A function!';
  118. return true;
  119. },
  120. 'schedule' => '* * * * *',
  121. 'output' => $this->logFile,
  122. ]
  123. );
  124. $jobby->run();
  125. // Job runs asynchronously, so wait a bit
  126. sleep($this->getSleepTime());
  127. $this->assertEquals('A function!', $this->getLogContent());
  128. }
  129. /**
  130. * @covers ::add
  131. * @covers ::run
  132. */
  133. public function testShouldRunAllJobsAdded()
  134. {
  135. $jobby = new Jobby(['output' => $this->logFile]);
  136. $jobby->add(
  137. 'job-1',
  138. [
  139. 'schedule' => '* * * * *',
  140. 'command' => static function () {
  141. echo 'job-1';
  142. return true;
  143. },
  144. ]
  145. );
  146. $jobby->add(
  147. 'job-2',
  148. [
  149. 'schedule' => '* * * * *',
  150. 'command' => static function () {
  151. echo 'job-2';
  152. return true;
  153. },
  154. ]
  155. );
  156. $jobby->run();
  157. // Job runs asynchronously, so wait a bit
  158. sleep($this->getSleepTime());
  159. $this->assertContains('job-1', $this->getLogContent());
  160. $this->assertContains('job-2', $this->getLogContent());
  161. }
  162. /**
  163. * This is the same test as testClosure but (!) we use the default
  164. * options to set the output file.
  165. */
  166. public function testDefaultOptionsShouldBeMerged()
  167. {
  168. $jobby = new Jobby(['output' => $this->logFile]);
  169. $jobby->add(
  170. 'HelloWorldClosure',
  171. [
  172. 'command' => static function () {
  173. echo "A function!";
  174. return true;
  175. },
  176. 'schedule' => '* * * * *',
  177. ]
  178. );
  179. $jobby->run();
  180. // Job runs asynchronously, so wait a bit
  181. sleep($this->getSleepTime());
  182. $this->assertEquals('A function!', $this->getLogContent());
  183. }
  184. /**
  185. * @covers ::getDefaultConfig
  186. */
  187. public function testDefaultConfig()
  188. {
  189. $jobby = new Jobby();
  190. $config = $jobby->getDefaultConfig();
  191. $this->assertNull($config['recipients']);
  192. $this->assertEquals('sendmail', $config['mailer']);
  193. $this->assertNull($config['runAs']);
  194. $this->assertNull($config['output']);
  195. $this->assertEquals('Y-m-d H:i:s', $config['dateFormat']);
  196. $this->assertTrue($config['enabled']);
  197. $this->assertFalse($config['debug']);
  198. }
  199. /**
  200. * @covers ::setConfig
  201. * @covers ::getConfig
  202. */
  203. public function testSetConfig()
  204. {
  205. $jobby = new Jobby();
  206. $oldCfg = $jobby->getConfig();
  207. $jobby->setConfig(['dateFormat' => 'foo bar']);
  208. $newCfg = $jobby->getConfig();
  209. $this->assertEquals(count($oldCfg), count($newCfg));
  210. $this->assertEquals('foo bar', $newCfg['dateFormat']);
  211. }
  212. /**
  213. * @covers ::getJobs
  214. */
  215. public function testGetJobs()
  216. {
  217. $jobby = new Jobby();
  218. $this->assertCount(0,$jobby->getJobs());
  219. $jobby->add(
  220. 'test job1',
  221. [
  222. 'command' => 'test',
  223. 'schedule' => '* * * * *'
  224. ]
  225. );
  226. $jobby->add(
  227. 'test job2',
  228. [
  229. 'command' => 'test',
  230. 'schedule' => '* * * * *'
  231. ]
  232. );
  233. $this->assertCount(2,$jobby->getJobs());
  234. }
  235. /**
  236. * @covers ::add
  237. * @expectedException \Jobby\Exception
  238. */
  239. public function testExceptionOnMissingJobOptionCommand()
  240. {
  241. $jobby = new Jobby();
  242. $jobby->add(
  243. 'should fail',
  244. [
  245. 'schedule' => '* * * * *',
  246. ]
  247. );
  248. }
  249. /**
  250. * @covers ::add
  251. * @expectedException \Jobby\Exception
  252. */
  253. public function testExceptionOnMissingJobOptionSchedule()
  254. {
  255. $jobby = new Jobby();
  256. $jobby->add(
  257. 'should fail',
  258. [
  259. 'command' => static function () {
  260. },
  261. ]
  262. );
  263. }
  264. /**
  265. * @covers ::run
  266. * @covers ::runWindows
  267. * @covers ::runUnix
  268. */
  269. public function testShouldRunJobsAsync()
  270. {
  271. $jobby = new Jobby();
  272. $jobby->add(
  273. 'HelloWorldClosure',
  274. [
  275. 'command' => function () {
  276. return true;
  277. },
  278. 'schedule' => '* * * * *',
  279. ]
  280. );
  281. $timeStart = microtime();
  282. $jobby->run();
  283. $duration = microtime() - $timeStart;
  284. $this->assertLessThan(0.5, $duration);
  285. }
  286. public function testShouldFailIfMaxRuntimeExceeded()
  287. {
  288. if ($this->helper->getPlatform() === Helper::WINDOWS) {
  289. $this->markTestSkipped("'maxRuntime' is not supported on Windows");
  290. }
  291. $jobby = new Jobby();
  292. $jobby->add(
  293. 'slow job',
  294. [
  295. 'command' => 'sleep 4',
  296. 'schedule' => '* * * * *',
  297. 'maxRuntime' => 1,
  298. 'output' => $this->logFile,
  299. ]
  300. );
  301. $jobby->run();
  302. sleep(2);
  303. $jobby->run();
  304. sleep(2);
  305. $this->assertContains('ERROR: MaxRuntime of 1 secs exceeded!', $this->getLogContent());
  306. }
  307. /**
  308. * @return string
  309. */
  310. private function getLogContent()
  311. {
  312. return file_get_contents($this->logFile);
  313. }
  314. private function getSleepTime()
  315. {
  316. return $this->helper->getPlatform() === Helper::UNIX ? 1 : 2;
  317. }
  318. }