updated admin_menu, entity_translation, addressfield, addressfield_token, autocomplete_deluxe
This commit is contained in:
@@ -14,6 +14,9 @@ class EntityTranslationTestCase extends DrupalWebTestCase {
|
||||
protected $admin_user;
|
||||
protected $translator_user;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
function setUp() {
|
||||
$args = func_get_args();
|
||||
call_user_func_array(array('parent', 'setUp'), $args);
|
||||
@@ -133,6 +136,19 @@ class EntityTranslationTestCase extends DrupalWebTestCase {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Disable a language which is in the language list.
|
||||
*
|
||||
* @param string $langcode
|
||||
* The code of the language to disable, which must exist.
|
||||
*/
|
||||
function disableLanguage($langcode) {
|
||||
$edit = array(
|
||||
'enabled[' . $langcode . ']' => FALSE,
|
||||
);
|
||||
$this->drupalPost('admin/config/regional/language', $edit, 'Save configuration');
|
||||
}
|
||||
|
||||
/**
|
||||
* Install a specified language if it has not been already, otherwise make sure that the language is enabled.
|
||||
*
|
||||
@@ -190,7 +206,7 @@ class EntityTranslationTestCase extends DrupalWebTestCase {
|
||||
|
||||
// Check if the setting works.
|
||||
$this->drupalGet('node/add/page');
|
||||
$this->assertFieldById('edit-body-und-add-more', t('Add another item'), t('Add another item button found.'));
|
||||
$this->assertFieldById('edit-body-en-add-more', t('Add another item'), t('Add another item button found.'));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -205,9 +221,8 @@ class EntityTranslationTestCase extends DrupalWebTestCase {
|
||||
*/
|
||||
function createPage($title, $body, $langcode) {
|
||||
$edit = array();
|
||||
$language_none = LANGUAGE_NONE;
|
||||
$edit["title"] = $title;
|
||||
$edit["body[$language_none][0][value]"] = $body;
|
||||
$edit["body[$langcode][0][value]"] = $body;
|
||||
$edit['language'] = $langcode;
|
||||
$this->drupalPost('node/add/page', $edit, t('Save'));
|
||||
$this->assertRaw(t('Basic page %title has been created.', array('%title' => $title)), t('Basic page created.'));
|
||||
@@ -270,10 +285,27 @@ class EntityTranslationTranslationTestCase extends EntityTranslationTestCase {
|
||||
$this->login($this->getAdminUser());
|
||||
$this->addLanguage('en');
|
||||
$this->addLanguage('es');
|
||||
$this->addLanguage('fr');
|
||||
$this->disableLanguage('fr');
|
||||
$this->configureContentType();
|
||||
$this->login($this->getTranslatorUser());
|
||||
}
|
||||
|
||||
/**
|
||||
* Test disabled languages.
|
||||
*
|
||||
* Make sure disabled languages are not accessible in the language list when
|
||||
* the option entity_translation_languages_enabled is enabled.
|
||||
*/
|
||||
function testDisabledLanguages() {
|
||||
$this->drupalGet('node/add/page');
|
||||
$this->assertRaw('value="fr"', 'French is available even if the language is disabled');
|
||||
|
||||
variable_set('entity_translation_languages_enabled', TRUE);
|
||||
$this->drupalGet('node/add/page');
|
||||
$this->assertNoRaw('value="fr"', 'French is not available when the language is disabled and the option entity_translation_languages_enabled is enabled.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Test if field based translation works.
|
||||
*
|
||||
@@ -525,3 +557,788 @@ class EntityTranslationHookTestCase extends EntityTranslationTestCase {
|
||||
return $info;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that entity translation handler hierarchy works properly.
|
||||
*/
|
||||
class EntityTranslationHierarchyTestCase extends EntityTranslationTestCase {
|
||||
|
||||
/**
|
||||
* Return the test information.
|
||||
*/
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Entity translation hierarchy',
|
||||
'description' => 'Tests that entity translation handler hierarchy works properly.',
|
||||
'group' => 'Entity translation',
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
function setUp() {
|
||||
parent::setUp('locale', 'entity_translation');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the handler hierarchy.
|
||||
*/
|
||||
public function testHierarchy() {
|
||||
$entity_type = 'node';
|
||||
$node = $this->drupalCreateNode();
|
||||
$factory = EntityTranslationHandlerFactory::getInstance();
|
||||
$handler = $factory->getHandler($entity_type, $node);
|
||||
|
||||
$children = array();
|
||||
foreach (range(0, 4) as $index) {
|
||||
$children[$index] = $this->drupalCreateNode();
|
||||
$handler->addChild($entity_type, $children[$index]);
|
||||
}
|
||||
|
||||
$langcode = 'it';
|
||||
$handler->setActiveLanguage($langcode);
|
||||
foreach ($children as $child) {
|
||||
$child_handler = $factory->getHandler($entity_type, $child);
|
||||
$this->assertEqual($child_handler->getActiveLanguage(), $langcode);
|
||||
}
|
||||
|
||||
$rm_index = mt_rand(0, count($children) - 1);
|
||||
$handler->removeChild($entity_type, $children[$rm_index]);
|
||||
|
||||
$langcode = 'fr';
|
||||
$handler->setActiveLanguage($langcode);
|
||||
foreach ($children as $index => $child) {
|
||||
$child_handler = $factory->getHandler($entity_type, $child);
|
||||
$this->assertEqual($child_handler->getActiveLanguage() == $langcode, $index != $rm_index);
|
||||
}
|
||||
|
||||
// @todo Test the other properties.
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Basic tests for nodes using both content and entity translation.
|
||||
*/
|
||||
class EntityTranslationContentTranslationTestCase extends EntityTranslationTestCase {
|
||||
|
||||
/**
|
||||
* Return the test information.
|
||||
*/
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Content and entity translation',
|
||||
'description' => 'Basic tests for nodes using both content and entity translatio.',
|
||||
'group' => 'Entity translation',
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setUp() {
|
||||
// Activate modules and unset users.
|
||||
parent::setUp('locale', 'translation', 'translation_test', 'entity_translation');
|
||||
// Create admin and translator users with one extra permission,
|
||||
// namely the 'translate content' permission.
|
||||
// These getters works also as setters.
|
||||
$this->getAdminUser(array(
|
||||
'translate content',
|
||||
));
|
||||
$this->getTranslatorUser(array(
|
||||
'translate content',
|
||||
));
|
||||
$this->login($this->getAdminUser());
|
||||
$this->addLanguage('en');
|
||||
$this->addLanguage('es');
|
||||
$this->enableUrlLanguageDetection();
|
||||
$this->configureContentType();
|
||||
$this->login($this->getTranslatorUser());
|
||||
}
|
||||
|
||||
/**
|
||||
* Configure the "Basic page" content type for entity translation tests.
|
||||
*/
|
||||
public function configureContentType() {
|
||||
// Configure the "Basic page" content type to use multilingual support with
|
||||
// content translation.
|
||||
$edit = array();
|
||||
$edit['language_content_type'] = TRANSLATION_ENABLED;
|
||||
$this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
|
||||
$this->assertRaw(t('The content type %type has been updated.', array('%type' => 'Basic page')), t('Basic page content type has been updated.'));
|
||||
|
||||
// Toggle body field's translatability.
|
||||
$edit = array();
|
||||
$edit['field[translatable]'] = 1;
|
||||
$this->drupalPost('admin/structure/types/manage/page/fields/body', $edit, t('Save settings'));
|
||||
$this->assertRaw(t('Saved %field configuration.', array('%field' => 'Body')), t('Body field settings have been updated.'));
|
||||
}
|
||||
|
||||
/**
|
||||
* @see TranslationTestCase::createPage()
|
||||
*/
|
||||
function createPage($title, $body, $language = NULL) {
|
||||
$edit = array();
|
||||
$langcode = LANGUAGE_NONE;
|
||||
$edit["title"] = $title;
|
||||
$edit["body[$langcode][0][value]"] = $body;
|
||||
if (!empty($language)) {
|
||||
$edit['language'] = $language;
|
||||
}
|
||||
$this->drupalPost('node/add/page', $edit, t('Save'));
|
||||
$this->assertRaw(t('Basic page %title has been created.', array('%title' => $title)), 'Basic page created.');
|
||||
|
||||
// Check to make sure the node was created.
|
||||
$node = $this->drupalGetNodeByTitle($title);
|
||||
$this->assertTrue($node, 'Node found in database.');
|
||||
|
||||
return $node;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests copying of source node's body value in the add translation form page.
|
||||
*/
|
||||
public function testCopyFieldsUsingContentTranslation() {
|
||||
// Create Basic page in English.
|
||||
$node_title = $this->randomName();
|
||||
$node_body = $this->randomName();
|
||||
$node = $this->createPage($node_title, $node_body, 'en');
|
||||
|
||||
// Check that the edit form correctly copies over the field's values from
|
||||
// the source node.
|
||||
$target_language = 'es';
|
||||
$this->drupalGet('node/add/page', array('query' => array('translation' => $node->nid, 'target' => $target_language)));
|
||||
$body_key = "body[${target_language}][0][value]";
|
||||
$this->assertFieldByXPath("//textarea[@name='$body_key']", $node_body, "Body field correctly instantiated with the value of the source language.");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests for integration of Entity Translation with other modules.
|
||||
*/
|
||||
class EntityTranslationIntegrationTestCase extends EntityTranslationTestCase {
|
||||
|
||||
/**
|
||||
* Return the test information.
|
||||
*/
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Integration with other modules',
|
||||
'description' => 'Tests for integration of Entity Translation with other modules.',
|
||||
'group' => 'Entity translation',
|
||||
// We need to add this to the test_dependencies[] as well.
|
||||
'dependencies' => array('pathauto'),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setUp() {
|
||||
// Activate modules.
|
||||
parent::setUp('locale', 'entity_translation');
|
||||
// Create admin and translator users with one extra permission,
|
||||
// namely the 'administer content' permission for the admin, to
|
||||
// allow enabling the pathauto module during testing. The
|
||||
// Translator user needs to be able to create url aliases.
|
||||
$this->getAdminUser(array(
|
||||
'administer modules',
|
||||
));
|
||||
$this->getTranslatorUser(array(
|
||||
'create url aliases',
|
||||
));
|
||||
$this->login($this->getAdminUser());
|
||||
$this->addLanguage('en');
|
||||
$this->addLanguage('es');
|
||||
$this->enableUrlLanguageDetection();
|
||||
$this->configureContentType();
|
||||
$this->login($this->getTranslatorUser());
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the role id of an $account object.
|
||||
*/
|
||||
protected function getUserRole($account) {
|
||||
return reset($account->roles);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests Pathauto integration.
|
||||
*/
|
||||
public function testPathautoIntegration() {
|
||||
$languages = language_list();
|
||||
|
||||
// Enable the path module to add aliases manually.
|
||||
$this->login($this->getAdminUser());
|
||||
if (!module_exists('path')) {
|
||||
module_enable(array('path'));
|
||||
}
|
||||
$this->login($this->getTranslatorUser());
|
||||
|
||||
// Create Basic page in English.
|
||||
$node_title = $this->randomName();
|
||||
$node_body = $this->randomName();
|
||||
$node = $this->createPage($node_title, $node_body, 'en');
|
||||
$node_alias = $this->randomName();
|
||||
$edit = array(
|
||||
'path[alias]' => $node_alias,
|
||||
);
|
||||
$this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
|
||||
|
||||
// Submit translation in Spanish.
|
||||
$node_translation_body = $this->randomName();
|
||||
$this->createTranslation($node, $node_title, $node_translation_body, 'es');
|
||||
$node_translation_alias = $this->randomName();
|
||||
$edit = array(
|
||||
'path[alias]' => $node_translation_alias,
|
||||
);
|
||||
$this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'), array('language' => $languages['es']));
|
||||
|
||||
// Enable the pathauto module.
|
||||
$this->login($this->getAdminUser());
|
||||
if (!module_exists('pathauto')) {
|
||||
module_enable(array('pathauto'));
|
||||
}
|
||||
$admin_rid = $this->getUserRole($this->getAdminUser());
|
||||
user_role_grant_permissions($admin_rid, array('administer url aliases', 'administer pathauto'));
|
||||
$translator_rid = $this->getUserRole($this->getTranslatorUser());
|
||||
user_role_grant_permissions($translator_rid, array('create url aliases'));
|
||||
$this->login($this->getTranslatorUser());
|
||||
|
||||
// Create pathauto alias for source node.
|
||||
$edit = array(
|
||||
'path[pathauto]' => TRUE,
|
||||
);
|
||||
$this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
|
||||
// Clear the static caches in case they interfere.
|
||||
drupal_lookup_path('wipe');
|
||||
$node_pathauto_alias = pathauto_node_update_alias($node, 'return');
|
||||
$node_translation_pathauto_alias = pathauto_node_update_alias($node, 'return', array('language' => 'es'));
|
||||
|
||||
// Check that the new alias for the translation matches the
|
||||
// pathauto's logic.
|
||||
$this->assertEqual($this->getUrl(), url(drupal_get_path_alias($node_pathauto_alias), array('absolute' => TRUE)));
|
||||
|
||||
// Check that a pathauto alias was created for the source and
|
||||
// matches the pathauto's logic.
|
||||
$this->drupalGet('node/' . $node->nid, array('language' => $languages['es']));
|
||||
$this->assertEqual($this->getUrl(), url(drupal_get_path_alias($node_translation_pathauto_alias), array('absolute' => TRUE, 'language' => $languages['es'])));
|
||||
|
||||
// Delete the two aliases.
|
||||
path_delete(array('source' => 'node/' . $node->nid));
|
||||
|
||||
// Create pathauto alias for the translation of the node.
|
||||
$this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'), array('language' => $languages['es']));
|
||||
// Clear the static caches in case they interfere.
|
||||
drupal_lookup_path('wipe');
|
||||
$node_pathauto_alias = pathauto_node_update_alias($node, 'return');
|
||||
$node_translation_pathauto_alias = pathauto_node_update_alias($node, 'return', array('language' => 'es'));
|
||||
|
||||
// Check that the new alias for the translation matches the
|
||||
// pathauto's logic.
|
||||
$this->assertEqual($this->getUrl(), url(drupal_get_path_alias($node_translation_pathauto_alias), array('absolute' => TRUE, 'language' => $languages['es'])));
|
||||
|
||||
// Check that a pathauto alias was created for the source and
|
||||
// matches the pathauto's logic.
|
||||
$this->drupalGet('node/' . $node->nid);
|
||||
$this->assertEqual($this->getUrl(), url(drupal_get_path_alias($node_pathauto_alias), array('absolute' => TRUE)));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests for enabling fields to use Entity Translation or disabling them.
|
||||
*/
|
||||
class EntityTranslationToggleFieldsTranslatabilityTestCase extends EntityTranslationTestCase {
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Fields translatability toggling',
|
||||
'description' => 'Tests for enabling fields to use Entity Translation or disabling them.',
|
||||
'group' => 'Entity translation',
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setUp() {
|
||||
// Activate modules.
|
||||
parent::setUp('locale', 'taxonomy', 'entity_translation', 'entity_translation_test');
|
||||
$this->login($this->getAdminUser(array(
|
||||
'administer taxonomy',
|
||||
'toggle field translatability',
|
||||
)));
|
||||
$this->login($this->getTranslatorUser(array(
|
||||
'administer taxonomy',
|
||||
)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Configure the "Basic page" content type for entity translation tests.
|
||||
*/
|
||||
protected function configureContentTypeForRevisions() {
|
||||
// Configure the "Basic page" content type to use revisions.
|
||||
$edit = array(
|
||||
'node_options[revision]' => 1,
|
||||
);
|
||||
$this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
|
||||
$this->assertRaw(t('The content type %type has been updated.', array('%type' => 'Basic page')), t('Basic page content type has been updated.'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a "Basic page" in the specified language.
|
||||
*
|
||||
* @param $title
|
||||
* Title of the basic page in the specified language.
|
||||
* @param $body
|
||||
* Body of the basic page in the specified language.
|
||||
*/
|
||||
protected function createUntranslatedPage($title, $body) {
|
||||
$edit = array(
|
||||
'title' => $title,
|
||||
'body[und][0][value]' => $body,
|
||||
);
|
||||
$this->drupalPost('node/add/page', $edit, t('Save'));
|
||||
$this->assertRaw(t('Basic page %title has been created.', array('%title' => $title)), t('Basic page created.'));
|
||||
|
||||
// Check to make sure the node was created.
|
||||
$node = $this->drupalGetNodeByTitle($title);
|
||||
$this->assertTrue($node, t('Node found in database.'));
|
||||
|
||||
return $node;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a "Tags" term in the specified language.
|
||||
*
|
||||
* @param $name
|
||||
* Name of the term.
|
||||
* @param $description
|
||||
* Description of the term.
|
||||
* @param $text
|
||||
* Content for the field_simple_text field.
|
||||
*/
|
||||
protected function createUntranslatedTag($name, $description, $text) {
|
||||
$edit = array(
|
||||
'name' => $name,
|
||||
'description[value]' => $description,
|
||||
"field_simple_text[und][0][value]" => $text,
|
||||
);
|
||||
$this->drupalPost('admin/structure/taxonomy/tags/add', $edit, t('Save'));
|
||||
|
||||
// Check to make sure the term was created.
|
||||
$term = current(entity_load('taxonomy_term', FALSE, array('name' => $name), TRUE));
|
||||
$this->assertTrue($term, t('Term found in database.'));
|
||||
|
||||
return $term;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests toggling translatability on fields with data (non-revisionable).
|
||||
*/
|
||||
public function testTogglingFieldsWithDataNonRevisionable() {
|
||||
// Create an untranslated Basic page.
|
||||
$node_title = $this->randomName();
|
||||
$node_body = $this->randomName();
|
||||
$node = $this->createUntranslatedPage($node_title, $node_body);
|
||||
$this->assert(isset($node->body[LANGUAGE_NONE]), t('Found body field data in LANGUAGE_NONE as expected.'));
|
||||
$this->assertEqual($node->body[LANGUAGE_NONE][0]['value'], $node_body);
|
||||
|
||||
// Create an untranslated Tags term.
|
||||
$term_name = $this->randomName();
|
||||
$term_description = $this->randomName();
|
||||
$term_simple_text = $this->randomName();
|
||||
$term = $this->createUntranslatedTag($term_name, $term_description, $term_simple_text);
|
||||
$this->assert(isset($term->field_simple_text[LANGUAGE_NONE]), t('Found field data in LANGUAGE_NONE as expected.'));
|
||||
$this->assertEqual($term->field_simple_text[LANGUAGE_NONE][0]['value'], $term_simple_text);
|
||||
|
||||
// Enable translation for field body and check field migration.
|
||||
$this->login($this->getAdminUser());
|
||||
$this->drupalGet('admin/structure/types/manage/page/fields/body');
|
||||
$this->clickLink('Enable translation');
|
||||
$this->drupalPost(NULL, array(), t('Confirm'));
|
||||
$node = current(entity_load('node', FALSE, array('title' => $node_title), TRUE));
|
||||
$this->assert(isset($node->body['en']), t('Found field data in English as expected.'));
|
||||
$this->assertEqual($node->body['en'][0]['value'], $node_body);
|
||||
$this->assert(!isset($node->body[LANGUAGE_NONE]), t('No field data in LANGUAGE_NONE found.'));
|
||||
|
||||
// Disable translation for body field and check field reverse migration.
|
||||
$this->drupalGet('admin/structure/types/manage/page/fields/body');
|
||||
$this->clickLink('Disable translation');
|
||||
$this->drupalPost(NULL, array(), t('Confirm'));
|
||||
$node = current(entity_load('node', FALSE, array('title' => $node_title), TRUE));
|
||||
$this->assert(isset($node->body[LANGUAGE_NONE]), t('Found field data in LANGUAGE_NONE as expected.'));
|
||||
$this->assertEqual($node->body[LANGUAGE_NONE][0]['value'], $node_body);
|
||||
$this->assert(!isset($node->body['en']), t('No field data in English found.'));
|
||||
|
||||
// Enable translation for field_simple_text and check field migration.
|
||||
$this->drupalGet('admin/structure/taxonomy/tags/fields/field_simple_text');
|
||||
$this->clickLink('Enable translation');
|
||||
$this->drupalPost(NULL, array(), t('Confirm'));
|
||||
// Clear the field cache in order to load current field data.
|
||||
field_info_cache_clear();
|
||||
// Load the term and check that the fields data are under 'en'.
|
||||
$term = current(entity_load('taxonomy_term', FALSE, array('name' => $term_name), TRUE));
|
||||
$this->assert(isset($term->field_simple_text['en']), t('Found field data in English as expected.'));
|
||||
$this->assertEqual($term->field_simple_text['en'][0]['value'], $term_simple_text);
|
||||
$this->assert(!isset($term->field_simple_text[LANGUAGE_NONE]), t('No field data in LANGUAGE_NONE found.'));
|
||||
|
||||
// Disable translation for field_simple_text.
|
||||
$this->drupalGet('admin/structure/taxonomy/tags/fields/field_simple_text');
|
||||
$this->clickLink('Disable translation');
|
||||
$this->drupalPost(NULL, array(), t('Confirm'));
|
||||
|
||||
// Load the term and check that the fields data are under LANGUAGE_NONE.
|
||||
$term = current(entity_load('taxonomy_term', FALSE, array('name' => $term_name), TRUE));
|
||||
$this->assert(isset($term->field_simple_text[LANGUAGE_NONE]), t('Found field data in LANGUAGE_NONE as expected.'));
|
||||
$this->assertEqual($term->field_simple_text[LANGUAGE_NONE][0]['value'], $term_simple_text);
|
||||
$this->assert(!isset($term->field_simple_text['en']), t('No field data in English found.'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests toggling translatability on fields with data (revisionable).
|
||||
*/
|
||||
public function testTogglingFieldsWithDataRevisionable() {
|
||||
// Enable revisions for Basic pages.
|
||||
$this->login($this->getAdminUser());
|
||||
$this->configureContentTypeForRevisions();
|
||||
|
||||
// Create an untranslated Basic page.
|
||||
$this->login($this->getTranslatorUser());
|
||||
$node_title = $this->randomName();
|
||||
$node_body = $this->randomName();
|
||||
$node = $this->createUntranslatedPage($node_title, $node_body);
|
||||
$this->assert(isset($node->body[LANGUAGE_NONE]), t('Found field data in LANGUAGE_NONE as expected.'));
|
||||
$this->assertEqual($node->body[LANGUAGE_NONE][0]['value'], $node_body);
|
||||
|
||||
// Create a new revision for the page.
|
||||
$edit_revision = array(
|
||||
'title' => $this->randomName(),
|
||||
);
|
||||
$this->drupalPost('node/' . $node->nid . '/edit', $edit_revision, t('Save'));
|
||||
$node = node_load($node->nid, NULL, TRUE);
|
||||
$this->assert($node->vid == $node->nid + 1, t('Correct vid attached to the node object.'));
|
||||
|
||||
// Enable translation for field body and check field migration on all
|
||||
// revisions.
|
||||
$this->login($this->getAdminUser());
|
||||
$this->drupalGet('admin/structure/types/manage/page/fields/body');
|
||||
$this->clickLink('Enable translation');
|
||||
$this->drupalPost(NULL, array(), t('Confirm'));
|
||||
$node_current_revision = current(entity_load('node', FALSE, array('vid' => $node->vid), TRUE));
|
||||
$this->assert(isset($node_current_revision->body['en']), t('Found field data in English as expected.'));
|
||||
$this->assertEqual($node_current_revision->body['en'][0]['value'], $node_body);
|
||||
$this->assert(!isset($node_current_revision->body[LANGUAGE_NONE]), t('No field data in LANGUAGE_NONE found.'));
|
||||
$node_previous_revision = current(entity_load('node', FALSE, array('vid' => ($node->vid - 1)), TRUE));
|
||||
$this->assert(isset($node_previous_revision->body['en']), t('Found field data in English as expected.'));
|
||||
$this->assertEqual($node_previous_revision->body['en'][0]['value'], $node_body);
|
||||
$this->assert(!isset($node_previous_revision->body[LANGUAGE_NONE]), t('No field data in LANGUAGE_NONE found.'));
|
||||
|
||||
// Disable translation for field_body.
|
||||
$this->drupalGet('admin/structure/types/manage/page/fields/body');
|
||||
$this->clickLink('Disable translation');
|
||||
$this->drupalPost(NULL, array(), t('Confirm'));
|
||||
|
||||
// Disable translation for field body and check field reverse migration on
|
||||
// all revisions.
|
||||
$node_current_revision = current(entity_load('node', FALSE, array('vid' => $node->vid), TRUE));
|
||||
$this->assert(isset($node_current_revision->body[LANGUAGE_NONE]), t('Found field data in LANGUAGE_NONE as expected.'));
|
||||
$this->assertEqual($node_current_revision->body[LANGUAGE_NONE][0]['value'], $node_body);
|
||||
$this->assert(!isset($node_current_revision->body['en']), t('No field data in English found.'));
|
||||
$node_previous_revision = current(entity_load('node', FALSE, array('vid' => ($node->vid - 1)), TRUE));
|
||||
$this->assert(isset($node_previous_revision->body[LANGUAGE_NONE]), t('Found field data in LANGUAGE_NONE as expected.'));
|
||||
$this->assertEqual($node_previous_revision->body[LANGUAGE_NONE][0]['value'], $node_body);
|
||||
$this->assert(!isset($node_previous_revision->body['en']), t('No field data in English found.'));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests for the taxonomy autocomplete translation modes.
|
||||
*/
|
||||
class EntityTranslationTaxonomyAutocompleteTestCase extends EntityTranslationTestCase {
|
||||
|
||||
/**
|
||||
* Returns the test information.
|
||||
*/
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Entity translation taxonomy autocomplete',
|
||||
'description' => 'Tests for the taxonomy autocomplete translation modes.',
|
||||
'group' => 'Entity translation',
|
||||
'dependencies' => array('title'),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
function setUp() {
|
||||
parent::setUp('locale', 'entity_translation', 'taxonomy', 'title');
|
||||
$this->login($this->getAdminUser(array(
|
||||
'administer taxonomy',
|
||||
'administer entity translation',
|
||||
)));
|
||||
$this->addLanguage('en');
|
||||
$this->addLanguage('it');
|
||||
$this->addLanguage('fr');
|
||||
$this->enableUrlLanguageDetection();
|
||||
$this->configureVocabulary();
|
||||
$this->configureContentType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Makes the "Tags" vocabulary translatable.
|
||||
*/
|
||||
function configureVocabulary() {
|
||||
$edit = array(
|
||||
'entity_translation_entity_types[taxonomy_term]' => TRUE,
|
||||
);
|
||||
$this->drupalPost('admin/config/regional/entity_translation', $edit, t('Save configuration'));
|
||||
|
||||
$edit = array(
|
||||
'entity_translation_taxonomy' => TRUE,
|
||||
);
|
||||
$this->drupalPost('admin/structure/taxonomy/tags/edit', $edit, t('Save'));
|
||||
|
||||
$edit = array(
|
||||
'enabled' => TRUE,
|
||||
);
|
||||
$this->drupalPost('admin/structure/taxonomy/tags/fields/replace/name', $edit, t('Save settings'));
|
||||
|
||||
$edit = array(
|
||||
'enabled' => TRUE,
|
||||
);
|
||||
$this->drupalPost('admin/structure/taxonomy/tags/fields/replace/description', $edit, t('Save settings'));
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
function configureContentType() {
|
||||
parent::configureContentType();
|
||||
|
||||
// Create an untranslatable term reference field with unlimited cardinality.
|
||||
$edit = array(
|
||||
'fields[_add_new_field][label]' => 'Test tags',
|
||||
'fields[_add_new_field][field_name]' => 'test_tags',
|
||||
'fields[_add_new_field][type]' => 'taxonomy_term_reference',
|
||||
'fields[_add_new_field][widget_type]' => 'taxonomy_autocomplete',
|
||||
);
|
||||
$this->drupalPost('admin/structure/types/manage/page/fields', $edit, t('Save'));
|
||||
|
||||
$edit = array(
|
||||
'field[settings][allowed_values][0][vocabulary]' => 'tags',
|
||||
);
|
||||
$this->drupalPost('admin/structure/types/manage/page/fields/field_test_tags/field-settings', $edit, t('Save field settings'));
|
||||
|
||||
// Verify the in-place translation option is available.
|
||||
$this->drupalGet('admin/structure/types/manage/page/fields/field_test_tags');
|
||||
$this->assertRaw(t('Enable in-place translation of terms'));
|
||||
|
||||
$edit = array(
|
||||
'field[cardinality]' => FIELD_CARDINALITY_UNLIMITED,
|
||||
);
|
||||
$this->drupalPost(NULL, $edit, t('Save settings'));
|
||||
|
||||
// Ensure entity info is up-to-date.
|
||||
drupal_flush_all_caches();
|
||||
}
|
||||
|
||||
/**
|
||||
* Enables in-place translation.
|
||||
*/
|
||||
function enableInPlaceTranslation() {
|
||||
$edit = array(
|
||||
'instance[settings][entity_translation_taxonomy_autocomplete_translate]' => TRUE,
|
||||
);
|
||||
$this->drupalPost('admin/structure/types/manage/page/fields/field_test_tags', $edit, t('Save settings'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that in-place translation works as expected.
|
||||
*/
|
||||
function testInPlaceTranslation() {
|
||||
$this->enableInPlaceTranslation();
|
||||
$this->login($this->getTranslatorUser(array(
|
||||
'administer taxonomy',
|
||||
)));
|
||||
|
||||
$values = array(
|
||||
'Red' => 'Rosso',
|
||||
'Green' => 'Verde',
|
||||
'Blue' => 'Blu',
|
||||
);
|
||||
|
||||
// Create an English node with a few new tags.
|
||||
$edit = array(
|
||||
'title' => 'Test 1',
|
||||
'field_test_tags[' . LANGUAGE_NONE . ']' => implode(', ', array_keys($values)),
|
||||
'language' => 'en',
|
||||
);
|
||||
$this->drupalPost('node/add/page', $edit, t('Save'));
|
||||
$node = $this->drupalGetNodeByTitle($edit['title']);
|
||||
|
||||
// Create an Italian translation and translate the English tags.
|
||||
$this->drupalGet('node/' . $node->nid . '/translate');
|
||||
$this->clickLink('add', 1);
|
||||
$edit = array();
|
||||
foreach (array_values($values) as $delta => $value) {
|
||||
$edit['field_test_tags[' . LANGUAGE_NONE . '][' . $delta . ']'] = $value;
|
||||
}
|
||||
$this->drupalPost(NULL, $edit, t('Save'));
|
||||
|
||||
// Verify that the Italian values are correctly stored/displayed.
|
||||
foreach ($values as $original => $translation) {
|
||||
$this->assertRaw($translation);
|
||||
}
|
||||
|
||||
// Verify that the original English values were correctly retained.
|
||||
$this->drupalGet('node/' . $node->nid);
|
||||
foreach ($values as $original => $translation) {
|
||||
$this->assertRaw($original);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* That the autocomplete works with translated terms.
|
||||
*/
|
||||
function testTranslatedAutocomplete() {
|
||||
$this->login($this->getTranslatorUser(array(
|
||||
'administer taxonomy',
|
||||
)));
|
||||
|
||||
$vocabulary = taxonomy_vocabulary_machine_name_load('tags');
|
||||
$entity_type = 'taxonomy_term';
|
||||
$existing_values = array();
|
||||
$translated_values = array(
|
||||
'en' => array(
|
||||
'Red' => 'Rosso',
|
||||
'Green' => 'Verde',
|
||||
),
|
||||
'it' => array(
|
||||
'Blu' => 'Blue',
|
||||
),
|
||||
);
|
||||
$langcodes = array_keys($translated_values);
|
||||
|
||||
// Create a few existing tags with different original language and translate
|
||||
// them accordingly.
|
||||
foreach ($translated_values as $langcode => $values) {
|
||||
title_active_language($langcode);
|
||||
$translation_langcode = current(array_diff($langcodes, array($langcode)));
|
||||
|
||||
foreach ($values as $original => $translation) {
|
||||
$term = (object) array(
|
||||
'vid' => $vocabulary->vid,
|
||||
'vocabulary_machine_name' => $vocabulary->machine_name,
|
||||
'name' => $original,
|
||||
'name_field' => array(
|
||||
$langcode => array(array('value' => $original)),
|
||||
$translation_langcode => array(array('value' => $translation)),
|
||||
),
|
||||
);
|
||||
$translation = array(
|
||||
'language' => $translation_langcode,
|
||||
'source' => $langcode,
|
||||
'status' => TRUE,
|
||||
);
|
||||
|
||||
$handler = entity_translation_get_handler($entity_type, $term);
|
||||
$handler->setOriginalLanguage($langcode);
|
||||
$handler->initTranslations();
|
||||
$handler->setTranslation($translation);
|
||||
taxonomy_term_save($term);
|
||||
|
||||
$existing_values[$term->name_field['en'][0]['value']] = $term->name_field['it'][0]['value'];
|
||||
}
|
||||
}
|
||||
|
||||
// Verify that the English autocomplete route returns results for terms
|
||||
// originally created in English.
|
||||
$this->autocompleteGet('en', 'Re');
|
||||
$this->assertRaw('Red');
|
||||
$this->assertRaw('Green');
|
||||
|
||||
// Verify that the English autocomplete route returns results for terms
|
||||
// translated into English.
|
||||
$this->autocompleteGet('en', 'Blu');
|
||||
$this->assertRaw('Blue');
|
||||
|
||||
// Verify that the Italian autocomplete route returns results for terms
|
||||
// originally created in Italian.
|
||||
$this->autocompleteGet('it', 'Blu');
|
||||
$this->assertRaw('Blu');
|
||||
$this->assertNoRaw('Blue');
|
||||
|
||||
// Verify that the Italian autocomplete route returns results for terms
|
||||
// translated into Italian.
|
||||
$this->autocompleteGet('it', 'R');
|
||||
$this->assertRaw('Rosso');
|
||||
$this->assertRaw('Verde');
|
||||
|
||||
// Verify that existing tags are correctly referenced and new tags are
|
||||
// correctly created, when saving an English node.
|
||||
$new_values = array(
|
||||
'Cyan' => 'Ciano',
|
||||
'Magenta' => 'Magenta',
|
||||
'Yellow' => 'Giallo',
|
||||
'Black' => 'Nero',
|
||||
);
|
||||
$all_values = $existing_values + $new_values;
|
||||
|
||||
$edit = array(
|
||||
'title' => 'Test 1',
|
||||
'field_test_tags[' . LANGUAGE_NONE . ']' => implode(', ', array_keys($all_values)),
|
||||
'language' => 'en',
|
||||
);
|
||||
$this->drupalPost('node/add/page', $edit, t('Save'));
|
||||
foreach ($all_values as $original => $translation) {
|
||||
$this->assertRaw($original);
|
||||
}
|
||||
|
||||
// Verify that existing translated tags are correctly referenced and new
|
||||
// tags are correctly created, when translated the node into Italian.
|
||||
$node = $this->drupalGetNodeByTitle($edit['title']);
|
||||
$this->drupalGet('node/' . $node->nid . '/translate');
|
||||
$this->clickLink('add', 1);
|
||||
$edit = array(
|
||||
'field_test_tags[' . LANGUAGE_NONE . ']' => implode(', ', $all_values),
|
||||
);
|
||||
$this->drupalPost(NULL, $edit, t('Save'));
|
||||
foreach ($all_values as $original => $translation) {
|
||||
$this->assertRaw($translation);
|
||||
}
|
||||
|
||||
// Verify that existing (translated) tags were preserved, while new Italian
|
||||
// tags replaced the corresponding English versions.
|
||||
$this->drupalGet('node/' . $node->nid);
|
||||
foreach ($existing_values as $original => $translation) {
|
||||
$this->assertRaw($original);
|
||||
}
|
||||
foreach ($new_values as $original => $translation) {
|
||||
$this->assertRaw($translation);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Performs a GET request to the autocomplete path.
|
||||
*
|
||||
* @param string $langcode
|
||||
* The language to use to query results.
|
||||
* @param string $query
|
||||
* The search query string.
|
||||
*/
|
||||
protected function autocompleteGet($langcode, $query) {
|
||||
$path = 'entity_translation/taxonomy_term/autocomplete/' . $langcode . '/field_test_tags/' . $query;
|
||||
$languages = language_list();
|
||||
$this->drupalGet($path, array('language' => $languages[$langcode]));
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -4,11 +4,11 @@ core = 7.x
|
||||
package = Testing
|
||||
hidden = TRUE
|
||||
dependencies[] = entity_translation
|
||||
|
||||
files[] = entity_translation_test.module
|
||||
|
||||
; Information added by Drupal.org packaging script on 2016-09-28
|
||||
version = "7.x-1.0-beta5+15-dev"
|
||||
; Information added by Drupal.org packaging script on 2019-01-20
|
||||
version = "7.x-1.0+5-dev"
|
||||
core = "7.x"
|
||||
project = "entity_translation"
|
||||
datestamp = "1475057941"
|
||||
|
||||
datestamp = "1548022384"
|
||||
|
@@ -5,3 +5,34 @@
|
||||
* Installation functionality for Entity Translation testing module.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_install().
|
||||
*/
|
||||
function entity_translation_test_install() {
|
||||
// Create a simple text field, attached to taxonomy_terms.
|
||||
field_info_cache_clear();
|
||||
|
||||
$field = array(
|
||||
'field_name' => 'field_simple_text',
|
||||
'type' => 'text',
|
||||
'cardinality' => 1,
|
||||
);
|
||||
field_create_field($field);
|
||||
|
||||
$instance = array(
|
||||
'field_name' => $field['field_name'],
|
||||
'label' => ucfirst(str_replace('_', ' ', $field['field_name'])),
|
||||
'entity_type' => 'taxonomy_term',
|
||||
'bundle' => 'tags',
|
||||
'widget' => array(
|
||||
'type' => 'text_textfield',
|
||||
),
|
||||
'display' => array(
|
||||
'default' => array(
|
||||
'type' => 'text_default',
|
||||
),
|
||||
),
|
||||
);
|
||||
field_create_instance($instance);
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user