'Vocabulary language', 'description' => 'Tests the language functionality for vocabularies.', 'group' => 'Taxonomy', ); } function setUp() { parent::setUp(); // Create an administrative user. $this->admin_user = $this->drupalCreateUser(array('administer taxonomy')); $this->drupalLogin($this->admin_user); // Add some custom languages. $language = new Language(array( 'langcode' => 'aa', 'name' => $this->randomName(), )); language_save($language); $language = new Language(array( 'langcode' => 'bb', 'name' => $this->randomName(), )); language_save($language); } /** * Tests language settings for vocabularies. */ function testVocabularyLanguage() { $this->drupalGet('admin/structure/taxonomy/add'); // Check that we have the language selector available. $this->assertField('edit-langcode', 'The language selector field was found on the page'); // Create the vocabulary. $vid = drupal_strtolower($this->randomName()); $edit['name'] = $this->randomName(); $edit['description'] = $this->randomName(); $edit['langcode'] = 'aa'; $edit['vid'] = $vid; $this->drupalPost(NULL, $edit, t('Save')); // Check the language on the edit page. $this->drupalGet('admin/structure/taxonomy/' . $vid . '/edit'); $this->assertOptionSelected('edit-langcode', $edit['langcode'], 'The vocabulary language was correctly selected.'); // Change the language and save again. $edit['langcode'] = 'bb'; unset($edit['vid']); $this->drupalPost(NULL, $edit, t('Save')); // Check again the language on the edit page. $this->drupalGet('admin/structure/taxonomy/' . $vid . '/edit'); $this->assertOptionSelected('edit-langcode', $edit['langcode'], 'The vocabulary language was correctly selected.'); } /** * Tests term language settings for vocabulary terms are saved and updated. */ function testVocabularyDefaultLanguageForTerms() { // Add a new vocabulary and check that the default language settings are for // the terms are saved. $edit = array( 'name' => $this->randomName(), 'vid' => drupal_strtolower($this->randomName()), 'default_language[langcode]' => 'bb', 'default_language[language_show]' => TRUE, ); $vid = $edit['vid']; $this->drupalPost('admin/structure/taxonomy/add', $edit, t('Save')); // Check that the vocabulary was actually created. $this->drupalGet('admin/structure/taxonomy/' . $edit['vid'] . '/edit'); $this->assertResponse(200, 'The vocabulary has been created.'); // Check that the language settings were saved. $language_settings = language_get_default_configuration('taxonomy_term', $edit['vid']); $this->assertEqual($language_settings['langcode'], 'bb'); $this->assertEqual($language_settings['language_show'], TRUE); // Check that the correct options are selected in the interface. $this->assertOptionSelected('edit-default-language-langcode', 'bb', 'The correct default language for the terms of this vocabulary is selected.'); $this->assertFieldChecked('edit-default-language-language-show', 'Show language selection option is checked.'); // Edit the vocabulary and check that the new settings are updated. $edit = array( 'default_language[langcode]' => 'aa', 'default_language[language_show]' => FALSE, ); $this->drupalPost('admin/structure/taxonomy/' . $vid . '/edit', $edit, t('Save')); // And check again the settings and also the interface. $language_settings = language_get_default_configuration('taxonomy_term', $vid); $this->assertEqual($language_settings['langcode'], 'aa'); $this->assertEqual($language_settings['language_show'], FALSE); $this->drupalGet('admin/structure/taxonomy/' . $vid . '/edit'); $this->assertOptionSelected('edit-default-language-langcode', 'aa', 'The correct default language for the terms of this vocabulary is selected.'); $this->assertNoFieldChecked('edit-default-language-language-show', 'Show language selection option is not checked.'); // Check that language settings are changed after editing vocabulary. $edit = array( 'name' => $this->randomName(), 'default_language[langcode]' => 'authors_default', 'default_language[language_show]' => FALSE, ); $this->drupalPost('admin/structure/taxonomy/' . $vid . '/edit', $edit, t('Save')); // Check that we have the new settings. $new_settings = language_get_default_configuration('taxonomy_term', $vid); $this->assertEqual($new_settings['langcode'], 'authors_default'); $this->assertEqual($new_settings['language_show'], FALSE); } }