| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 | 
							- <?php
 
- /*
 
-  * @file
 
-  *   Tests for core commands.
 
-  */
 
- class coreCase extends Drush_TestCase {
 
-   /*
 
-    * Test standalone php-script scripts. Assure that script args and options work.
 
-    */
 
-   public function testStandaloneScript() {
 
-     $this->drush('version', array('drush_version'), array('pipe' => NULL));
 
-     $standard = $this->getOutput();
 
-     // Write out a hellounish.script into the sandbox. The correct /path/to/drush
 
-     // is in the shebang line.
 
-     $filename = 'hellounish.script';
 
-     $data = '#!/usr/bin/env [PATH-TO-DRUSH]
 
- $arg = drush_shift();
 
- drush_invoke("version", $arg);
 
- ';
 
-     $data = str_replace('[PATH-TO-DRUSH]', UNISH_DRUSH, $data);
 
-     $script = UNISH_SANDBOX . '/' . $filename;
 
-     file_put_contents($script, $data);
 
-     chmod($script, 0755);
 
-     $this->execute("$script drush_version --pipe");
 
-     $standalone = $this->getOutput();
 
-     $this->assertEquals($standard, $standalone);
 
-   }
 
-   function testDrupalDirectory() {
 
-     $this->setUpDrupal('dev', TRUE);
 
-     $root = $this->sites['dev']['root'];
 
-     $options = array(
 
-       'root' => $root,
 
-       'uri' => 'dev',
 
-       'verbose' => NULL,
 
-       'yes' => NULL,
 
-     );
 
-     $this->drush('pm-download', array('devel-7.x-1.0'), $options);
 
-     $this->drush('pm-enable', array('menu', 'devel'), $options);
 
-     $this->drush('drupal-directory', array('devel'), $options);
 
-     $output = $this->getOutput();
 
-     $this->assertEquals($root . '/sites/all/modules/devel', $output);
 
-     $this->drush('drupal-directory', array('%files'), $options);
 
-     $output = $this->getOutput();
 
-     $this->assertEquals($root . '/sites/dev/files', $output);
 
-     $this->drush('drupal-directory', array('%modules'), $options);
 
-     $output = $this->getOutput();
 
-     $this->assertEquals($root . '/sites/all/modules', $output);
 
-   }
 
-   function testCoreCLI() {
 
-     /*
 
-      * @todo
 
-      *   - BASHRC_PATH. Same file cleanup woes as contextTest.
 
-      *   - DRUSH_CLI
 
-      *   - INITIAL_SITE
 
-      *   - PS1. Hard to test in non interactive session?
 
-      *   - on
 
-      *   - use
 
-      *   - cd, cdd, lsd
 
-      *   - override, contextual
 
-      */
 
-     // Exercise core-cli's interactive mode.
 
-     // Include unit.drush.inc commandfile.
 
-     $options = array(
 
-       'include' => dirname(__FILE__),
 
-     );
 
-     // These commands will throw a failure if they return non-zero exit code.
 
-     // Assure that we create a bash function for command names.
 
-     $options['unit-extra'] = 'core-status;exit';
 
-     $this->drush('core-cli', array(), $options);
 
-     // Assure that we create a bash function for command aliases.
 
-     $options['unit-extra'] = 'st;exit';
 
-     $this->drush('core-cli', array(), $options);
 
-     // Assure that we create a bash alias for site aliases.
 
-     // First, write an alias file to the sandbox.
 
-     $path = UNISH_SANDBOX . '/aliases.drushrc.php';
 
-     $aliases['cliAlias'] = array(
 
-       'root' => $this->sites['dev']['root'],
 
-       'uri' => 'dev',
 
-     );
 
-     $contents = $this->file_aliases($aliases);
 
-     $return = file_put_contents($path, $contents);
 
-     // Append a bash command which starts with alias name (i.e. @cliAlias).
 
-     $options['unit-extra'] = sprintf('@cliAlias core-status --alias-path=%s;exit', UNISH_SANDBOX);
 
-     $options['alias-path'] = UNISH_SANDBOX;
 
-     $this->drush('core-cli', array(), $options);
 
-     // $this->markTestIncomplete('In progress below.');
 
-     // Exercise core-cli's non-interactive mode.
 
-     // We spawn our own bash session using the --pipe feature of core-cli.
 
-     //$options = array(
 
-     //  'pipe' => NULL,
 
-     //  'alias-path' => UNISH_SANDBOX,
 
-     //);
 
-     //$this->drush('core-cli', array(), $options);
 
-     //$bashrc_data = $this->getOutput();
 
-     //$bashrc_file = UNISH_SANDBOX . '/.bashrc';
 
-     //$extra = 'cd @cliAlias;exit;';
 
-     //$return = file_put_contents($bashrc_file, $bashrc_data . $extra);
 
-     //$this->setUpDrupal('dev', FALSE);
 
-     //$this->execute('bash --rcfile ' . $bashrc_file);
 
-     //$output = $this->getOutput();
 
-     //$this->assertContains('????', $output);
 
-   }
 
- }
 
 
  |