forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueueTest.php
49 lines (40 loc) · 1.64 KB
/
queueTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
namespace Unish;
/**
* @group commands
*/
class QueueCase extends CommandUnishTestCase {
function testQueue() {
if (UNISH_DRUPAL_MAJOR_VERSION == 6) {
$this->markTestSkipped("Queue API not available in Drupal 6.");
}
if (UNISH_DRUPAL_MAJOR_VERSION == 7) {
$expected = 'aggregator_feeds,%items,SystemQueue';
}
else {
$expected = 'aggregator_feeds,%items,Drupal\Core\Queue\DatabaseQueue';
}
$sites = $this->setUpDrupal(1, TRUE);
$options = array(
'yes' => NULL,
'root' => $this->webroot(),
'uri' => key($sites),
);
// Enable aggregator since it declares a queue.
$this->drush('pm-enable', array('aggregator'), $options);
$this->drush('queue-list', array(), $options);
$output = $this->getOutput();
$this->assertContains('aggregator_feeds', $output, 'Queue list shows the declared queue.');
$this->drush('php-script', array('queue_script-D' . UNISH_DRUPAL_MAJOR_VERSION), $options + array('script-path' => dirname(__FILE__) . '/resources'));
$this->drush('queue-list', array(), $options + array('pipe' => TRUE));
$output = trim($this->getOutput());
$parts = explode(",", $output);
$this->assertEquals(str_replace('%items', 1, $expected), $output, 'Item was successfully added to the queue.');
$output = $this->getOutput();
$this->drush('queue-run', array('aggregator_feeds'), $options);
$this->drush('queue-list', array(), $options + array('pipe' => TRUE));
$output = trim($this->getOutput());
$parts = explode(",", $output);
$this->assertEquals(str_replace('%items', 0, $expected), $output, 'Queue item processed.');
}
}