Issue #1619898 by Rob Loach, aspilicious, BTMash: Convert upgrade tests to PSR-0.
parent
7a83b8f314
commit
9c93a2afb4
|
@ -0,0 +1,87 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Definition of Drupal\system\Tests\Upgrade\BareMinimalUpgradePathTest.
|
||||
*/
|
||||
|
||||
namespace Drupal\system\Tests\Upgrade;
|
||||
|
||||
/**
|
||||
* Performs major version release upgrade tests on a bare database.
|
||||
*
|
||||
* Loads an installation of Drupal 7.x and runs the upgrade process on it.
|
||||
*
|
||||
* The install contains the minimal profile modules (without any generated
|
||||
* content) so that an upgrade from of a site under this profile may be tested.
|
||||
*/
|
||||
class BareMinimalUpgradePathTest extends UpgradePathTestBase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Basic minimal profile upgrade path, bare database',
|
||||
'description' => 'Basic upgrade path tests for a minimal profile install with a bare database.',
|
||||
'group' => 'Upgrade path',
|
||||
);
|
||||
}
|
||||
|
||||
public function setUp() {
|
||||
// Path to the database dump files.
|
||||
$this->databaseDumpFiles = array(
|
||||
drupal_get_path('module', 'system') . '/tests/upgrade/drupal-7.bare.minimal.database.php.gz',
|
||||
);
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a successful major version release upgrade.
|
||||
*/
|
||||
public function testBasicMinimalUpgrade() {
|
||||
$this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
|
||||
|
||||
// Ensure that the new Entity module is enabled after upgrade.
|
||||
$this->assertTrue(module_exists('entity'), 'Entity module enabled after upgrade.');
|
||||
|
||||
// Hit the frontpage.
|
||||
$this->drupalGet('');
|
||||
$this->assertResponse(200);
|
||||
|
||||
// Verify that we are still logged in.
|
||||
$this->drupalGet('user');
|
||||
$this->clickLink(t('Edit'));
|
||||
$this->assertEqual($this->getUrl(), url('user/1/edit', array('absolute' => TRUE)), t('We are still logged in as admin at the end of the upgrade.'));
|
||||
|
||||
// Logout and verify that we can login back in with our initial password.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// The previous login should've triggered a password rehash, so login one
|
||||
// more time to make sure the new hash is readable.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// Test that the site name is correctly displayed.
|
||||
$this->assertText('drupal', t('The site name is correctly displayed.'));
|
||||
|
||||
// Verify that the main admin sections are available.
|
||||
$this->drupalGet('admin');
|
||||
$this->assertText(t('Content'));
|
||||
$this->assertText(t('Appearance'));
|
||||
$this->assertText(t('People'));
|
||||
$this->assertText(t('Configuration'));
|
||||
$this->assertText(t('Reports'));
|
||||
$this->assertText(t('Structure'));
|
||||
$this->assertText(t('Modules'));
|
||||
|
||||
// Confirm that no {menu_links} entry exists for user/autocomplete.
|
||||
$result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField();
|
||||
$this->assertFalse($result, t('No {menu_links} entry exists for user/autocomplete'));
|
||||
}
|
||||
}
|
|
@ -0,0 +1,88 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Definition of Drupal\system\Tests\Upgrade\BareStandardUpgradePathTest.
|
||||
*/
|
||||
|
||||
namespace Drupal\system\Tests\Upgrade;
|
||||
|
||||
/**
|
||||
* Performs major version release upgrade tests on a bare database.
|
||||
*
|
||||
* Loads an installation of Drupal 7.x and runs the upgrade process on it.
|
||||
*
|
||||
* The install contains the standard profile (plus all optional) modules
|
||||
* without any content so that an update from any of the modules under this
|
||||
* profile installation can be wholly tested.
|
||||
*/
|
||||
class BareStandardUpgradePathTest extends UpgradePathTestBase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Basic standard + all profile upgrade path, bare database',
|
||||
'description' => 'Basic upgrade path tests for a standard profile install with all enabled modules and a bare database.',
|
||||
'group' => 'Upgrade path',
|
||||
);
|
||||
}
|
||||
|
||||
public function setUp() {
|
||||
// Path to the database dump files.
|
||||
$this->databaseDumpFiles = array(
|
||||
drupal_get_path('module', 'system') . '/tests/upgrade/drupal-7.bare.standard_all.database.php.gz',
|
||||
);
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a successful major version release upgrade.
|
||||
*/
|
||||
public function testBasicStandardUpgrade() {
|
||||
$this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
|
||||
|
||||
// Ensure that the new Entity module is enabled after upgrade.
|
||||
$this->assertTrue(module_exists('entity'), 'Entity module enabled after upgrade.');
|
||||
|
||||
// Hit the frontpage.
|
||||
$this->drupalGet('');
|
||||
$this->assertResponse(200);
|
||||
|
||||
// Verify that we are still logged in.
|
||||
$this->drupalGet('user');
|
||||
$this->clickLink(t('Edit'));
|
||||
$this->assertEqual($this->getUrl(), url('user/1/edit', array('absolute' => TRUE)), t('We are still logged in as admin at the end of the upgrade.'));
|
||||
|
||||
// Logout and verify that we can login back in with our initial password.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// The previous login should've triggered a password rehash, so login one
|
||||
// more time to make sure the new hash is readable.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// Test that the site name is correctly displayed.
|
||||
$this->assertText('drupal', t('The site name is correctly displayed.'));
|
||||
|
||||
// Verify that the main admin sections are available.
|
||||
$this->drupalGet('admin');
|
||||
$this->assertText(t('Content'));
|
||||
$this->assertText(t('Appearance'));
|
||||
$this->assertText(t('People'));
|
||||
$this->assertText(t('Configuration'));
|
||||
$this->assertText(t('Reports'));
|
||||
$this->assertText(t('Structure'));
|
||||
$this->assertText(t('Modules'));
|
||||
|
||||
// Confirm that no {menu_links} entry exists for user/autocomplete.
|
||||
$result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField();
|
||||
$this->assertFalse($result, t('No {menu_links} entry exists for user/autocomplete'));
|
||||
}
|
||||
}
|
|
@ -0,0 +1,87 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Definition of Drupal\system\Tests\Upgrade\FilledMinimalUpgradePathTest.
|
||||
*/
|
||||
|
||||
namespace Drupal\system\Tests\Upgrade;
|
||||
|
||||
/**
|
||||
* Performs major version release upgrade tests on a populated database.
|
||||
*
|
||||
* Loads an installation of Drupal 7.x and runs the upgrade process on it.
|
||||
*
|
||||
* The install contains the minimal profile modules (along with generated
|
||||
* content) so that an update from of a site under this profile may be tested.
|
||||
*/
|
||||
class FilledMinimalUpgradePathTest extends UpgradePathTestBase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Basic minimal profile upgrade path, populated database',
|
||||
'description' => 'Basic upgrade path tests for a minimal profile install with a populated database.',
|
||||
'group' => 'Upgrade path',
|
||||
);
|
||||
}
|
||||
|
||||
public function setUp() {
|
||||
// Path to the database dump files.
|
||||
$this->databaseDumpFiles = array(
|
||||
drupal_get_path('module', 'system') . '/tests/upgrade/drupal-7.filled.minimal.database.php.gz',
|
||||
);
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a successful point release update.
|
||||
*/
|
||||
public function testFilledMinimalUpgrade() {
|
||||
$this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
|
||||
|
||||
// Ensure that the new Entity module is enabled after upgrade.
|
||||
$this->assertTrue(module_exists('entity'), 'Entity module enabled after upgrade.');
|
||||
|
||||
// Hit the frontpage.
|
||||
$this->drupalGet('');
|
||||
$this->assertResponse(200);
|
||||
|
||||
// Verify that we are still logged in.
|
||||
$this->drupalGet('user');
|
||||
$this->clickLink(t('Edit'));
|
||||
$this->assertEqual($this->getUrl(), url('user/1/edit', array('absolute' => TRUE)), t('We are still logged in as admin at the end of the upgrade.'));
|
||||
|
||||
// Logout and verify that we can login back in with our initial password.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// The previous login should've triggered a password rehash, so login one
|
||||
// more time to make sure the new hash is readable.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// Test that the site name is correctly displayed.
|
||||
$this->assertText('drupal', t('The site name is correctly displayed.'));
|
||||
|
||||
// Verify that the main admin sections are available.
|
||||
$this->drupalGet('admin');
|
||||
$this->assertText(t('Content'));
|
||||
$this->assertText(t('Appearance'));
|
||||
$this->assertText(t('People'));
|
||||
$this->assertText(t('Configuration'));
|
||||
$this->assertText(t('Reports'));
|
||||
$this->assertText(t('Structure'));
|
||||
$this->assertText(t('Modules'));
|
||||
|
||||
// Confirm that no {menu_links} entry exists for user/autocomplete.
|
||||
$result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField();
|
||||
$this->assertFalse($result, t('No {menu_links} entry exists for user/autocomplete'));
|
||||
}
|
||||
}
|
|
@ -0,0 +1,88 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Definition of Drupal\system\Tests\Upgrade\FilledStandardUpgradePathTest.
|
||||
*/
|
||||
|
||||
namespace Drupal\system\Tests\Upgrade;
|
||||
|
||||
/**
|
||||
* Performs major version release upgrade tests on a populated database.
|
||||
*
|
||||
* Loads an installation of Drupal 7.x and runs the upgrade process on it.
|
||||
*
|
||||
* The install contains the standard profile (plus all optional) modules
|
||||
* with generated content so that an update from any of the modules under this
|
||||
* profile installation can be wholly tested.
|
||||
*/
|
||||
class FilledStandardUpgradePathTest extends UpgradePathTestBase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Basic standard + all profile upgrade path, populated database',
|
||||
'description' => 'Basic upgrade path tests for a standard profile install with all enabled modules and a populated database.',
|
||||
'group' => 'Upgrade path',
|
||||
);
|
||||
}
|
||||
|
||||
public function setUp() {
|
||||
// Path to the database dump files.
|
||||
$this->databaseDumpFiles = array(
|
||||
drupal_get_path('module', 'system') . '/tests/upgrade/drupal-7.filled.standard_all.database.php.gz',
|
||||
);
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a successful point release update.
|
||||
*/
|
||||
public function testFilledStandardUpgrade() {
|
||||
$this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
|
||||
|
||||
// Ensure that the new Entity module is enabled after upgrade.
|
||||
$this->assertTrue(module_exists('entity'), 'Entity module enabled after upgrade.');
|
||||
|
||||
// Hit the frontpage.
|
||||
$this->drupalGet('');
|
||||
$this->assertResponse(200);
|
||||
|
||||
// Verify that we are still logged in.
|
||||
$this->drupalGet('user');
|
||||
$this->clickLink(t('Edit'));
|
||||
$this->assertEqual($this->getUrl(), url('user/1/edit', array('absolute' => TRUE)), t('We are still logged in as admin at the end of the upgrade.'));
|
||||
|
||||
// Logout and verify that we can login back in with our initial password.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// The previous login should've triggered a password rehash, so login one
|
||||
// more time to make sure the new hash is readable.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// Test that the site name is correctly displayed.
|
||||
$this->assertText('drupal', t('The site name is correctly displayed.'));
|
||||
|
||||
// Verify that the main admin sections are available.
|
||||
$this->drupalGet('admin');
|
||||
$this->assertText(t('Content'));
|
||||
$this->assertText(t('Appearance'));
|
||||
$this->assertText(t('People'));
|
||||
$this->assertText(t('Configuration'));
|
||||
$this->assertText(t('Reports'));
|
||||
$this->assertText(t('Structure'));
|
||||
$this->assertText(t('Modules'));
|
||||
|
||||
// Confirm that no {menu_links} entry exists for user/autocomplete.
|
||||
$result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField();
|
||||
$this->assertFalse($result, t('No {menu_links} entry exists for user/autocomplete'));
|
||||
}
|
||||
}
|
|
@ -1,16 +1,19 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Upgrade tests for the Language module.
|
||||
* Definition of Drupal\system\Tests\Upgrade\LanguageUpgradePathTest.
|
||||
*/
|
||||
|
||||
namespace Drupal\system\Tests\Upgrade;
|
||||
|
||||
/**
|
||||
* Tests upgrading a filled database with language data.
|
||||
*
|
||||
* Loads a filled installation of Drupal 7 with language data and runs the
|
||||
* upgrade process on it.
|
||||
*/
|
||||
class LanguageUpgradePathTestCase extends UpgradePathTestCase {
|
||||
class LanguageUpgradePathTest extends UpgradePathTestBase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Language upgrade test',
|
|
@ -0,0 +1,292 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Definition of Drupal\system\Tests\Upgrade\UpgradePathTestBase.
|
||||
*/
|
||||
|
||||
namespace Drupal\system\Tests\Upgrade;
|
||||
|
||||
use Drupal\Core\Database\Database;
|
||||
use Drupal\simpletest\WebTestBase;
|
||||
|
||||
/**
|
||||
* Perform end-to-end tests of the upgrade path.
|
||||
*/
|
||||
abstract class UpgradePathTestBase extends WebTestBase {
|
||||
|
||||
/**
|
||||
* The file path(s) to the dumped database(s) to load into the child site.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
var $databaseDumpFiles = array();
|
||||
|
||||
/**
|
||||
* Flag that indicates whether the child site has been upgraded.
|
||||
*/
|
||||
var $upgradedSite = FALSE;
|
||||
|
||||
/**
|
||||
* Array of errors triggered during the upgrade process.
|
||||
*/
|
||||
var $upgradeErrors = array();
|
||||
|
||||
/**
|
||||
* Array of modules loaded when the test starts.
|
||||
*/
|
||||
var $loadedModules = array();
|
||||
|
||||
/**
|
||||
* Flag to indicate whether there are pending updates or not.
|
||||
*/
|
||||
var $pendingUpdates = TRUE;
|
||||
|
||||
/**
|
||||
* Prepares the appropriate session for the release of Drupal being upgraded.
|
||||
*/
|
||||
protected function prepareD8Session() {
|
||||
// Generate and set a D7-compatible session cookie.
|
||||
$this->curlInitialize();
|
||||
$sid = drupal_hash_base64(uniqid(mt_rand(), TRUE) . drupal_random_bytes(55));
|
||||
curl_setopt($this->curlHandle, CURLOPT_COOKIE, rawurlencode(session_name()) . '=' . rawurlencode($sid));
|
||||
|
||||
// Force our way into the session of the child site.
|
||||
drupal_save_session(TRUE);
|
||||
_drupal_session_write($sid, '');
|
||||
drupal_save_session(FALSE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks that zlib is enabled in order to run the upgrade tests.
|
||||
*/
|
||||
protected function checkRequirements() {
|
||||
if (!function_exists('gzopen')) {
|
||||
return array(
|
||||
'Missing zlib requirement for upgrade tests.',
|
||||
);
|
||||
}
|
||||
return parent::checkRequirements();
|
||||
}
|
||||
|
||||
/**
|
||||
* Overrides Drupal\simpletest\WebTestBase::setUp() for upgrade testing.
|
||||
*
|
||||
* @see Drupal\simpletest\WebTestBase::prepareDatabasePrefix()
|
||||
* @see Drupal\simpletest\WebTestBase::changeDatabasePrefix()
|
||||
* @see Drupal\simpletest\WebTestBase::prepareEnvironment()
|
||||
*/
|
||||
protected function setUp() {
|
||||
global $user, $conf;
|
||||
|
||||
// Load the Update API.
|
||||
require_once DRUPAL_ROOT . '/core/includes/update.inc';
|
||||
|
||||
// Reset flags.
|
||||
$this->upgradedSite = FALSE;
|
||||
$this->upgradeErrors = array();
|
||||
|
||||
$this->loadedModules = module_list();
|
||||
|
||||
// Create the database prefix for this test.
|
||||
$this->prepareDatabasePrefix();
|
||||
|
||||
// Prepare the environment for running tests.
|
||||
$this->prepareEnvironment();
|
||||
|
||||
// Reset all statics and variables to perform tests in a clean environment.
|
||||
$conf = array();
|
||||
drupal_static_reset();
|
||||
|
||||
// Change the database prefix.
|
||||
// All static variables need to be reset before the database prefix is
|
||||
// changed, since Drupal\Core\Utility\CacheArray implementations attempt to
|
||||
// write back to persistent caches when they are destructed.
|
||||
$this->changeDatabasePrefix();
|
||||
|
||||
// Unregister the registry.
|
||||
// This is required to make sure that the database layer works properly.
|
||||
spl_autoload_unregister('drupal_autoload_class');
|
||||
spl_autoload_unregister('drupal_autoload_interface');
|
||||
|
||||
// Load the database from the portable PHP dump.
|
||||
// The files may be gzipped.
|
||||
foreach ($this->databaseDumpFiles as $file) {
|
||||
if (substr($file, -3) == '.gz') {
|
||||
$file = "compress.zlib://$file";
|
||||
}
|
||||
require $file;
|
||||
}
|
||||
|
||||
// Set path variables.
|
||||
$this->variable_set('file_public_path', $this->public_files_directory);
|
||||
$this->variable_set('file_private_path', $this->private_files_directory);
|
||||
$this->variable_set('file_temporary_path', $this->temp_files_directory);
|
||||
|
||||
$this->pass('Finished loading the dump.');
|
||||
|
||||
// Ensure that the session is not written to the new environment and replace
|
||||
// the global $user session with uid 1 from the new test site.
|
||||
drupal_save_session(FALSE);
|
||||
// Login as uid 1.
|
||||
$user = db_query('SELECT * FROM {users} WHERE uid = :uid', array(':uid' => 1))->fetchObject();
|
||||
|
||||
// Generate and set a D8-compatible session cookie.
|
||||
$this->prepareD8Session();
|
||||
|
||||
// Restore necessary variables.
|
||||
// @todo Convert into config('system.site')->set('mail')?
|
||||
$this->variable_set('site_mail', 'simpletest@example.com');
|
||||
|
||||
drupal_set_time_limit($this->timeLimit);
|
||||
$this->setup = TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Specialized variable_set() that works even if the child site is not upgraded.
|
||||
*
|
||||
* @param $name
|
||||
* The name of the variable to set.
|
||||
* @param $value
|
||||
* The value to set. This can be any PHP data type; these functions take care
|
||||
* of serialization as necessary.
|
||||
*
|
||||
* @todo Update for D8 configuration system.
|
||||
*/
|
||||
protected function variable_set($name, $value) {
|
||||
db_delete('variable')
|
||||
->condition('name', $name)
|
||||
->execute();
|
||||
db_insert('variable')
|
||||
->fields(array(
|
||||
'name' => $name,
|
||||
'value' => serialize($value),
|
||||
))
|
||||
->execute();
|
||||
|
||||
try {
|
||||
cache()->delete('variables');
|
||||
cache('bootstrap')->delete('variables');
|
||||
}
|
||||
// Since cache_bootstrap won't exist in a Drupal 6 site, ignore the
|
||||
// exception if the above fails.
|
||||
catch (Exception $e) {}
|
||||
}
|
||||
|
||||
/**
|
||||
* Specialized refreshVariables().
|
||||
*/
|
||||
protected function refreshVariables() {
|
||||
// No operation if the child has not been upgraded yet.
|
||||
if (!$this->upgradedSite) {
|
||||
return parent::refreshVariables();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform the upgrade.
|
||||
*
|
||||
* @param $register_errors
|
||||
* Register the errors during the upgrade process as failures.
|
||||
* @return
|
||||
* TRUE if the upgrade succeeded, FALSE otherwise.
|
||||
*/
|
||||
protected function performUpgrade($register_errors = TRUE) {
|
||||
|
||||
// Load the first update screen.
|
||||
$update_url = $GLOBALS['base_url'] . '/core/update.php';
|
||||
$this->drupalGet($update_url, array('external' => TRUE));
|
||||
if (!$this->assertResponse(200)) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// Continue.
|
||||
$this->drupalPost(NULL, array(), t('Continue'));
|
||||
if (!$this->assertResponse(200)) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// The test should pass if there are no pending updates.
|
||||
$content = $this->drupalGetContent();
|
||||
if (strpos($content, t('No pending updates.')) !== FALSE) {
|
||||
$this->pass(t('No pending updates and therefore no upgrade process to test.'));
|
||||
$this->pendingUpdates = FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// Go!
|
||||
$this->drupalPost(NULL, array(), t('Apply pending updates'));
|
||||
if (!$this->assertResponse(200)) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// Check for errors during the update process.
|
||||
foreach ($this->xpath('//li[@class=:class]', array(':class' => 'failure')) as $element) {
|
||||
$message = strip_tags($element->asXML());
|
||||
$this->upgradeErrors[] = $message;
|
||||
if ($register_errors) {
|
||||
$this->fail($message);
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($this->upgradeErrors)) {
|
||||
// Upgrade failed, the installation might be in an inconsistent state,
|
||||
// don't process.
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// Check if there still are pending updates.
|
||||
$this->drupalGet($update_url, array('external' => TRUE));
|
||||
$this->drupalPost(NULL, array(), t('Continue'));
|
||||
if (!$this->assertText(t('No pending updates.'), t('No pending updates at the end of the update process.'))) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// Upgrade succeed, rebuild the environment so that we can call the API
|
||||
// of the child site directly from this request.
|
||||
$this->upgradedSite = TRUE;
|
||||
|
||||
// Reload module list. For modules that are enabled in the test database,
|
||||
// but not on the test client, we need to load the code here.
|
||||
$new_modules = array_diff(module_list(TRUE), $this->loadedModules);
|
||||
foreach ($new_modules as $module) {
|
||||
drupal_load('module', $module);
|
||||
}
|
||||
|
||||
// Re-register autoload functions.
|
||||
spl_autoload_register('drupal_autoload_class');
|
||||
spl_autoload_register('drupal_autoload_interface');
|
||||
|
||||
// Reload hook implementations
|
||||
module_implements_reset();
|
||||
|
||||
// Rebuild caches.
|
||||
drupal_static_reset();
|
||||
drupal_flush_all_caches();
|
||||
|
||||
// Reload global $conf array and permissions.
|
||||
$this->refreshVariables();
|
||||
$this->checkPermissions(array(), TRUE);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Force uninstall all modules from a test database, except those listed.
|
||||
*
|
||||
* @param $modules
|
||||
* The list of modules to keep installed. Required core modules will
|
||||
* always be kept.
|
||||
*/
|
||||
protected function uninstallModulesExcept(array $modules) {
|
||||
$required_modules = array('block', 'dblog', 'filter', 'node', 'system', 'update', 'user');
|
||||
|
||||
$modules = array_merge($required_modules, $modules);
|
||||
|
||||
db_delete('system')
|
||||
->condition('type', 'module')
|
||||
->condition('name', $modules, 'NOT IN')
|
||||
->execute();
|
||||
}
|
||||
|
||||
}
|
|
@ -2,16 +2,19 @@
|
|||
|
||||
/**
|
||||
* @file
|
||||
* Upgrade tests for the conversion of serial role IDs to role machine names.
|
||||
* Definition of Drupal\system\Tests\Upgrade\UserRoleUpgradePathTest.
|
||||
*/
|
||||
|
||||
namespace Drupal\system\Tests\Upgrade;
|
||||
|
||||
/**
|
||||
* Tests upgrading a bare database with user role data.
|
||||
*
|
||||
* Loads a bare installation of Drupal 7 with role data and runs the
|
||||
* upgrade process on it.
|
||||
* upgrade process on it. Tests for the conversion of serial role IDs to role
|
||||
* machine names.
|
||||
*/
|
||||
class UserRoleUpgradePathTestCase extends UpgradePathTestCase {
|
||||
class UserRoleUpgradePathTest extends UpgradePathTestBase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Role upgrade test',
|
|
@ -1,603 +0,0 @@
|
|||
<?php
|
||||
|
||||
use Drupal\Core\Database\Database;
|
||||
use Drupal\simpletest\WebTestBase;
|
||||
|
||||
/**
|
||||
* Perform end-to-end tests of the upgrade path.
|
||||
*/
|
||||
abstract class UpgradePathTestCase extends WebTestBase {
|
||||
|
||||
/**
|
||||
* The file path(s) to the dumped database(s) to load into the child site.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
var $databaseDumpFiles = array();
|
||||
|
||||
/**
|
||||
* Flag that indicates whether the child site has been upgraded.
|
||||
*/
|
||||
var $upgradedSite = FALSE;
|
||||
|
||||
/**
|
||||
* Array of errors triggered during the upgrade process.
|
||||
*/
|
||||
var $upgradeErrors = array();
|
||||
|
||||
/**
|
||||
* Array of modules loaded when the test starts.
|
||||
*/
|
||||
var $loadedModules = array();
|
||||
|
||||
/**
|
||||
* Flag to indicate whether there are pending updates or not.
|
||||
*/
|
||||
var $pendingUpdates = TRUE;
|
||||
|
||||
/**
|
||||
* Prepares the appropriate session for the release of Drupal being upgraded.
|
||||
*/
|
||||
protected function prepareD8Session() {
|
||||
// Generate and set a D7-compatible session cookie.
|
||||
$this->curlInitialize();
|
||||
$sid = drupal_hash_base64(uniqid(mt_rand(), TRUE) . drupal_random_bytes(55));
|
||||
curl_setopt($this->curlHandle, CURLOPT_COOKIE, rawurlencode(session_name()) . '=' . rawurlencode($sid));
|
||||
|
||||
// Force our way into the session of the child site.
|
||||
drupal_save_session(TRUE);
|
||||
_drupal_session_write($sid, '');
|
||||
drupal_save_session(FALSE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks that zlib is enabled in order to run the upgrade tests.
|
||||
*/
|
||||
protected function checkRequirements() {
|
||||
if (!function_exists('gzopen')) {
|
||||
return array(
|
||||
'Missing zlib requirement for upgrade tests.',
|
||||
);
|
||||
}
|
||||
return parent::checkRequirements();
|
||||
}
|
||||
|
||||
/**
|
||||
* Overrides Drupal\simpletest\WebTestBase::setUp() for upgrade testing.
|
||||
*
|
||||
* @see Drupal\simpletest\WebTestBase::prepareDatabasePrefix()
|
||||
* @see Drupal\simpletest\WebTestBase::changeDatabasePrefix()
|
||||
* @see Drupal\simpletest\WebTestBase::prepareEnvironment()
|
||||
*/
|
||||
protected function setUp() {
|
||||
global $user, $conf;
|
||||
|
||||
// Load the Update API.
|
||||
require_once DRUPAL_ROOT . '/core/includes/update.inc';
|
||||
|
||||
// Reset flags.
|
||||
$this->upgradedSite = FALSE;
|
||||
$this->upgradeErrors = array();
|
||||
|
||||
$this->loadedModules = module_list();
|
||||
|
||||
// Create the database prefix for this test.
|
||||
$this->prepareDatabasePrefix();
|
||||
|
||||
// Prepare the environment for running tests.
|
||||
$this->prepareEnvironment();
|
||||
|
||||
// Reset all statics and variables to perform tests in a clean environment.
|
||||
$conf = array();
|
||||
drupal_static_reset();
|
||||
|
||||
// Change the database prefix.
|
||||
// All static variables need to be reset before the database prefix is
|
||||
// changed, since Drupal\Core\Utility\CacheArray implementations attempt to
|
||||
// write back to persistent caches when they are destructed.
|
||||
$this->changeDatabasePrefix();
|
||||
|
||||
// Unregister the registry.
|
||||
// This is required to make sure that the database layer works properly.
|
||||
spl_autoload_unregister('drupal_autoload_class');
|
||||
spl_autoload_unregister('drupal_autoload_interface');
|
||||
|
||||
// Load the database from the portable PHP dump.
|
||||
// The files may be gzipped.
|
||||
foreach ($this->databaseDumpFiles as $file) {
|
||||
if (substr($file, -3) == '.gz') {
|
||||
$file = "compress.zlib://$file";
|
||||
}
|
||||
require $file;
|
||||
}
|
||||
|
||||
// Set path variables.
|
||||
$this->variable_set('file_public_path', $this->public_files_directory);
|
||||
$this->variable_set('file_private_path', $this->private_files_directory);
|
||||
$this->variable_set('file_temporary_path', $this->temp_files_directory);
|
||||
|
||||
$this->pass('Finished loading the dump.');
|
||||
|
||||
// Ensure that the session is not written to the new environment and replace
|
||||
// the global $user session with uid 1 from the new test site.
|
||||
drupal_save_session(FALSE);
|
||||
// Login as uid 1.
|
||||
$user = db_query('SELECT * FROM {users} WHERE uid = :uid', array(':uid' => 1))->fetchObject();
|
||||
|
||||
// Generate and set a D8-compatible session cookie.
|
||||
$this->prepareD8Session();
|
||||
|
||||
// Restore necessary variables.
|
||||
// @todo Convert into config('system.site')->set('mail')?
|
||||
$this->variable_set('site_mail', 'simpletest@example.com');
|
||||
|
||||
drupal_set_time_limit($this->timeLimit);
|
||||
$this->setup = TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Specialized variable_set() that works even if the child site is not upgraded.
|
||||
*
|
||||
* @param $name
|
||||
* The name of the variable to set.
|
||||
* @param $value
|
||||
* The value to set. This can be any PHP data type; these functions take care
|
||||
* of serialization as necessary.
|
||||
*
|
||||
* @todo Update for D8 configuration system.
|
||||
*/
|
||||
protected function variable_set($name, $value) {
|
||||
db_delete('variable')
|
||||
->condition('name', $name)
|
||||
->execute();
|
||||
db_insert('variable')
|
||||
->fields(array(
|
||||
'name' => $name,
|
||||
'value' => serialize($value),
|
||||
))
|
||||
->execute();
|
||||
|
||||
try {
|
||||
cache()->delete('variables');
|
||||
cache('bootstrap')->delete('variables');
|
||||
}
|
||||
// Since cache_bootstrap won't exist in a Drupal 6 site, ignore the
|
||||
// exception if the above fails.
|
||||
catch (Exception $e) {}
|
||||
}
|
||||
|
||||
/**
|
||||
* Specialized refreshVariables().
|
||||
*/
|
||||
protected function refreshVariables() {
|
||||
// No operation if the child has not been upgraded yet.
|
||||
if (!$this->upgradedSite) {
|
||||
return parent::refreshVariables();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform the upgrade.
|
||||
*
|
||||
* @param $register_errors
|
||||
* Register the errors during the upgrade process as failures.
|
||||
* @return
|
||||
* TRUE if the upgrade succeeded, FALSE otherwise.
|
||||
*/
|
||||
protected function performUpgrade($register_errors = TRUE) {
|
||||
|
||||
// Load the first update screen.
|
||||
$update_url = $GLOBALS['base_url'] . '/core/update.php';
|
||||
$this->drupalGet($update_url, array('external' => TRUE));
|
||||
if (!$this->assertResponse(200)) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// Continue.
|
||||
$this->drupalPost(NULL, array(), t('Continue'));
|
||||
if (!$this->assertResponse(200)) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// The test should pass if there are no pending updates.
|
||||
$content = $this->drupalGetContent();
|
||||
if (strpos($content, t('No pending updates.')) !== FALSE) {
|
||||
$this->pass(t('No pending updates and therefore no upgrade process to test.'));
|
||||
$this->pendingUpdates = FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// Go!
|
||||
$this->drupalPost(NULL, array(), t('Apply pending updates'));
|
||||
if (!$this->assertResponse(200)) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// Check for errors during the update process.
|
||||
foreach ($this->xpath('//li[@class=:class]', array(':class' => 'failure')) as $element) {
|
||||
$message = strip_tags($element->asXML());
|
||||
$this->upgradeErrors[] = $message;
|
||||
if ($register_errors) {
|
||||
$this->fail($message);
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($this->upgradeErrors)) {
|
||||
// Upgrade failed, the installation might be in an inconsistent state,
|
||||
// don't process.
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// Check if there still are pending updates.
|
||||
$this->drupalGet($update_url, array('external' => TRUE));
|
||||
$this->drupalPost(NULL, array(), t('Continue'));
|
||||
if (!$this->assertText(t('No pending updates.'), t('No pending updates at the end of the update process.'))) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// Upgrade succeed, rebuild the environment so that we can call the API
|
||||
// of the child site directly from this request.
|
||||
$this->upgradedSite = TRUE;
|
||||
|
||||
// Reload module list. For modules that are enabled in the test database,
|
||||
// but not on the test client, we need to load the code here.
|
||||
$new_modules = array_diff(module_list(TRUE), $this->loadedModules);
|
||||
foreach ($new_modules as $module) {
|
||||
drupal_load('module', $module);
|
||||
}
|
||||
|
||||
// Re-register autoload functions.
|
||||
spl_autoload_register('drupal_autoload_class');
|
||||
spl_autoload_register('drupal_autoload_interface');
|
||||
|
||||
// Reload hook implementations
|
||||
module_implements_reset();
|
||||
|
||||
// Rebuild caches.
|
||||
drupal_static_reset();
|
||||
drupal_flush_all_caches();
|
||||
|
||||
// Reload global $conf array and permissions.
|
||||
$this->refreshVariables();
|
||||
$this->checkPermissions(array(), TRUE);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Force uninstall all modules from a test database, except those listed.
|
||||
*
|
||||
* @param $modules
|
||||
* The list of modules to keep installed. Required core modules will
|
||||
* always be kept.
|
||||
*/
|
||||
protected function uninstallModulesExcept(array $modules) {
|
||||
$required_modules = array('block', 'dblog', 'filter', 'node', 'system', 'update', 'user');
|
||||
|
||||
$modules = array_merge($required_modules, $modules);
|
||||
|
||||
db_delete('system')
|
||||
->condition('type', 'module')
|
||||
->condition('name', $modules, 'NOT IN')
|
||||
->execute();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Performs major version release upgrade tests on a bare database.
|
||||
*
|
||||
* Loads an installation of Drupal 7.x and runs the upgrade process on it.
|
||||
*
|
||||
* The install contains the minimal profile modules (without any generated
|
||||
* content) so that an upgrade from of a site under this profile may be tested.
|
||||
*/
|
||||
class BareMinimalUpgradePath extends UpgradePathTestCase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Basic minimal profile upgrade path, bare database',
|
||||
'description' => 'Basic upgrade path tests for a minimal profile install with a bare database.',
|
||||
'group' => 'Upgrade path',
|
||||
);
|
||||
}
|
||||
|
||||
public function setUp() {
|
||||
// Path to the database dump files.
|
||||
$this->databaseDumpFiles = array(
|
||||
drupal_get_path('module', 'system') . '/tests/upgrade/drupal-7.bare.minimal.database.php.gz',
|
||||
);
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a successful major version release upgrade.
|
||||
*/
|
||||
public function testBasicMinimalUpgrade() {
|
||||
$this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
|
||||
|
||||
// Ensure that the new Entity module is enabled after upgrade.
|
||||
$this->assertTrue(module_exists('entity'), 'Entity module enabled after upgrade.');
|
||||
|
||||
// Hit the frontpage.
|
||||
$this->drupalGet('');
|
||||
$this->assertResponse(200);
|
||||
|
||||
// Verify that we are still logged in.
|
||||
$this->drupalGet('user');
|
||||
$this->clickLink(t('Edit'));
|
||||
$this->assertEqual($this->getUrl(), url('user/1/edit', array('absolute' => TRUE)), t('We are still logged in as admin at the end of the upgrade.'));
|
||||
|
||||
// Logout and verify that we can login back in with our initial password.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// The previous login should've triggered a password rehash, so login one
|
||||
// more time to make sure the new hash is readable.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// Test that the site name is correctly displayed.
|
||||
$this->assertText('drupal', t('The site name is correctly displayed.'));
|
||||
|
||||
// Verify that the main admin sections are available.
|
||||
$this->drupalGet('admin');
|
||||
$this->assertText(t('Content'));
|
||||
$this->assertText(t('Appearance'));
|
||||
$this->assertText(t('People'));
|
||||
$this->assertText(t('Configuration'));
|
||||
$this->assertText(t('Reports'));
|
||||
$this->assertText(t('Structure'));
|
||||
$this->assertText(t('Modules'));
|
||||
|
||||
// Confirm that no {menu_links} entry exists for user/autocomplete.
|
||||
$result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField();
|
||||
$this->assertFalse($result, t('No {menu_links} entry exists for user/autocomplete'));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Performs major version release upgrade tests on a populated database.
|
||||
*
|
||||
* Loads an installation of Drupal 7.x and runs the upgrade process on it.
|
||||
*
|
||||
* The install contains the minimal profile modules (along with generated
|
||||
* content) so that an update from of a site under this profile may be tested.
|
||||
*/
|
||||
class FilledMinimalUpgradePath extends UpgradePathTestCase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Basic minimal profile upgrade path, populated database',
|
||||
'description' => 'Basic upgrade path tests for a minimal profile install with a populated database.',
|
||||
'group' => 'Upgrade path',
|
||||
);
|
||||
}
|
||||
|
||||
public function setUp() {
|
||||
// Path to the database dump files.
|
||||
$this->databaseDumpFiles = array(
|
||||
drupal_get_path('module', 'system') . '/tests/upgrade/drupal-7.filled.minimal.database.php.gz',
|
||||
);
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a successful point release update.
|
||||
*/
|
||||
public function testFilledMinimalUpgrade() {
|
||||
$this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
|
||||
|
||||
// Ensure that the new Entity module is enabled after upgrade.
|
||||
$this->assertTrue(module_exists('entity'), 'Entity module enabled after upgrade.');
|
||||
|
||||
// Hit the frontpage.
|
||||
$this->drupalGet('');
|
||||
$this->assertResponse(200);
|
||||
|
||||
// Verify that we are still logged in.
|
||||
$this->drupalGet('user');
|
||||
$this->clickLink(t('Edit'));
|
||||
$this->assertEqual($this->getUrl(), url('user/1/edit', array('absolute' => TRUE)), t('We are still logged in as admin at the end of the upgrade.'));
|
||||
|
||||
// Logout and verify that we can login back in with our initial password.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// The previous login should've triggered a password rehash, so login one
|
||||
// more time to make sure the new hash is readable.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// Test that the site name is correctly displayed.
|
||||
$this->assertText('drupal', t('The site name is correctly displayed.'));
|
||||
|
||||
// Verify that the main admin sections are available.
|
||||
$this->drupalGet('admin');
|
||||
$this->assertText(t('Content'));
|
||||
$this->assertText(t('Appearance'));
|
||||
$this->assertText(t('People'));
|
||||
$this->assertText(t('Configuration'));
|
||||
$this->assertText(t('Reports'));
|
||||
$this->assertText(t('Structure'));
|
||||
$this->assertText(t('Modules'));
|
||||
|
||||
// Confirm that no {menu_links} entry exists for user/autocomplete.
|
||||
$result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField();
|
||||
$this->assertFalse($result, t('No {menu_links} entry exists for user/autocomplete'));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Performs major version release upgrade tests on a bare database.
|
||||
*
|
||||
* Loads an installation of Drupal 7.x and runs the upgrade process on it.
|
||||
*
|
||||
* The install contains the standard profile (plus all optional) modules
|
||||
* without any content so that an update from any of the modules under this
|
||||
* profile installation can be wholly tested.
|
||||
*/
|
||||
class BareStandardUpgradePath extends UpgradePathTestCase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Basic standard + all profile upgrade path, bare database',
|
||||
'description' => 'Basic upgrade path tests for a standard profile install with all enabled modules and a bare database.',
|
||||
'group' => 'Upgrade path',
|
||||
);
|
||||
}
|
||||
|
||||
public function setUp() {
|
||||
// Path to the database dump files.
|
||||
$this->databaseDumpFiles = array(
|
||||
drupal_get_path('module', 'system') . '/tests/upgrade/drupal-7.bare.standard_all.database.php.gz',
|
||||
);
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a successful major version release upgrade.
|
||||
*/
|
||||
public function testBasicStandardUpgrade() {
|
||||
$this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
|
||||
|
||||
// Ensure that the new Entity module is enabled after upgrade.
|
||||
$this->assertTrue(module_exists('entity'), 'Entity module enabled after upgrade.');
|
||||
|
||||
// Hit the frontpage.
|
||||
$this->drupalGet('');
|
||||
$this->assertResponse(200);
|
||||
|
||||
// Verify that we are still logged in.
|
||||
$this->drupalGet('user');
|
||||
$this->clickLink(t('Edit'));
|
||||
$this->assertEqual($this->getUrl(), url('user/1/edit', array('absolute' => TRUE)), t('We are still logged in as admin at the end of the upgrade.'));
|
||||
|
||||
// Logout and verify that we can login back in with our initial password.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// The previous login should've triggered a password rehash, so login one
|
||||
// more time to make sure the new hash is readable.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// Test that the site name is correctly displayed.
|
||||
$this->assertText('drupal', t('The site name is correctly displayed.'));
|
||||
|
||||
// Verify that the main admin sections are available.
|
||||
$this->drupalGet('admin');
|
||||
$this->assertText(t('Content'));
|
||||
$this->assertText(t('Appearance'));
|
||||
$this->assertText(t('People'));
|
||||
$this->assertText(t('Configuration'));
|
||||
$this->assertText(t('Reports'));
|
||||
$this->assertText(t('Structure'));
|
||||
$this->assertText(t('Modules'));
|
||||
|
||||
// Confirm that no {menu_links} entry exists for user/autocomplete.
|
||||
$result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField();
|
||||
$this->assertFalse($result, t('No {menu_links} entry exists for user/autocomplete'));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Performs major version release upgrade tests on a populated database.
|
||||
*
|
||||
* Loads an installation of Drupal 7.x and runs the upgrade process on it.
|
||||
*
|
||||
* The install contains the standard profile (plus all optional) modules
|
||||
* with generated content so that an update from any of the modules under this
|
||||
* profile installation can be wholly tested.
|
||||
*/
|
||||
class FilledStandardUpgradePath extends UpgradePathTestCase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Basic standard + all profile upgrade path, populated database',
|
||||
'description' => 'Basic upgrade path tests for a standard profile install with all enabled modules and a populated database.',
|
||||
'group' => 'Upgrade path',
|
||||
);
|
||||
}
|
||||
|
||||
public function setUp() {
|
||||
// Path to the database dump files.
|
||||
$this->databaseDumpFiles = array(
|
||||
drupal_get_path('module', 'system') . '/tests/upgrade/drupal-7.filled.standard_all.database.php.gz',
|
||||
);
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a successful point release update.
|
||||
*/
|
||||
public function testFilledStandardUpgrade() {
|
||||
$this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
|
||||
|
||||
// Ensure that the new Entity module is enabled after upgrade.
|
||||
$this->assertTrue(module_exists('entity'), 'Entity module enabled after upgrade.');
|
||||
|
||||
// Hit the frontpage.
|
||||
$this->drupalGet('');
|
||||
$this->assertResponse(200);
|
||||
|
||||
// Verify that we are still logged in.
|
||||
$this->drupalGet('user');
|
||||
$this->clickLink(t('Edit'));
|
||||
$this->assertEqual($this->getUrl(), url('user/1/edit', array('absolute' => TRUE)), t('We are still logged in as admin at the end of the upgrade.'));
|
||||
|
||||
// Logout and verify that we can login back in with our initial password.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// The previous login should've triggered a password rehash, so login one
|
||||
// more time to make sure the new hash is readable.
|
||||
$this->drupalLogout();
|
||||
$this->drupalLogin((object) array(
|
||||
'uid' => 1,
|
||||
'name' => 'admin',
|
||||
'pass_raw' => 'drupal',
|
||||
));
|
||||
|
||||
// Test that the site name is correctly displayed.
|
||||
$this->assertText('drupal', t('The site name is correctly displayed.'));
|
||||
|
||||
// Verify that the main admin sections are available.
|
||||
$this->drupalGet('admin');
|
||||
$this->assertText(t('Content'));
|
||||
$this->assertText(t('Appearance'));
|
||||
$this->assertText(t('People'));
|
||||
$this->assertText(t('Configuration'));
|
||||
$this->assertText(t('Reports'));
|
||||
$this->assertText(t('Structure'));
|
||||
$this->assertText(t('Modules'));
|
||||
|
||||
// Confirm that no {menu_links} entry exists for user/autocomplete.
|
||||
$result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField();
|
||||
$this->assertFalse($result, t('No {menu_links} entry exists for user/autocomplete'));
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue