mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Adding more tests for Set::extract()
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4899 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
1a693ccc53
commit
3f3f86d62a
1 changed files with 104 additions and 27 deletions
|
@ -164,20 +164,97 @@ class SetTest extends UnitTestCase {
|
|||
|
||||
function testExtract() {
|
||||
$a = array(
|
||||
0 => array(
|
||||
'1day' => '20 sales'
|
||||
),
|
||||
1 => array(
|
||||
'1day' => '2 sales'
|
||||
)
|
||||
array('Article' => array(
|
||||
'id' => 1, 'title' => 'Article 1'
|
||||
)),
|
||||
array('Article' => array(
|
||||
'id' => 2, 'title' => 'Article 2'
|
||||
)),
|
||||
array('Article' => array(
|
||||
'id' => 3, 'title' => 'Article 3'
|
||||
))
|
||||
);
|
||||
|
||||
$result = Set::extract($a, '{n}.Article.id');
|
||||
$expected = array( 1, 2, 3 );
|
||||
$this->assertIdentical($result, $expected);
|
||||
|
||||
$result = Set::extract($a, '{n}.Article.title');
|
||||
$expected = array( 'Article 1', 'Article 2', 'Article 3' );
|
||||
$this->assertIdentical($result, $expected);
|
||||
|
||||
$a = array(
|
||||
array('Article' => array(
|
||||
'id' => 1, 'title' => 'Article 1',
|
||||
'User' => array(
|
||||
'id' => 1, 'username' => 'mariano.iglesias'
|
||||
)
|
||||
)),
|
||||
array('Article' => array(
|
||||
'id' => 2, 'title' => 'Article 2',
|
||||
'User' => array(
|
||||
'id' => 1, 'username' => 'mariano.iglesias'
|
||||
)
|
||||
)),
|
||||
array('Article' => array(
|
||||
'id' => 3, 'title' => 'Article 3',
|
||||
'User' => array(
|
||||
'id' => 2, 'username' => 'phpnut'
|
||||
)
|
||||
))
|
||||
);
|
||||
|
||||
$result = Set::extract($a, '{n}.Article.User.username');
|
||||
$expected = array( 'mariano.iglesias', 'mariano.iglesias', 'phpnut' );
|
||||
$this->assertIdentical($result, $expected);
|
||||
|
||||
$a = array(
|
||||
array('Article' => array(
|
||||
'id' => 1, 'title' => 'Article 1',
|
||||
'Comment' => array(
|
||||
array('id' => 10, 'title' => 'Comment 10'),
|
||||
array('id' => 11, 'title' => 'Comment 11'),
|
||||
array('id' => 12, 'title' => 'Comment 12'),
|
||||
)
|
||||
)),
|
||||
array('Article' => array(
|
||||
'id' => 2, 'title' => 'Article 2',
|
||||
'Comment' => array(
|
||||
array('id' => 13, 'title' => 'Comment 13'),
|
||||
array('id' => 14, 'title' => 'Comment 14')
|
||||
)
|
||||
)),
|
||||
array('Article' => array(
|
||||
'id' => 3, 'title' => 'Article 3'
|
||||
))
|
||||
);
|
||||
|
||||
$result = Set::extract($a, '{n}.Article.Comment.{n}.id');
|
||||
$expected = array (
|
||||
array(10, 11, 12),
|
||||
array(13, 14),
|
||||
null
|
||||
);
|
||||
$this->assertIdentical($result, $expected);
|
||||
|
||||
$result = Set::extract($a, '{n}.Article.Comment.{n}.title');
|
||||
$expected = array (
|
||||
array('Comment 10', 'Comment 11', 'Comment 12'),
|
||||
array('Comment 13', 'Comment 14'),
|
||||
null
|
||||
);
|
||||
$this->assertIdentical($result, $expected);
|
||||
|
||||
$a = array(
|
||||
array( '1day' => '20 sales' ),
|
||||
array( '1day' => '2 sales' )
|
||||
);
|
||||
|
||||
$result = Set::extract($a, '{n}.1day');
|
||||
|
||||
$expected = array(
|
||||
0 => '20 sales',
|
||||
1 => '2 sales'
|
||||
'20 sales',
|
||||
'2 sales'
|
||||
);
|
||||
|
||||
$this->assertIdentical($result, $expected);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue