Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / tests / SqlDumpTest.php
diff --git a/vendor/drush/drush/tests/SqlDumpTest.php b/vendor/drush/drush/tests/SqlDumpTest.php
deleted file mode 100644 (file)
index 10ca95f..0000000
+++ /dev/null
@@ -1,119 +0,0 @@
-<?php
-
-namespace Unish;
-
-/**
- * Tests for sql-dump commands.
- *
- * @group commands
- * @group sql
- * @group slow
- */
-class SqlDumpTest extends CommandUnishTestCase
-{
-
-  /**
-   * Test that a dump file is created successfully.
-   */
-    public function testSqlDump()
-    {
-        if ($this->dbDriver() == 'sqlite') {
-            $this->markTestSkipped('SQL Dump does not apply to SQLite.');
-            return;
-        }
-
-        $this->setUpDrupal(1, true);
-        $root = $this->webroot();
-        $uri = $this->getUri();
-        $full_dump_file_path = self::getSandbox() . DIRECTORY_SEPARATOR . 'full_db.sql';
-
-        $options = [
-        'result-file' => $full_dump_file_path,
-        // Last 5 entries are for D8+
-        'skip-tables-list' => 'hist*,cache*,router,config*,watchdog,key_valu*',
-        'yes' => null,
-        ];
-
-        $this->drush('sql-dump', [], $options + ['simulate' => null]);
-        $this->assertContains('--ignore-table=unish_dev.cache_discovery', $this->getErrorOutput());
-
-        // Test --extra-dump option
-        if ($this->dbDriver() == 'mysql') {
-            $this->drush('sql-dump', [], array_merge($options, [], ['extra-dump' => '--skip-add-drop-table']));
-            $this->assertFileExists($full_dump_file_path);
-            $full_dump_file = file_get_contents($full_dump_file_path);
-            $this->assertNotContains('DROP TABLE IF EXISTS', $full_dump_file);
-        }
-
-
-        // First, do a test without any aliases, and dump the whole database
-        $this->drush('sql-dump', [], $options);
-        $this->assertFileExists($full_dump_file_path);
-        $full_dump_file = file_get_contents($full_dump_file_path);
-        // Test that we have sane contents.
-        $this->assertContains('menu_tree', $full_dump_file);
-        // Test skip-files-list and wildcard expansion.
-        $this->assertNotContains('CREATE TABLE `key_value', $full_dump_file);
-        // Next, set up an alias file and run a couple of simulated
-        // tests to see if options are propagated correctly.
-        // Control: insure options are not set when not specified
-        unset($options['skip-tables-list']);
-        unlink($full_dump_file_path);
-        $this->drush('sql-dump', [], $options);
-        $this->assertFileExists($full_dump_file_path);
-        $full_dump_file = file_get_contents($full_dump_file_path);
-        // Test that we have sane contents.
-        $this->assertContains('CREATE TABLE `menu_tree', $full_dump_file);
-        // Test absence of skip-files-list.
-        $this->assertContains('CREATE TABLE `key_value', $full_dump_file);
-
-    // @todo Aliases to local sites are no longer supported. Throw exception?
-    //    $aliasPath = self::getSandbox() . '/aliases';
-    //    mkdir($aliasPath);
-    //    $aliasFile = $aliasPath . '/bar.aliases.drushrc.php';
-    //    $aliasContents = <<<EOD
-    //  <?php
-    //  // Written by Unish. This file is safe to delete.
-    //  \$aliases['test'] = array(
-    //    'root' => '$root',
-    //    'uri' => '$uri',
-    //    'site' => 'stage',
-    //    'command-specific' => array(
-    //      'sql-dump' => array(
-    //        'skip-tables-list' => 'hist*,cache*,router,config*,watchdog,key_valu*',
-    //      ),
-    //    ),
-    //  );
-    //EOD;
-    //    file_put_contents($aliasFile, $aliasContents);
-    //    $options['alias-path'] = $aliasPath;
-    //    unlink($full_dump_file_path);
-    //    // Now run again with an alias, and test to see if the option is there
-    //    $this->drush('sql-dump', array(), array_merge($options), '@test');
-    //    $this->assertFileExists($full_dump_file_path);
-    //    $full_dump_file = file_get_contents($full_dump_file_path);
-    //    // Test that we have sane contents.
-    //    $this->assertContains('queue', $full_dump_file);
-    //    // Test skip-files-list and wildcard expansion.
-    //    $this->assertNotContains('CREATE TABLE `key_value', $full_dump_file);
-    //    // Repeat control test:  options not recovered in absence of an alias.
-    //    unlink($full_dump_file_path);
-    //    $this->drush('sql-dump', array(), $options);
-    //    $this->assertFileExists($full_dump_file_path);
-    //    $full_dump_file = file_get_contents($full_dump_file_path);
-    //    // Test that we have sane contents.
-    //    $this->assertContains('queue', $full_dump_file);
-    //    // Test absence of skip-files-list.
-    //    $this->assertContains('CREATE TABLE `key_value', $full_dump_file);
-    //    // Now run yet with @self, and test to see that Drush can recover the option
-    //    // --skip-tables-list, defined in @test.
-    //    unlink($full_dump_file_path);
-    //    $this->drush('sql-dump', array(), $options, '@self');
-    //    $this->assertFileExists($full_dump_file_path);
-    //    $full_dump_file = file_get_contents($full_dump_file_path);
-    //    // Test that we have sane contents.
-    //    $this->assertContains('queue', $full_dump_file);
-    //    // Test absence of skip-files-list.
-    //    $this->assertNotContains('CREATE TABLE `key_value', $full_dump_file);
-    }
-}