예제 #1
0
 public function testAddJobs()
 {
     $queue = ['jobs' => []];
     $this->reader->expects($this->at(0))->method('read')->willReturn('');
     $queue['jobs'][] = ['name' => 'job A', 'params' => []];
     $this->writer->expects($this->at(0))->method('write')->with(json_encode($queue, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
     $this->reader->expects($this->at(1))->method('read')->willReturn(json_encode($queue, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
     $queue['jobs'][] = ['name' => 'job B', 'params' => []];
     $this->writer->expects($this->at(1))->method('write')->with(json_encode($queue, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
     $this->queue->addJobs([['name' => 'job A', 'params' => []], ['name' => 'job B', 'params' => []]]);
 }
예제 #2
0
 public function testWrite()
 {
     $this->directoryWrite->expects($this->once())->method('writeFile')->with('.update_queue.json', 'data');
     $this->writer->write('data');
 }