From 7d0e6716940f0c46f9bc0ebe8bf14f331ca1b821 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Sat, 9 Oct 2010 03:22:30 +0000 Subject: #357785 by miro_dietiker, plach: Fixed tnid value lost in case of node resave. --- modules/translation/tests/translation_test.info | 8 ++++++++ modules/translation/tests/translation_test.module | 14 ++++++++++++++ modules/translation/translation.module | 2 ++ modules/translation/translation.test | 11 ++++++----- 4 files changed, 30 insertions(+), 5 deletions(-) create mode 100644 modules/translation/tests/translation_test.info create mode 100644 modules/translation/tests/translation_test.module (limited to 'modules') diff --git a/modules/translation/tests/translation_test.info b/modules/translation/tests/translation_test.info new file mode 100644 index 000000000..c4c1a8e94 --- /dev/null +++ b/modules/translation/tests/translation_test.info @@ -0,0 +1,8 @@ +; $Id$ +name = "Content Translation Test" +description = "Support module for the content translation tests." +core = 7.x +package = Testing +files[] = translation_test.module +version = VERSION +hidden = TRUE diff --git a/modules/translation/tests/translation_test.module b/modules/translation/tests/translation_test.module new file mode 100644 index 000000000..2bb860d6f --- /dev/null +++ b/modules/translation/tests/translation_test.module @@ -0,0 +1,14 @@ +condition('nid', $node->nid) ->execute(); + // Save tnid to avoid loss in case of resave. + $node->tnid = $tnid; } } } diff --git a/modules/translation/translation.test b/modules/translation/translation.test index d72fd390a..1930b591f 100644 --- a/modules/translation/translation.test +++ b/modules/translation/translation.test @@ -13,7 +13,7 @@ class TranslationTestCase extends DrupalWebTestCase { } function setUp() { - parent::setUp('locale', 'translation'); + parent::setUp('locale', 'translation', 'translation_test'); } /** @@ -148,7 +148,7 @@ class TranslationTestCase extends DrupalWebTestCase { /** * Create a translation for the specified basic page in the specified language. * - * @param integer $nid Node id of basic page to create translation for. + * @param object $node The basic page to create translation for. * @param string $title Title of basic page in specified language. * @param string $body Body of basic page in specified language. * @param string $language Language code. @@ -167,9 +167,10 @@ class TranslationTestCase extends DrupalWebTestCase { $this->assertRaw(t('Basic page %title has been created.', array('%title' => $title)), t('Translation created.')); // Check to make sure that translation was successful. - $node = $this->drupalGetNodeByTitle($title); - $this->assertTrue($node, t('Node found in database.')); + $translation = $this->drupalGetNodeByTitle($title); + $this->assertTrue($translation, t('Node found in database.')); + $this->assertTrue($translation->tnid == $node->nid, t('Translation set id correctly stored.')); - return $node; + return $translation; } } -- cgit v1.2.3