| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://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. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\ORM;
- use Cake\Core\Plugin;
- use Cake\ORM\Association;
- use Cake\ORM\Table;
- use Cake\ORM\TableRegistry;
- use Cake\TestSuite\TestCase;
- /**
- * A Test double used to assert that default tables are created
- *
- */
- class TestTable extends Table
- {
- public function initialize(array $config = [])
- {
- $this->schema(['id' => ['type' => 'integer']]);
- }
- public function findPublished($query)
- {
- return $query->applyOptions(['this' => 'worked']);
- }
- }
- /**
- * Tests Association class
- *
- */
- class AssociationTest extends TestCase
- {
- /**
- * Set up
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->source = new TestTable;
- $config = [
- 'className' => '\Cake\Test\TestCase\ORM\TestTable',
- 'foreignKey' => 'a_key',
- 'conditions' => ['field' => 'value'],
- 'dependent' => true,
- 'sourceTable' => $this->source,
- 'joinType' => 'INNER'
- ];
- $this->association = $this->getMock(
- '\Cake\ORM\Association',
- [
- '_options', 'attachTo', '_joinCondition', 'cascadeDelete', 'isOwningSide',
- 'saveAssociated', 'eagerLoader', 'type'
- ],
- ['Foo', $config]
- );
- }
- /**
- * Tear down
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- TableRegistry::clear();
- }
- /**
- * Tests that _options acts as a callback where subclasses can add their own
- * initialization code based on the passed configuration array
- *
- * @return void
- */
- public function testOptionsIsCalled()
- {
- $options = ['foo' => 'bar'];
- $this->association->expects($this->once())->method('_options')->with($options);
- $this->association->__construct('Name', $options);
- }
- /**
- * Tests that name() returns the correct configure association name
- *
- * @return void
- */
- public function testName()
- {
- $this->assertEquals('Foo', $this->association->name());
- $this->association->name('Bar');
- $this->assertEquals('Bar', $this->association->name());
- }
- /**
- * Tests that cascadeCallbacks() returns the correct configured value
- *
- * @return void
- */
- public function testCascadeCallbacks()
- {
- $this->assertSame(false, $this->association->cascadeCallbacks());
- $this->association->cascadeCallbacks(true);
- $this->assertSame(true, $this->association->cascadeCallbacks());
- }
- /**
- * Tests the bindingKey method as a setter/getter
- *
- * @return void
- */
- public function testBindingKey()
- {
- $this->association->bindingKey('foo_id');
- $this->assertEquals('foo_id', $this->association->bindingKey());
- }
- /**
- * Tests the bindingKey() method when called with its defaults
- *
- * @return void
- */
- public function testBindingKeyDefault()
- {
- $this->source->primaryKey(['id', 'site_id']);
- $this->association
- ->expects($this->once())
- ->method('isOwningSide')
- ->will($this->returnValue(true));
- $result = $this->association->bindingKey();
- $this->assertEquals(['id', 'site_id'], $result);
- }
- /**
- * Tests the bindingKey() method when the association source is not the
- * owning side
- *
- * @return void
- */
- public function testBindingDefaultNoOwningSide()
- {
- $target = new Table;
- $target->primaryKey(['foo', 'site_id']);
- $this->association->target($target);
- $this->association
- ->expects($this->once())
- ->method('isOwningSide')
- ->will($this->returnValue(false));
- $result = $this->association->bindingKey();
- $this->assertEquals(['foo', 'site_id'], $result);
- }
- /**
- * Tests that name() returns the correct configured value
- *
- * @return void
- */
- public function testForeignKey()
- {
- $this->assertEquals('a_key', $this->association->foreignKey());
- $this->association->foreignKey('another_key');
- $this->assertEquals('another_key', $this->association->foreignKey());
- }
- /**
- * Tests that conditions() returns the correct configured value
- *
- * @return void
- */
- public function testConditions()
- {
- $this->assertEquals(['field' => 'value'], $this->association->conditions());
- $conds = ['another_key' => 'another value'];
- $this->association->conditions($conds);
- $this->assertEquals($conds, $this->association->conditions());
- }
- /**
- * Tests that canBeJoined() returns the correct configured value
- *
- * @return void
- */
- public function testCanBeJoined()
- {
- $this->assertTrue($this->association->canBeJoined());
- }
- /**
- * Tests that target() returns the correct Table object
- *
- * @return void
- */
- public function testTarget()
- {
- $table = $this->association->target();
- $this->assertInstanceOf(__NAMESPACE__ . '\TestTable', $table);
- $other = new Table;
- $this->association->target($other);
- $this->assertSame($other, $this->association->target());
- }
- /**
- * Tests that target() returns the correct Table object for plugins
- *
- * @return void
- */
- public function testTargetPlugin()
- {
- Plugin::load('TestPlugin');
- $config = [
- 'className' => 'TestPlugin.Comments',
- 'foreignKey' => 'a_key',
- 'conditions' => ['field' => 'value'],
- 'dependent' => true,
- 'sourceTable' => $this->source,
- 'joinType' => 'INNER'
- ];
- $this->association = $this->getMock(
- '\Cake\ORM\Association',
- ['type', 'eagerLoader', 'cascadeDelete', 'isOwningSide', 'saveAssociated'],
- ['ThisAssociationName', $config]
- );
- $table = $this->association->target();
- $this->assertInstanceOf('TestPlugin\Model\Table\CommentsTable', $table);
- $this->assertTrue(
- TableRegistry::exists('TestPlugin.ThisAssociationName'),
- 'The association class will use this registry key'
- );
- $this->assertFalse(TableRegistry::exists('TestPlugin.Comments'), 'The association class will NOT use this key');
- $this->assertFalse(TableRegistry::exists('Comments'), 'Should also not be set');
- $this->assertFalse(TableRegistry::exists('ThisAssociationName'), 'Should also not be set');
- $plugin = TableRegistry::get('TestPlugin.ThisAssociationName');
- $this->assertSame($table, $plugin, 'Should be an instance of TestPlugin.Comments');
- $this->assertSame('TestPlugin.ThisAssociationName', $table->registryAlias());
- $this->assertSame('comments', $table->table());
- $this->assertSame('ThisAssociationName', $table->alias());
- }
- /**
- * Tests that source() returns the correct Table object
- *
- * @return void
- */
- public function testSource()
- {
- $table = $this->association->source();
- $this->assertSame($this->source, $table);
- $other = new Table;
- $this->association->source($other);
- $this->assertSame($other, $this->association->source());
- }
- /**
- * Tests joinType method
- *
- * @return void
- */
- public function testJoinType()
- {
- $this->assertEquals('INNER', $this->association->joinType());
- $this->association->joinType('LEFT');
- $this->assertEquals('LEFT', $this->association->joinType());
- }
- /**
- * Tests property method
- *
- * @return void
- */
- public function testProperty()
- {
- $this->assertEquals('foo', $this->association->property());
- $this->association->property('thing');
- $this->assertEquals('thing', $this->association->property());
- }
- /**
- * Tests strategy method
- *
- * @return void
- */
- public function testStrategy()
- {
- $this->assertEquals('join', $this->association->strategy());
- $this->association->strategy('select');
- $this->assertEquals('select', $this->association->strategy());
- $this->association->strategy('subquery');
- $this->assertEquals('subquery', $this->association->strategy());
- }
- /**
- * Tests that providing an invalid strategy throws an exception
- *
- * @expectedException \InvalidArgumentException
- * @return void
- */
- public function testInvalidStrategy()
- {
- $this->association->strategy('anotherThing');
- $this->assertEquals('subquery', $this->association->strategy());
- }
- /**
- * Tests test finder() method as getter and setter
- *
- * @return void
- */
- public function testFinderMethod()
- {
- $this->assertEquals('all', $this->association->finder());
- $this->assertEquals('published', $this->association->finder('published'));
- $this->assertEquals('published', $this->association->finder());
- }
- /**
- * Tests that `finder` is a valid option for the association constructor
- *
- * @return void
- */
- public function testFinderInConstructor()
- {
- $config = [
- 'className' => '\Cake\Test\TestCase\ORM\TestTable',
- 'foreignKey' => 'a_key',
- 'conditions' => ['field' => 'value'],
- 'dependent' => true,
- 'sourceTable' => $this->source,
- 'joinType' => 'INNER',
- 'finder' => 'published'
- ];
- $assoc = $this->getMock(
- '\Cake\ORM\Association',
- ['type', 'eagerLoader', 'cascadeDelete', 'isOwningSide', 'saveAssociated'],
- ['Foo', $config]
- );
- $this->assertEquals('published', $assoc->finder());
- }
- /**
- * Tests that the defined custom finder is used when calling find
- * in the association
- *
- * @return void
- */
- public function testCustomFinderIsUsed()
- {
- $this->association->finder('published');
- $this->assertEquals(
- ['this' => 'worked'],
- $this->association->find()->getOptions()
- );
- }
- }
|