Version 1
[yaffs-website] / vendor / drush / drush / tests / batchTest.php
diff --git a/vendor/drush/drush/tests/batchTest.php b/vendor/drush/drush/tests/batchTest.php
new file mode 100644 (file)
index 0000000..3db4d76
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+
+namespace Unish;
+
+/**
+ * Tests the drush batch subsystem.
+ *
+ * @see includes/batch.inc
+ *
+ * @group base
+ */
+class batchCase extends CommandUnishTestCase {
+
+  public function testBatch() {
+    $sites = $this->setUpDrupal(1, TRUE);
+    $options = array(
+      'root' => $this->webroot(),
+      'uri' => key($sites),
+      'yes' => NULL,
+      'include' => dirname(__FILE__),
+    );
+    $this->drush('unit-batch', array(), $options);
+    // Collect log messages that begin with "!!!" (@see: _drush_unit_batch_operation())
+    $parsed = $this->parse_backend_output($this->getOutput());
+    $special_log_msgs = '';
+    foreach ($parsed['log'] as $key => $log) {
+      if(substr($log['message'],0,3) == '!!!') {
+        $special_log_msgs .= $log['message'];
+      }
+    }
+    $this->assertEquals("!!! ArrayObject does its job.", $special_log_msgs, 'Batch messages were logged');
+  }
+}