| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\ORM;
- use Cake\TestSuite\TestCase;
- /**
- * Tests the features related to proxying methods from the Association
- * class to the Table class
- */
- class AssociationProxyTest extends TestCase
- {
- /**
- * Fixtures to be loaded
- *
- * @var array
- */
- public $fixtures = [
- 'core.Articles', 'core.Authors', 'core.Comments',
- ];
- /**
- * Teardown
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- $this->getTableLocator()->clear();
- }
- /**
- * Tests that it is possible to get associations as a property
- *
- * @return void
- */
- public function testAssociationAsProperty()
- {
- $articles = $this->getTableLocator()->get('articles');
- $articles->hasMany('comments');
- $articles->belongsTo('authors');
- $this->assertTrue(isset($articles->authors));
- $this->assertTrue(isset($articles->comments));
- $this->assertFalse(isset($articles->posts));
- $this->assertSame($articles->getAssociation('authors'), $articles->authors);
- $this->assertSame($articles->getAssociation('comments'), $articles->comments);
- }
- /**
- * Tests that getting a bad property throws exception
- *
- * @return void
- */
- public function testGetBadAssociation()
- {
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('You have not defined');
- $articles = $this->getTableLocator()->get('articles');
- $articles->posts;
- }
- /**
- * Test that find() with empty conditions generates valid SQL
- *
- * @return void
- */
- public function testFindEmptyConditions()
- {
- $table = $this->getTableLocator()->get('Users');
- $table->hasMany('Articles', [
- 'foreignKey' => 'author_id',
- 'conditions' => '',
- ]);
- $query = $table->Articles->find('list', ['limit' => 2]);
- $this->assertCount(2, $query->all());
- }
- /**
- * Tests that the proxied updateAll will preserve conditions set for the association
- *
- * @return void
- */
- public function testUpdateAllFromAssociation()
- {
- $articles = $this->getTableLocator()->get('articles');
- $comments = $this->getTableLocator()->get('comments');
- $articles->hasMany('comments', ['conditions' => ['published' => 'Y']]);
- $articles->comments->updateAll(['comment' => 'changed'], ['article_id' => 1]);
- $changed = $comments->find()->where(['comment' => 'changed'])->count();
- $this->assertEquals(3, $changed);
- }
- /**
- * Tests that the proxied deleteAll preserves conditions set for the association
- *
- * @return void
- */
- public function testDeleteAllFromAssociation()
- {
- $articles = $this->getTableLocator()->get('articles');
- $comments = $this->getTableLocator()->get('comments');
- $articles->hasMany('comments', ['conditions' => ['published' => 'Y']]);
- $articles->comments->deleteAll(['article_id' => 1]);
- $remaining = $comments->find()->where(['article_id' => 1])->count();
- $this->assertEquals(1, $remaining);
- }
- /**
- * Tests that it is possible to get associations as a property
- *
- * @return void
- */
- public function testAssociationAsPropertyProxy()
- {
- $articles = $this->getTableLocator()->get('articles');
- $authors = $this->getTableLocator()->get('authors');
- $articles->belongsTo('authors');
- $authors->hasMany('comments');
- $this->assertTrue(isset($articles->authors->comments));
- $this->assertSame($authors->getAssociation('comments'), $articles->authors->comments);
- }
- /**
- * Tests that methods are proxied from the Association to the target table
- *
- * @return void
- */
- public function testAssociationMethodProxy()
- {
- $articles = $this->getTableLocator()->get('articles');
- $mock = $this->getMockBuilder('Cake\ORM\Table')
- ->setMethods(['crazy'])
- ->getMock();
- $articles->belongsTo('authors', [
- 'targetTable' => $mock,
- ]);
- $mock->expects($this->once())->method('crazy')
- ->with('a', 'b')
- ->will($this->returnValue('thing'));
- $this->assertEquals('thing', $articles->authors->crazy('a', 'b'));
- }
- }
|