setUpDrupal('dev', TRUE); $this->setUpDrupal('stage', TRUE); $dump_dir = UNISH_SANDBOX . "/dump-dir"; mkdir($dump_dir); // Create a user in the staging site $name = 'joe.user'; $mail = "joe.user@myhome.com"; $options = array( 'root' => $this->sites['stage']['root'], 'uri' => 'stage', 'yes' => NULL, ); $this->drush('user-create', array($name), $options + array('password' => 'password', 'mail' => $mail)); // Copy stage to dev with --sanitize $sync_options = array( 'sanitize' => NULL, 'yes' => NULL, 'dump-dir' => $dump_dir ); $this->drush('sql-sync', array('@stage', '@dev'), $sync_options); // Confirm that the sample user has the correct email address on the staging site $this->drush('user-information', array($name), $options + array('pipe' => NULL)); $output = $this->getOutput(); $row = str_getcsv($output); $uid = $row[1]; $this->assertEquals($mail, $row[2], 'email address is unchanged on source site.'); $this->assertEquals($name, $row[0]); $options = array( 'root' => $this->sites['dev']['root'], 'uri' => 'dev', 'yes' => NULL, ); // Confirm that the sample user's email address has been sanitized on the dev site $this->drush('user-information', array($name), $options + array('pipe' => NULL)); $output = $this->getOutput(); $row = str_getcsv($output); $uid = $row[1]; $this->assertEquals("user+2@localhost", $row[2], 'email address was sanitized on destination site.'); $this->assertEquals($name, $row[0]); } }