From 0d41f5d9deb6a7e4b51f0ed16909955477546302 Mon Sep 17 00:00:00 2001 From: webchick Date: Sat, 28 Apr 2012 23:22:30 -0700 Subject: Issue #1348758 by drewish, tim.plunkett: Fixed Add an index to {users}.picture so user_file_delete() isn't insanely slow. --- modules/simpletest/tests/upgrade/update.user.test | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 modules/simpletest/tests/upgrade/update.user.test (limited to 'modules/simpletest/tests') diff --git a/modules/simpletest/tests/upgrade/update.user.test b/modules/simpletest/tests/upgrade/update.user.test new file mode 100644 index 000000000..4993139a4 --- /dev/null +++ b/modules/simpletest/tests/upgrade/update.user.test @@ -0,0 +1,35 @@ + 7.x update path. + */ +class UserUpdatePathTestCase extends UpdatePathTestCase { + public static function getInfo() { + return array( + 'name' => 'User update path', + 'description' => 'User update path tests.', + 'group' => 'Upgrade path', + ); + } + + public function setUp() { + // Use the filled update path and our field data. + $this->databaseDumpFiles = array( + drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-7.filled.standard_all.database.php.gz', + ); + parent::setUp(); + } + + /** + * Tests that the update is successful. + */ + public function testFilledUpgrade() { + $this->assertTrue($this->performUpgrade(), t('The update was completed successfully.')); + $this->assertTrue(db_index_exists('users', 'picture'), 'The {users}.picture column has an index.'); + } +} -- cgit v1.2.3