예제 #1
0
 /**
  * Tests that attaching an association to a query will trigger beforeFind
  * for the target table
  *
  * @return void
  */
 public function testAttachToBeforeFindExtraOptions()
 {
     $query = $this->getMock('\\Cake\\ORM\\Query', ['join', 'select'], [null, null]);
     $config = ['foreignKey' => 'user_id', 'sourceTable' => $this->user, 'targetTable' => $this->profile];
     $listener = $this->getMock('stdClass', ['__invoke']);
     $this->profile->eventManager()->attach($listener, 'Model.beforeFind');
     $association = new HasOne('Profiles', $config);
     $opts = new \ArrayObject(['something' => 'more']);
     $listener->expects($this->once())->method('__invoke')->with($this->isInstanceOf('\\Cake\\Event\\Event'), $this->isInstanceOf('\\Cake\\ORM\\Query'), $opts, false);
     $association->attachTo($query, ['queryBuilder' => function ($q) {
         return $q->applyOptions(['something' => 'more']);
     }]);
 }