mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
parent
1117ad2f1c
commit
83abced287
1 changed files with 38 additions and 0 deletions
|
@ -530,6 +530,44 @@ class TranslateBehaviorTest extends CakeTestCase {
|
|||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* test save multiple locales method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testSaveMultipleLocales() {
|
||||
$this->loadFixtures('Translate', 'TranslatedItem');
|
||||
|
||||
$TestModel = new TranslatedItem();
|
||||
$data = array(
|
||||
'slug' => 'fourth_translated',
|
||||
'title' => array(
|
||||
'eng' => 'Title #4',
|
||||
'spa' => 'Leyenda #4',
|
||||
),
|
||||
'content' => array(
|
||||
'eng' => 'Content #4',
|
||||
'spa' => 'Contenido #4',
|
||||
),
|
||||
'translated_article_id' => 1,
|
||||
);
|
||||
$TestModel->create();
|
||||
$TestModel->save($data);
|
||||
|
||||
$translations = array('title' => 'Title', 'content' => 'Content');
|
||||
$TestModel->bindTranslation($translations, false);
|
||||
$TestModel->locale = array('eng', 'spa');
|
||||
$result = $TestModel->read();
|
||||
|
||||
$this->assertCount(2, $result['Title']);
|
||||
$this->assertEquals($result['Title'][0]['locale'], 'eng');
|
||||
$this->assertEquals($result['Title'][0]['content'], 'Title #4');
|
||||
$this->assertEquals($result['Title'][1]['locale'], 'spa');
|
||||
$this->assertEquals($result['Title'][1]['content'], 'Leyenda #4');
|
||||
|
||||
$this->assertCount(2, $result['Content']);
|
||||
}
|
||||
|
||||
/**
|
||||
* testSaveAssociatedCreate method
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue