|
| 1 | +<?php |
| 2 | + |
| 3 | +/** |
| 4 | + * @file |
| 5 | + * Contains RestfulViewEntityMultiLingualTestCase |
| 6 | + */ |
| 7 | + |
| 8 | +class RestfulViewEntityMultiLingualTestCase extends RestfulCurlBaseTestCase { |
| 9 | + |
| 10 | + /** |
| 11 | + * The user to run the tests as. |
| 12 | + */ |
| 13 | + protected $testUser; |
| 14 | + |
| 15 | + public static function getInfo() { |
| 16 | + return array( |
| 17 | + 'name' => 'View multilingual entity', |
| 18 | + 'description' => 'Test the viewing of a multilingual entity.', |
| 19 | + 'group' => 'Restful', |
| 20 | + ); |
| 21 | + } |
| 22 | + |
| 23 | + function setUp() { |
| 24 | + parent::setUp( |
| 25 | + 'restful_example', |
| 26 | + 'restful_test', |
| 27 | + 'entityreference', |
| 28 | + 'locale' |
| 29 | + ); |
| 30 | + |
| 31 | + $this->testUser = $this->drupalCreateUser( |
| 32 | + array( |
| 33 | + 'administer languages', |
| 34 | + 'access administration pages', |
| 35 | + 'administer site configuration', |
| 36 | + ) |
| 37 | + ); |
| 38 | + require_once DRUPAL_ROOT . '/includes/locale.inc'; |
| 39 | + $this->drupalLogin($this->testUser); |
| 40 | + $languages = language_list(); |
| 41 | + if (!isset($languages['en'])) { |
| 42 | + locale_add_language('en', NULL, NULL, LANGUAGE_LTR, '', 'en'); |
| 43 | + } |
| 44 | + if (!isset($languages['fr'])) { |
| 45 | + locale_add_language('fr', NULL, NULL, LANGUAGE_LTR, '', 'fr'); |
| 46 | + } |
| 47 | + $this->addTestFields(); |
| 48 | + } |
| 49 | + |
| 50 | + /** |
| 51 | + * Add test fields. |
| 52 | + */ |
| 53 | + protected function addTestFields() { |
| 54 | + // Text - single. |
| 55 | + $field = array( |
| 56 | + 'field_name' => 'text_single', |
| 57 | + 'type' => 'text_long', |
| 58 | + 'entity_types' => array('restful_test_translatable_entity'), |
| 59 | + 'cardinality' => 1, |
| 60 | + 'translatable' => TRUE, |
| 61 | + ); |
| 62 | + field_create_field($field); |
| 63 | + |
| 64 | + $instance = array( |
| 65 | + 'field_name' => 'text_single', |
| 66 | + 'bundle' => 'restful_test_translatable_entity', |
| 67 | + 'entity_type' => 'restful_test_translatable_entity', |
| 68 | + 'label' => t('Text single'), |
| 69 | + 'settings' => array( |
| 70 | + 'text_processing' => 0, |
| 71 | + ), |
| 72 | + ); |
| 73 | + field_create_instance($instance); |
| 74 | + // Text - multiple. |
| 75 | + $field = array( |
| 76 | + 'field_name' => 'text_multiple', |
| 77 | + 'type' => 'text_long', |
| 78 | + 'entity_types' => array('restful_test_translatable_entity'), |
| 79 | + 'cardinality' => FIELD_CARDINALITY_UNLIMITED, |
| 80 | + 'translatable' => TRUE, |
| 81 | + ); |
| 82 | + field_create_field($field); |
| 83 | + |
| 84 | + $instance = array( |
| 85 | + 'field_name' => 'text_multiple', |
| 86 | + 'bundle' => 'restful_test_translatable_entity', |
| 87 | + 'entity_type' => 'restful_test_translatable_entity', |
| 88 | + 'label' => t('Text multiple'), |
| 89 | + 'settings' => array( |
| 90 | + 'text_processing' => 0, |
| 91 | + ), |
| 92 | + ); |
| 93 | + field_create_instance($instance); |
| 94 | + } |
| 95 | + |
| 96 | + /** |
| 97 | + * Test viewing an entity with translatable fields. |
| 98 | + */ |
| 99 | + function testViewMultiLangualEntity() { |
| 100 | + $user = $this->drupalCreateUser(); |
| 101 | + $values = array( |
| 102 | + 'name' => 'restful_test_translatable_entity', |
| 103 | + 'uid' => $user->uid, |
| 104 | + 'label' => 'Test translation', |
| 105 | + ); |
| 106 | + $entity = entity_create('restful_test_translatable_entity', $values); |
| 107 | + $wrapper = entity_metadata_wrapper('restful_test_translatable_entity', $entity); |
| 108 | + |
| 109 | + $text1 = array( |
| 110 | + 'en' => $this->randomName(), |
| 111 | + 'fr' => $this->randomName(), |
| 112 | + ); |
| 113 | + $text2 = array( |
| 114 | + 'en' => $this->randomName(), |
| 115 | + 'fr' => $this->randomName(), |
| 116 | + ); |
| 117 | + |
| 118 | + foreach (array('en', 'fr') as $langcode) { |
| 119 | + $wrapper->language($langcode); |
| 120 | + $wrapper->text_single->set($text1[$langcode]); |
| 121 | + $wrapper->text_multiple->set(array($text1[$langcode], $text2[$langcode])); |
| 122 | + } |
| 123 | + $wrapper->save(); |
| 124 | + |
| 125 | + $id = $entity->pid; |
| 126 | + foreach (array('en', 'fr') as $langcode) { |
| 127 | + $this->assertExpectedResult($langcode, $id, $text1[$langcode], $text2[$langcode]); |
| 128 | + } |
| 129 | + } |
| 130 | + |
| 131 | + /** |
| 132 | + * Helper to test viewing an entity (GET method) in a certain language. |
| 133 | + * |
| 134 | + * @param string $langcode |
| 135 | + * The language to view the entity in. |
| 136 | + * @param int $id |
| 137 | + * The ID of the entity to test. |
| 138 | + * @param string $text1 |
| 139 | + * The first expected string (text_single and text_multiple[0]). |
| 140 | + * @param string $text2 |
| 141 | + * The second expected string (text_multiple[2]). |
| 142 | + */ |
| 143 | + private function assertExpectedResult($langcode, $id, $text1, $text2) { |
| 144 | + $handler = restful_get_restful_handler('restful_test_translatable_entity'); |
| 145 | + // Explicitly set the langcode. |
| 146 | + $handler->setLangCode($langcode); |
| 147 | + $response = $handler->get($id); |
| 148 | + $result = $response[0]; |
| 149 | + |
| 150 | + $this->assertEqual(trim(strip_tags($result['text_single'])), $text1, 'Entity view has correct result for "text_single" in language "' . $langcode . '".'); |
| 151 | + $this->assertEqual(trim(strip_tags($result['text_multiple'][0])), $text1, 'Entity view has correct result for the first value of "text_multiple" in language "' . $langcode . '".'); |
| 152 | + $this->assertEqual(trim(strip_tags($result['text_multiple'][1])), $text2, 'Entity view has correct result for the second value of "text_multiple" in language "' . $langcode . '".'); |
| 153 | + } |
| 154 | +} |
0 commit comments