| 7 upgrade.translatable.test | public TranslatableUpgradePathTestCase::testTranslatableUpgrade() |
Test a successful upgrade (no negotiation).
File
- modules/
simpletest/ tests/ upgrade/ upgrade.translatable.test, line 30
Code
public function testTranslatableUpgrade() {
$this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
// The D6 database contains the english node "First translatable page" with
// nid 53.
$nid = 53;
$title = 'First translatable page';
$teaser = 'Teaser of the first translatable page.';
$body = 'Body of the first translatable page.';
// Check whether the node displays properly.
$this->drupalGet("node/$nid");
$this->assertText($body, t('Translatable node body displays properly'));
// Retrieve node object, ensure that both the body and the teaser has
// survived upgrade properly.
$node = $this->drupalGetNodeByTitle($title);
$this->assertTrue($node != NULL, t('Node @title was loaded', array('@title' => $title)));
$this->assertEqual($node->body[LANGUAGE_NONE][0]['value'], $body, 'Body of the node survived upgrade properly');
$this->assertEqual($node->body[LANGUAGE_NONE][0]['summary'], $teaser, 'Teaser of the node survived upgrade properly');
}
Login or register to post comments