| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312 |
- <?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 MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- namespace Cake\Test\TestCase\ORM;
- use Cake\Core\Configure;
- use Cake\Database\Expression\OrderByExpression;
- use Cake\Database\Expression\QueryExpression;
- use Cake\Database\TypeMap;
- use Cake\Datasource\ConnectionManager;
- use Cake\ORM\Table;
- use Cake\ORM\TableRegistry;
- use Cake\Validation\Validator;
- use Cake\Utility\Time;
- /**
- * Used to test correct class is instantiated when using TableRegistry::get();
- */
- class UsersTable extends Table {
- }
- /**
- * Tests Table class
- *
- */
- class TableTest extends \Cake\TestSuite\TestCase {
- public $fixtures = [
- 'core.user', 'core.category', 'core.article', 'core.author',
- 'core.tag', 'core.articles_tag'
- ];
- /**
- * Handy variable containing the next primary key that will be inserted in the
- * users table
- *
- * @var int
- */
- public static $nextUserId = 5;
- public function setUp() {
- parent::setUp();
- $this->connection = ConnectionManager::get('test');
- Configure::write('App.namespace', 'TestApp');
- $this->usersTypeMap = new TypeMap([
- 'Users.id' => 'integer',
- 'id' => 'integer',
- 'Users.username' => 'string',
- 'username' => 'string',
- 'Users.password' => 'string',
- 'password' => 'string',
- 'Users.created' => 'timestamp',
- 'created' => 'timestamp',
- 'Users.updated' => 'timestamp',
- 'updated' => 'timestamp',
- ]);
- $this->articlesTypeMap = new TypeMap([
- 'Articles.id' => 'integer',
- 'id' => 'integer',
- 'Articles.title' => 'string',
- 'title' => 'string',
- 'Articles.author_id' => 'integer',
- 'author_id' => 'integer',
- 'Articles.body' => 'text',
- 'body' => 'text',
- 'Articles.published' => 'string',
- 'published' => 'string',
- ]);
- }
- public function tearDown() {
- parent::tearDown();
- TableRegistry::clear();
- }
- /**
- * Tests the table method
- *
- * @return void
- */
- public function testTableMethod() {
- $table = new Table(['table' => 'users']);
- $this->assertEquals('users', $table->table());
- $table = new UsersTable;
- $this->assertEquals('users', $table->table());
- $table = $this->getMockBuilder('\Cake\ORM\Table')
- ->setMethods(['find'])
- ->setMockClassName('SpecialThingsTable')
- ->getMock();
- $this->assertEquals('special_things', $table->table());
- $table = new Table(['alias' => 'LoveBoats']);
- $this->assertEquals('love_boats', $table->table());
- $table->table('other');
- $this->assertEquals('other', $table->table());
- }
- /**
- * Tests the alias method
- *
- * @return void
- */
- public function testAliasMethod() {
- $table = new Table(['alias' => 'users']);
- $this->assertEquals('users', $table->alias());
- $table = new Table(['table' => 'stuffs']);
- $this->assertEquals('stuffs', $table->alias());
- $table = new UsersTable;
- $this->assertEquals('Users', $table->alias());
- $table = $this->getMockBuilder('\Cake\ORM\Table')
- ->setMethods(['find'])
- ->setMockClassName('SpecialThingTable')
- ->getMock();
- $this->assertEquals('SpecialThing', $table->alias());
- $table->alias('AnotherOne');
- $this->assertEquals('AnotherOne', $table->alias());
- }
- /**
- * Tests connection method
- *
- * @return void
- */
- public function testConnection() {
- $table = new Table(['table' => 'users']);
- $this->assertNull($table->connection());
- $table->connection($this->connection);
- $this->assertSame($this->connection, $table->connection());
- }
- /**
- * Tests primaryKey method
- *
- * @return void
- */
- public function testPrimaryKey() {
- $table = new Table([
- 'table' => 'users',
- 'schema' => [
- 'id' => ['type' => 'integer'],
- '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]]
- ]
- ]);
- $this->assertEquals('id', $table->primaryKey());
- $table->primaryKey('thingID');
- $this->assertEquals('thingID', $table->primaryKey());
- $table->primaryKey(['thingID', 'user_id']);
- $this->assertEquals(['thingID', 'user_id'], $table->primaryKey());
- }
- /**
- * Tests that name will be selected as a displayField
- *
- * @return void
- */
- public function testDisplayFieldName() {
- $table = new Table([
- 'table' => 'users',
- 'schema' => [
- 'foo' => ['type' => 'string'],
- 'name' => ['type' => 'string']
- ]
- ]);
- $this->assertEquals('name', $table->displayField());
- }
- /**
- * Tests that title will be selected as a displayField
- *
- * @return void
- */
- public function testDisplayFieldTitle() {
- $table = new Table([
- 'table' => 'users',
- 'schema' => [
- 'foo' => ['type' => 'string'],
- 'title' => ['type' => 'string']
- ]
- ]);
- $this->assertEquals('title', $table->displayField());
- }
- /**
- * Tests that no displayField will fallback to primary key
- *
- * @return void
- */
- public function testDisplayFallback() {
- $table = new Table([
- 'table' => 'users',
- 'schema' => [
- 'id' => ['type' => 'string'],
- 'foo' => ['type' => 'string'],
- '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]]
- ]
- ]);
- $this->assertEquals('id', $table->displayField());
- }
- /**
- * Tests that displayField can be changed
- *
- * @return void
- */
- public function testDisplaySet() {
- $table = new Table([
- 'table' => 'users',
- 'schema' => [
- 'id' => ['type' => 'string'],
- 'foo' => ['type' => 'string'],
- '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]]
- ]
- ]);
- $this->assertEquals('id', $table->displayField());
- $table->displayField('foo');
- $this->assertEquals('foo', $table->displayField());
- }
- /**
- * Tests schema method
- *
- * @return void
- */
- public function testSchema() {
- $schema = $this->connection->schemaCollection()->describe('users');
- $table = new Table([
- 'table' => 'users',
- 'connection' => $this->connection,
- ]);
- $this->assertEquals($schema, $table->schema());
- $table = new Table(['table' => 'stuff']);
- $table->schema($schema);
- $this->assertSame($schema, $table->schema());
- $table = new Table(['table' => 'another']);
- $schema = ['id' => ['type' => 'integer']];
- $table->schema($schema);
- $this->assertEquals(
- new \Cake\Database\Schema\Table('another', $schema),
- $table->schema()
- );
- }
- /**
- * Tests that all fields for a table are added by default in a find when no
- * other fields are specified
- *
- * @return void
- */
- public function testFindAllNoFieldsAndNoHydration() {
- $table = new Table([
- 'table' => 'users',
- 'connection' => $this->connection,
- ]);
- $results = $table
- ->find('all')
- ->where(['id IN' => [1, 2]])
- ->order('id')
- ->hydrate(false)
- ->toArray();
- $expected = [
- [
- 'id' => 1,
- 'username' => 'mariano',
- 'password' => '$2a$10$u05j8FjsvLBNdfhBhc21LOuVMpzpabVXQ9OpC2wO3pSO0q6t7HHMO',
- 'created' => new Time('2007-03-17 01:16:23'),
- 'updated' => new Time('2007-03-17 01:18:31'),
- ],
- [
- 'id' => 2,
- 'username' => 'nate',
- 'password' => '$2a$10$u05j8FjsvLBNdfhBhc21LOuVMpzpabVXQ9OpC2wO3pSO0q6t7HHMO',
- 'created' => new Time('2008-03-17 01:18:23'),
- 'updated' => new Time('2008-03-17 01:20:31'),
- ],
- ];
- $this->assertEquals($expected, $results);
- }
- /**
- * Tests that it is possible to select only a few fields when finding over a table
- *
- * @return void
- */
- public function testFindAllSomeFieldsNoHydration() {
- $table = new Table([
- 'table' => 'users',
- 'connection' => $this->connection,
- ]);
- $results = $table->find('all')
- ->select(['username', 'password'])
- ->hydrate(false)
- ->order('username')->toArray();
- $expected = [
- ['username' => 'garrett', 'password' => '$2a$10$u05j8FjsvLBNdfhBhc21LOuVMpzpabVXQ9OpC2wO3pSO0q6t7HHMO'],
- ['username' => 'larry', 'password' => '$2a$10$u05j8FjsvLBNdfhBhc21LOuVMpzpabVXQ9OpC2wO3pSO0q6t7HHMO'],
- ['username' => 'mariano', 'password' => '$2a$10$u05j8FjsvLBNdfhBhc21LOuVMpzpabVXQ9OpC2wO3pSO0q6t7HHMO'],
- ['username' => 'nate', 'password' => '$2a$10$u05j8FjsvLBNdfhBhc21LOuVMpzpabVXQ9OpC2wO3pSO0q6t7HHMO'],
- ];
- $this->assertSame($expected, $results);
- $results = $table->find('all')
- ->select(['foo' => 'username', 'password'])
- ->order('username')
- ->hydrate(false)
- ->toArray();
- $expected = [
- ['foo' => 'garrett', 'password' => '$2a$10$u05j8FjsvLBNdfhBhc21LOuVMpzpabVXQ9OpC2wO3pSO0q6t7HHMO'],
- ['foo' => 'larry', 'password' => '$2a$10$u05j8FjsvLBNdfhBhc21LOuVMpzpabVXQ9OpC2wO3pSO0q6t7HHMO'],
- ['foo' => 'mariano', 'password' => '$2a$10$u05j8FjsvLBNdfhBhc21LOuVMpzpabVXQ9OpC2wO3pSO0q6t7HHMO'],
- ['foo' => 'nate', 'password' => '$2a$10$u05j8FjsvLBNdfhBhc21LOuVMpzpabVXQ9OpC2wO3pSO0q6t7HHMO'],
- ];
- $this->assertSame($expected, $results);
- }
- /**
- * Tests that the query will automatically casts complex conditions to the correct
- * types when the columns belong to the default table
- *
- * @return void
- */
- public function testFindAllConditionAutoTypes() {
- $table = new Table([
- 'table' => 'users',
- 'connection' => $this->connection,
- ]);
- $query = $table->find('all')
- ->select(['id', 'username'])
- ->where(['created >=' => new Time('2010-01-22 00:00')])
- ->hydrate(false)
- ->order('id');
- $expected = [
- ['id' => 3, 'username' => 'larry'],
- ['id' => 4, 'username' => 'garrett']
- ];
- $this->assertSame($expected, $query->toArray());
- $query->orWhere(['users.created' => new Time('2008-03-17 01:18:23')]);
- $expected = [
- ['id' => 2, 'username' => 'nate'],
- ['id' => 3, 'username' => 'larry'],
- ['id' => 4, 'username' => 'garrett']
- ];
- $this->assertSame($expected, $query->toArray());
- }
- /**
- * Test that beforeFind events can mutate the query.
- *
- * @return void
- */
- public function testFindBeforeFindEventMutateQuery() {
- $table = new Table([
- 'table' => 'users',
- 'connection' => $this->connection,
- ]);
- $table->getEventManager()->attach(function ($event, $query, $options) {
- $query->limit(1);
- }, 'Model.beforeFind');
- $result = $table->find('all')->all();
- $this->assertCount(1, $result, 'Should only have 1 record, limit 1 applied.');
- }
- /**
- * Test that beforeFind events are fired and can stop the find and
- * return custom results.
- *
- * @return void
- */
- public function testFindBeforeFindEventOverrideReturn() {
- $table = new Table([
- 'table' => 'users',
- 'connection' => $this->connection,
- ]);
- $expected = ['One', 'Two', 'Three'];
- $table->getEventManager()->attach(function ($event, $query, $options) use ($expected) {
- $query->setResult($expected);
- $event->stopPropagation();
- }, 'Model.beforeFind');
- $query = $table->find('all');
- $query->limit(1);
- $this->assertEquals($expected, $query->all());
- }
- /**
- * Tests that belongsTo() creates and configures correctly the association
- *
- * @return void
- */
- public function testBelongsTo() {
- $options = ['foreignKey' => 'fake_id', 'conditions' => ['a' => 'b']];
- $table = new Table(['table' => 'dates']);
- $belongsTo = $table->belongsTo('user', $options);
- $this->assertInstanceOf('\Cake\ORM\Association\BelongsTo', $belongsTo);
- $this->assertSame($belongsTo, $table->association('user'));
- $this->assertEquals('user', $belongsTo->name());
- $this->assertEquals('fake_id', $belongsTo->foreignKey());
- $this->assertEquals(['a' => 'b'], $belongsTo->conditions());
- $this->assertSame($table, $belongsTo->source());
- }
- /**
- * Tests that hasOne() creates and configures correctly the association
- *
- * @return void
- */
- public function testHasOne() {
- $options = ['foreignKey' => 'user_id', 'conditions' => ['b' => 'c']];
- $table = new Table(['table' => 'users']);
- $hasOne = $table->hasOne('profile', $options);
- $this->assertInstanceOf('\Cake\ORM\Association\HasOne', $hasOne);
- $this->assertSame($hasOne, $table->association('profile'));
- $this->assertEquals('profile', $hasOne->name());
- $this->assertEquals('user_id', $hasOne->foreignKey());
- $this->assertEquals(['b' => 'c'], $hasOne->conditions());
- $this->assertSame($table, $hasOne->source());
- }
- /**
- * Tests that hasMany() creates and configures correctly the association
- *
- * @return void
- */
- public function testHasMany() {
- $options = [
- 'foreignKey' => 'author_id',
- 'conditions' => ['b' => 'c'],
- 'sort' => ['foo' => 'asc']
- ];
- $table = new Table(['table' => 'authors']);
- $hasMany = $table->hasMany('article', $options);
- $this->assertInstanceOf('\Cake\ORM\Association\HasMany', $hasMany);
- $this->assertSame($hasMany, $table->association('article'));
- $this->assertEquals('article', $hasMany->name());
- $this->assertEquals('author_id', $hasMany->foreignKey());
- $this->assertEquals(['b' => 'c'], $hasMany->conditions());
- $this->assertEquals(['foo' => 'asc'], $hasMany->sort());
- $this->assertSame($table, $hasMany->source());
- }
- /**
- * Tests that BelongsToMany() creates and configures correctly the association
- *
- * @return void
- */
- public function testBelongsToMany() {
- $options = [
- 'foreignKey' => 'thing_id',
- 'joinTable' => 'things_tags',
- 'conditions' => ['b' => 'c'],
- 'sort' => ['foo' => 'asc']
- ];
- $table = new Table(['table' => 'authors', 'connection' => $this->connection]);
- $belongsToMany = $table->belongsToMany('tag', $options);
- $this->assertInstanceOf('\Cake\ORM\Association\BelongsToMany', $belongsToMany);
- $this->assertSame($belongsToMany, $table->association('tag'));
- $this->assertEquals('tag', $belongsToMany->name());
- $this->assertEquals('thing_id', $belongsToMany->foreignKey());
- $this->assertEquals(['b' => 'c'], $belongsToMany->conditions());
- $this->assertEquals(['foo' => 'asc'], $belongsToMany->sort());
- $this->assertSame($table, $belongsToMany->source());
- $this->assertSame('things_tags', $belongsToMany->junction()->table());
- }
- /**
- * Test basic multi row updates.
- *
- * @return void
- */
- public function testUpdateAll() {
- $table = new Table([
- 'table' => 'users',
- 'connection' => $this->connection,
- ]);
- $fields = ['username' => 'mark'];
- $result = $table->updateAll($fields, ['id <' => 4]);
- $this->assertTrue($result);
- $result = $table->find('all')
- ->select(['username'])
- ->order(['id' => 'asc'])
- ->hydrate(false)
- ->toArray();
- $expected = array_fill(0, 3, $fields);
- $expected[] = ['username' => 'garrett'];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that exceptions from the Query bubble up.
- *
- * @expectedException \Cake\Database\Exception
- */
- public function testUpdateAllFailure() {
- $table = $this->getMock(
- 'Cake\ORM\Table',
- ['query'],
- [['table' => 'users', 'connection' => $this->connection]]
- );
- $query = $this->getMock('Cake\ORM\Query', ['execute'], [$this->connection, $table]);
- $table->expects($this->once())
- ->method('query')
- ->will($this->returnValue($query));
- $query->expects($this->once())
- ->method('execute')
- ->will($this->throwException(new \Cake\Database\Exception('Not good')));
- $table->updateAll(['username' => 'mark'], []);
- }
- /**
- * Test deleting many records.
- *
- * @return void
- */
- public function testDeleteAll() {
- $table = new Table([
- 'table' => 'users',
- 'connection' => $this->connection,
- ]);
- $result = $table->deleteAll(['id <' => 4]);
- $this->assertTrue($result);
- $result = $table->find('all')->toArray();
- $this->assertCount(1, $result, 'Only one record should remain');
- $this->assertEquals(4, $result[0]['id']);
- }
- /**
- * Test that exceptions from the Query bubble up.
- *
- * @expectedException \Cake\Database\Exception
- */
- public function testDeleteAllFailure() {
- $table = $this->getMock(
- 'Cake\ORM\Table',
- ['query'],
- [['table' => 'users', 'connection' => $this->connection]]
- );
- $query = $this->getMock('Cake\ORM\Query', ['execute'], [$this->connection, $table]);
- $table->expects($this->once())
- ->method('query')
- ->will($this->returnValue($query));
- $query->expects($this->once())
- ->method('execute')
- ->will($this->throwException(new \Cake\Database\Exception('Not good')));
- $table->deleteAll(['id >' => 4]);
- }
- /**
- * Tests that array options are passed to the query object using applyOptions
- *
- * @return void
- */
- public function testFindApplyOptions() {
- $table = $this->getMock(
- 'Cake\ORM\Table',
- ['query', 'findAll'],
- [['table' => 'users', 'connection' => $this->connection]]
- );
- $query = $this->getMock('Cake\ORM\Query', [], [$this->connection, $table]);
- $table->expects($this->once())
- ->method('query')
- ->will($this->returnValue($query));
- $options = ['fields' => ['a', 'b'], 'connections' => ['a >' => 1]];
- $query->expects($this->any())
- ->method('select')
- ->will($this->returnSelf());
- $query->expects($this->once())->method('getOptions')
- ->will($this->returnValue(['connections' => ['a >' => 1]]));
- $query->expects($this->once())
- ->method('applyOptions')
- ->with($options);
- $table->expects($this->once())->method('findAll')
- ->with($query, ['connections' => ['a >' => 1]]);
- $table->find('all', $options);
- }
- /**
- * Tests find('list')
- *
- * @return void
- */
- public function testFindListNoHydration() {
- $table = new Table([
- 'table' => 'users',
- 'connection' => $this->connection,
- ]);
- $table->displayField('username');
- $query = $table->find('list')
- ->hydrate(false)
- ->order('id');
- $expected = [
- 1 => 'mariano',
- 2 => 'nate',
- 3 => 'larry',
- 4 => 'garrett'
- ];
- $this->assertSame($expected, $query->toArray());
- $query = $table->find('list', ['fields' => ['id', 'username']])
- ->hydrate(false)
- ->order('id');
- $expected = [
- 1 => 'mariano',
- 2 => 'nate',
- 3 => 'larry',
- 4 => 'garrett'
- ];
- $this->assertSame($expected, $query->toArray());
- $query = $table->find('list', ['groupField' => 'odd'])
- ->select(['id', 'username', 'odd' => new QueryExpression('id % 2')])
- ->hydrate(false)
- ->order('id');
- $expected = [
- 1 => [
- 1 => 'mariano',
- 3 => 'larry'
- ],
- 0 => [
- 2 => 'nate',
- 4 => 'garrett'
- ]
- ];
- $this->assertSame($expected, $query->toArray());
- }
- /**
- * Tests find('threaded')
- *
- * @return void
- */
- public function testFindThreadedNoHydration() {
- $table = new Table([
- 'table' => 'categories',
- 'connection' => $this->connection,
- ]);
- $expected = [
- [
- 'id' => 1,
- 'parent_id' => 0,
- 'name' => 'Category 1',
- 'children' => [
- [
- 'id' => 2,
- 'parent_id' => 1,
- 'name' => 'Category 1.1',
- 'children' => [
- [
- 'id' => 7,
- 'parent_id' => 2,
- 'name' => 'Category 1.1.1',
- 'children' => []
- ],
- [
- 'id' => 8,
- 'parent_id' => '2',
- 'name' => 'Category 1.1.2',
- 'children' => []
- ]
- ],
- ],
- [
- 'id' => 3,
- 'parent_id' => '1',
- 'name' => 'Category 1.2',
- 'children' => []
- ],
- ]
- ],
- [
- 'id' => 4,
- 'parent_id' => 0,
- 'name' => 'Category 2',
- 'children' => []
- ],
- [
- 'id' => 5,
- 'parent_id' => 0,
- 'name' => 'Category 3',
- 'children' => [
- [
- 'id' => '6',
- 'parent_id' => '5',
- 'name' => 'Category 3.1',
- 'children' => []
- ]
- ]
- ]
- ];
- $results = $table->find('all')
- ->select(['id', 'parent_id', 'name'])
- ->hydrate(false)
- ->find('threaded')
- ->toArray();
- $this->assertEquals($expected, $results);
- }
- /**
- * Tests that finders can be stacked
- *
- * @return void
- */
- public function testStackingFinders() {
- $table = $this->getMock('\Cake\ORM\Table', ['find', 'findList'], [], '', false);
- $params = [$this->connection, $table];
- $query = $this->getMock('\Cake\ORM\Query', ['addDefaultTypes'], $params);
- $table->expects($this->once())
- ->method('find')
- ->with('threaded', ['order' => ['name' => 'ASC']])
- ->will($this->returnValue($query));
- $table->expects($this->once())
- ->method('findList')
- ->with($query, ['keyPath' => 'id'])
- ->will($this->returnValue($query));
- $result = $table
- ->find('threaded', ['order' => ['name' => 'ASC']])
- ->find('list', ['keyPath' => 'id']);
- $this->assertSame($query, $result);
- }
- /**
- * Tests find('threaded') with hydrated results
- *
- * @return void
- */
- public function testFindThreadedHydrated() {
- $table = new Table([
- 'table' => 'categories',
- 'connection' => $this->connection,
- ]);
- $results = $table->find('all')
- ->find('threaded')
- ->select(['id', 'parent_id', 'name'])
- ->toArray();
- $this->assertEquals(1, $results[0]->id);
- $expected = [
- 'id' => 8,
- 'parent_id' => 2,
- 'name' => 'Category 1.1.2',
- 'children' => []
- ];
- $this->assertEquals($expected, $results[0]->children[0]->children[1]->toArray());
- }
- /**
- * Tests find('list') with hydrated records
- *
- * @return void
- */
- public function testFindListHydrated() {
- $table = new Table([
- 'table' => 'users',
- 'connection' => $this->connection,
- ]);
- $table->displayField('username');
- $query = $table
- ->find('list', ['fields' => ['id', 'username']])
- ->order('id');
- $expected = [
- 1 => 'mariano',
- 2 => 'nate',
- 3 => 'larry',
- 4 => 'garrett'
- ];
- $this->assertSame($expected, $query->toArray());
- $query = $table->find('list', ['groupField' => 'odd'])
- ->select(['id', 'username', 'odd' => new QueryExpression('id % 2')])
- ->hydrate(true)
- ->order('id');
- $expected = [
- 1 => [
- 1 => 'mariano',
- 3 => 'larry'
- ],
- 0 => [
- 2 => 'nate',
- 4 => 'garrett'
- ]
- ];
- $this->assertSame($expected, $query->toArray());
- }
- /**
- * Test the default entityClass.
- *
- * @return void
- */
- public function testEntityClassDefault() {
- $table = new Table();
- $this->assertEquals('\Cake\ORM\Entity', $table->entityClass());
- }
- /**
- * Tests that using a simple string for entityClass will try to
- * load the class from the App namespace
- *
- * @return void
- */
- public function testTableClassInApp() {
- $class = $this->getMockClass('\Cake\ORM\Entity');
- if (!class_exists('TestApp\Model\Entity\TestUser')) {
- class_alias($class, 'TestApp\Model\Entity\TestUser');
- }
- $table = new Table();
- $this->assertEquals('TestApp\Model\Entity\TestUser', $table->entityClass('TestUser'));
- }
- /**
- * Tests that using a simple string for entityClass will try to
- * load the class from the Plugin namespace when using plugin notation
- *
- * @return void
- */
- public function testTableClassInPlugin() {
- $class = $this->getMockClass('\Cake\ORM\Entity');
- if (!class_exists('MyPlugin\Model\Entity\SuperUser')) {
- class_alias($class, 'MyPlugin\Model\Entity\SuperUser');
- }
- $table = new Table();
- $this->assertEquals(
- 'MyPlugin\Model\Entity\SuperUser',
- $table->entityClass('MyPlugin.SuperUser')
- );
- }
- /**
- * Tests that using a simple string for entityClass will throw an exception
- * when the class does not exist in the namespace
- *
- * @expectedException \Cake\ORM\Error\MissingEntityException
- * @expectedExceptionMessage Entity class FooUser could not be found.
- * @return void
- */
- public function testTableClassNonExisting() {
- $table = new Table;
- $this->assertFalse($table->entityClass('FooUser'));
- }
- /**
- * Tests getting the entityClass based on conventions for the entity
- * namespace
- *
- * @return void
- */
- public function testTableClassConventionForAPP() {
- $table = new \TestApp\Model\Table\ArticlesTable;
- $this->assertEquals('TestApp\Model\Entity\Article', $table->entityClass());
- }
- /**
- * Tests setting a entity class object using the setter method
- *
- * @return void
- */
- public function testSetEntityClass() {
- $table = new Table;
- $class = '\\' . $this->getMockClass('\Cake\ORM\Entity');
- $table->entityClass($class);
- $this->assertEquals($class, $table->entityClass());
- }
- /**
- * Proves that associations, even though they are lazy loaded, will fetch
- * records using the correct table class and hydrate with the correct entity
- *
- * @return void
- */
- public function testReciprocalBelongsToLoading() {
- $table = new \TestApp\Model\Table\ArticlesTable([
- 'connection' => $this->connection,
- ]);
- $result = $table->find('all')->contain(['authors'])->first();
- $this->assertInstanceOf('TestApp\Model\Entity\Author', $result->author);
- }
- /**
- * Proves that associations, even though they are lazy loaded, will fetch
- * records using the correct table class and hydrate with the correct entity
- *
- * @return void
- */
- public function testReciprocalHasManyLoading() {
- $table = new \TestApp\Model\Table\ArticlesTable([
- 'connection' => $this->connection,
- ]);
- $result = $table->find('all')->contain(['authors' => ['articles']])->first();
- $this->assertCount(2, $result->author->articles);
- foreach ($result->author->articles as $article) {
- $this->assertInstanceOf('TestApp\Model\Entity\Article', $article);
- }
- }
- /**
- * Tests that the correct table and entity are loaded for the join association in
- * a belongsToMany setup
- *
- * @return void
- */
- public function testReciprocalBelongsToMany() {
- $table = new \TestApp\Model\Table\ArticlesTable([
- 'connection' => $this->connection,
- ]);
- $result = $table->find('all')->contain(['tags'])->first();
- $this->assertInstanceOf('TestApp\Model\Entity\Tag', $result->tags[0]);
- $this->assertInstanceOf(
- 'TestApp\Model\Entity\ArticlesTag',
- $result->tags[0]->_joinData
- );
- }
- /**
- * Tests that recently fetched entities are always clean
- *
- * @return void
- */
- public function testFindCleanEntities() {
- $table = new \TestApp\Model\Table\ArticlesTable([
- 'connection' => $this->connection,
- ]);
- $results = $table->find('all')->contain(['tags', 'authors'])->toArray();
- $this->assertCount(3, $results);
- foreach ($results as $article) {
- $this->assertFalse($article->dirty('id'));
- $this->assertFalse($article->dirty('title'));
- $this->assertFalse($article->dirty('author_id'));
- $this->assertFalse($article->dirty('body'));
- $this->assertFalse($article->dirty('published'));
- $this->assertFalse($article->dirty('author'));
- $this->assertFalse($article->author->dirty('id'));
- $this->assertFalse($article->author->dirty('name'));
- $this->assertFalse($article->dirty('tag'));
- if ($article->tag) {
- $this->assertFalse($article->tag[0]->_joinData->dirty('tag_id'));
- }
- }
- }
- /**
- * Tests that recently fetched entities are marked as not new
- *
- * @return void
- */
- public function testFindPersistedEntities() {
- $table = new \TestApp\Model\Table\ArticlesTable([
- 'connection' => $this->connection,
- ]);
- $results = $table->find('all')->contain(['tags', 'authors'])->toArray();
- $this->assertCount(3, $results);
- foreach ($results as $article) {
- $this->assertFalse($article->isNew());
- foreach ((array)$article->tag as $tag) {
- $this->assertFalse($tag->isNew());
- $this->assertFalse($tag->_joinData->isNew());
- }
- }
- }
- /**
- * Tests the exists function
- *
- * @return void
- */
- public function testExists() {
- $table = TableRegistry::get('users');
- $this->assertTrue($table->exists(['id' => 1]));
- $this->assertFalse($table->exists(['id' => 501]));
- $this->assertTrue($table->exists(['id' => 3, 'username' => 'larry']));
- }
- /**
- * Test adding a behavior to a table.
- *
- * @return void
- */
- public function testAddBehavior() {
- $mock = $this->getMock('Cake\ORM\BehaviorRegistry', [], [], '', false);
- $mock->expects($this->once())
- ->method('load')
- ->with('Sluggable');
- $table = new Table([
- 'table' => 'articles',
- 'behaviors' => $mock
- ]);
- $table->addBehavior('Sluggable');
- }
- /**
- * Ensure exceptions are raised on missing behaviors.
- *
- * @expectedException \Cake\ORM\Error\MissingBehaviorException
- */
- public function testAddBehaviorMissing() {
- $table = TableRegistry::get('article');
- $this->assertNull($table->addBehavior('NopeNotThere'));
- }
- /**
- * Test mixin methods from behaviors.
- *
- * @return void
- */
- public function testCallBehaviorMethod() {
- $table = TableRegistry::get('article');
- $table->addBehavior('Sluggable');
- $this->assertEquals('some_value', $table->slugify('some value'));
- }
- /**
- * Test you can alias a behavior method
- *
- * @return void
- */
- public function testCallBehaviorAliasedMethod() {
- $table = TableRegistry::get('article');
- $table->addBehavior('Sluggable', ['implementedMethods' => ['wednesday' => 'slugify']]);
- $this->assertEquals('some_value', $table->wednesday('some value'));
- }
- /**
- * Test finder methods from behaviors.
- *
- * @return void
- */
- public function testCallBehaviorFinder() {
- $table = TableRegistry::get('articles');
- $table->addBehavior('Sluggable');
- $query = $table->find('noSlug');
- $this->assertInstanceOf('Cake\ORM\Query', $query);
- $this->assertNotEmpty($query->clause('where'));
- }
- /**
- * testCallBehaviorAliasedFinder
- *
- * @return void
- */
- public function testCallBehaviorAliasedFinder() {
- $table = TableRegistry::get('articles');
- $table->addBehavior('Sluggable', ['implementedFinders' => ['special' => 'findNoSlug']]);
- $query = $table->find('special');
- $this->assertInstanceOf('Cake\ORM\Query', $query);
- $this->assertNotEmpty($query->clause('where'));
- }
- /**
- * Test implementedEvents
- *
- * @return void
- */
- public function testImplementedEvents() {
- $table = $this->getMock(
- 'Cake\ORM\Table',
- ['beforeFind', 'beforeSave', 'afterSave', 'beforeDelete', 'afterDelete']
- );
- $result = $table->implementedEvents();
- $expected = [
- 'Model.beforeFind' => 'beforeFind',
- 'Model.beforeSave' => 'beforeSave',
- 'Model.afterSave' => 'afterSave',
- 'Model.beforeDelete' => 'beforeDelete',
- 'Model.afterDelete' => 'afterDelete',
- ];
- $this->assertEquals($expected, $result, 'Events do not match.');
- }
- /**
- * Tests that it is possible to insert a new row using the save method
- *
- * @group save
- * @return void
- */
- public function testSaveNewEntity() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'password' => 'root',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $table = TableRegistry::get('users');
- $this->assertSame($entity, $table->save($entity));
- $this->assertEquals($entity->id, self::$nextUserId);
- $row = $table->find('all')->where(['id' => self::$nextUserId])->first();
- $this->assertEquals($entity->toArray(), $row->toArray());
- }
- /**
- * Test that saving a new empty entity does nothing.
- *
- * @group save
- * @return void
- */
- public function testSaveNewEmptyEntity() {
- $entity = new \Cake\ORM\Entity();
- $table = TableRegistry::get('users');
- $this->assertFalse($table->save($entity));
- }
- /**
- * Tests that saving an entity will filter out properties that
- * are not present in the table schema when saving
- *
- * @group save
- * @return void
- */
- public function testSaveEntityOnlySchemaFields() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'password' => 'root',
- 'crazyness' => 'super crazy value',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00'),
- ]);
- $table = TableRegistry::get('users');
- $this->assertSame($entity, $table->save($entity));
- $this->assertEquals($entity->id, self::$nextUserId);
- $row = $table->find('all')->where(['id' => self::$nextUserId])->first();
- $entity->unsetProperty('crazyness');
- $this->assertEquals($entity->toArray(), $row->toArray());
- }
- /**
- * Tests that it is possible to modify data from the beforeSave callback
- *
- * @group save
- * @return void
- */
- public function testBeforeSaveModifyData() {
- $table = TableRegistry::get('users');
- $data = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $listener = function($e, $entity, $options) use ($data) {
- $this->assertSame($data, $entity);
- $entity->set('password', 'foo');
- };
- $table->getEventManager()->attach($listener, 'Model.beforeSave');
- $this->assertSame($data, $table->save($data));
- $this->assertEquals($data->id, self::$nextUserId);
- $row = $table->find('all')->where(['id' => self::$nextUserId])->first();
- $this->assertEquals('foo', $row->get('password'));
- }
- /**
- * Tests that it is possible to modify the options array in beforeSave
- *
- * @group save
- * @return void
- */
- public function testBeforeSaveModifyOptions() {
- $table = TableRegistry::get('users');
- $data = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'password' => 'foo',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $listener1 = function($e, $entity, $options) {
- $options['crazy'] = true;
- };
- $listener2 = function($e, $entity, $options) {
- $this->assertTrue($options['crazy']);
- };
- $table->getEventManager()->attach($listener1, 'Model.beforeSave');
- $table->getEventManager()->attach($listener2, 'Model.beforeSave');
- $this->assertSame($data, $table->save($data));
- $this->assertEquals($data->id, self::$nextUserId);
- $row = $table->find('all')->where(['id' => self::$nextUserId])->first();
- $this->assertEquals($data->toArray(), $row->toArray());
- }
- /**
- * Tests that it is possible to stop the saving altogether, without implying
- * the save operation failed
- *
- * @group save
- * @return void
- */
- public function testBeforeSaveStopEvent() {
- $table = TableRegistry::get('users');
- $data = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $listener = function($e, $entity) {
- $e->stopPropagation();
- return $entity;
- };
- $table->getEventManager()->attach($listener, 'Model.beforeSave');
- $this->assertSame($data, $table->save($data));
- $this->assertNull($data->id);
- $row = $table->find('all')->where(['id' => self::$nextUserId])->first();
- $this->assertNull($row);
- }
- /**
- * Asserts that afterSave callback is called on successful save
- *
- * @group save
- * @return void
- */
- public function testAfterSave() {
- $table = TableRegistry::get('users');
- $data = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $called = false;
- $listener = function($e, $entity, $options) use ($data, &$called) {
- $this->assertSame($data, $entity);
- $called = true;
- };
- $table->getEventManager()->attach($listener, 'Model.afterSave');
- $this->assertSame($data, $table->save($data));
- $this->assertEquals($data->id, self::$nextUserId);
- $this->assertTrue($called);
- }
- /**
- * Asserts that afterSave callback not is called on unsuccessful save
- *
- * @group save
- * @return void
- */
- public function testAfterSaveNotCalled() {
- $table = $this->getMock(
- '\Cake\ORM\Table',
- ['query', 'exists'],
- [['table' => 'users', 'connection' => $this->connection]]
- );
- $query = $this->getMock(
- '\Cake\ORM\Query',
- ['execute', 'addDefaultTypes'],
- [null, $table]
- );
- $statement = $this->getMock('\Cake\Database\Statement\StatementDecorator');
- $data = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $table->expects($this->once())->method('exists')
- ->will($this->returnValue(false));
- $table->expects($this->once())->method('query')
- ->will($this->returnValue($query));
- $query->expects($this->once())->method('execute')
- ->will($this->returnValue($statement));
- $statement->expects($this->once())->method('rowCount')
- ->will($this->returnValue(0));
- $called = false;
- $listener = function($e, $entity, $options) use ($data, &$called) {
- $called = true;
- };
- $table->getEventManager()->attach($listener, 'Model.afterSave');
- $this->assertFalse($table->save($data));
- $this->assertFalse($called);
- }
- /**
- * Tests that save is wrapped around a transaction
- *
- * @group save
- * @return void
- */
- public function testAtomicSave() {
- $config = ConnectionManager::config('test');
- $connection = $this->getMock(
- '\Cake\Database\Connection',
- ['begin', 'commit'],
- [$config]
- );
- $connection->driver($this->connection->driver());
- $table = $this->getMock('\Cake\ORM\Table', ['connection'], [['table' => 'users']]);
- $table->expects($this->any())->method('connection')
- ->will($this->returnValue($connection));
- $connection->expects($this->once())->method('begin');
- $connection->expects($this->once())->method('commit');
- $data = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $this->assertSame($data, $table->save($data));
- }
- /**
- * Tests that save will rollback the transaction in the case of an exception
- *
- * @group save
- * @expectedException \PDOException
- * @return void
- */
- public function testAtomicSaveRollback() {
- $connection = $this->getMock(
- '\Cake\Database\Connection',
- ['begin', 'rollback'],
- [ConnectionManager::config('test')]
- );
- $connection->driver(ConnectionManager::get('test')->driver());
- $table = $this->getMock(
- '\Cake\ORM\Table',
- ['query', 'connection', 'exists'],
- [['table' => 'users']]
- );
- $query = $this->getMock(
- '\Cake\ORM\Query',
- ['execute', 'addDefaultTypes'],
- [null, $table]
- );
- $table->expects($this->once())->method('exists')
- ->will($this->returnValue(false));
- $table->expects($this->any())->method('connection')
- ->will($this->returnValue($connection));
- $table->expects($this->once())->method('query')
- ->will($this->returnValue($query));
- $connection->expects($this->once())->method('begin');
- $connection->expects($this->once())->method('rollback');
- $query->expects($this->once())->method('execute')
- ->will($this->throwException(new \PDOException));
- $data = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $table->save($data);
- }
- /**
- * Tests that save will rollback the transaction in the case of an exception
- *
- * @group save
- * @return void
- */
- public function testAtomicSaveRollbackOnFailure() {
- $connection = $this->getMock(
- '\Cake\Database\Connection',
- ['begin', 'rollback'],
- [ConnectionManager::config('test')]
- );
- $connection->driver(ConnectionManager::get('test')->driver());
- $table = $this->getMock(
- '\Cake\ORM\Table',
- ['query', 'connection', 'exists'],
- [['table' => 'users']]
- );
- $query = $this->getMock(
- '\Cake\ORM\Query',
- ['execute', 'addDefaultTypes'],
- [null, $table]
- );
- $table->expects($this->once())->method('exists')
- ->will($this->returnValue(false));
- $table->expects($this->any())->method('connection')
- ->will($this->returnValue($connection));
- $table->expects($this->once())->method('query')
- ->will($this->returnValue($query));
- $statement = $this->getMock('\Cake\Database\Statement\StatementDecorator');
- $statement->expects($this->once())
- ->method('rowCount')
- ->will($this->returnValue(0));
- $connection->expects($this->once())->method('begin');
- $connection->expects($this->once())->method('rollback');
- $query->expects($this->once())
- ->method('execute')
- ->will($this->returnValue($statement));
- $data = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $table->save($data);
- }
- /**
- * Tests that only the properties marked as dirty are actually saved
- * to the database
- *
- * @group save
- * @return void
- */
- public function testSaveOnlyDirtyProperties() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'password' => 'root',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $entity->clean();
- $entity->dirty('username', true);
- $entity->dirty('created', true);
- $entity->dirty('updated', true);
- $table = TableRegistry::get('users');
- $this->assertSame($entity, $table->save($entity));
- $this->assertEquals($entity->id, self::$nextUserId);
- $row = $table->find('all')->where(['id' => self::$nextUserId])->first();
- $entity->set('password', null);
- $this->assertEquals($entity->toArray(), $row->toArray());
- }
- /**
- * Tests that a recently saved entity is marked as clean
- *
- * @group save
- * @return void
- */
- public function testsASavedEntityIsClean() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'password' => 'root',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $table = TableRegistry::get('users');
- $this->assertSame($entity, $table->save($entity));
- $this->assertFalse($entity->dirty('usermane'));
- $this->assertFalse($entity->dirty('password'));
- $this->assertFalse($entity->dirty('created'));
- $this->assertFalse($entity->dirty('updated'));
- }
- /**
- * Tests that a recently saved entity is marked as not new
- *
- * @group save
- * @return void
- */
- public function testsASavedEntityIsNotNew() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'password' => 'root',
- 'created' => new Time('2013-10-10 00:00'),
- 'updated' => new Time('2013-10-10 00:00')
- ]);
- $table = TableRegistry::get('users');
- $this->assertSame($entity, $table->save($entity));
- $this->assertFalse($entity->isNew());
- }
- /**
- * Tests that save can detect automatically if it needs to insert
- * or update a row
- *
- * @group save
- * @return void
- */
- public function testSaveUpdateAuto() {
- $entity = new \Cake\ORM\Entity([
- 'id' => 2,
- 'username' => 'baggins'
- ]);
- $table = TableRegistry::get('users');
- $original = $table->find('all')->where(['id' => 2])->first();
- $this->assertSame($entity, $table->save($entity));
- $row = $table->find('all')->where(['id' => 2])->first();
- $this->assertEquals('baggins', $row->username);
- $this->assertEquals($original->password, $row->password);
- $this->assertEquals($original->created, $row->created);
- $this->assertEquals($original->updated, $row->updated);
- $this->assertFalse($entity->isNew());
- $this->assertFalse($entity->dirty('id'));
- $this->assertFalse($entity->dirty('username'));
- }
- /**
- * Tests that beforeFind gets the correct isNew() state for the entity
- *
- * @return void
- */
- public function testBeforeSaveGetsCorrectPersistance() {
- $entity = new \Cake\ORM\Entity([
- 'id' => 2,
- 'username' => 'baggins'
- ]);
- $table = TableRegistry::get('users');
- $called = false;
- $listener = function($event, $entity) use (&$called) {
- $this->assertFalse($entity->isNew());
- $called = true;
- };
- $table->getEventManager()->attach($listener, 'Model.beforeSave');
- $this->assertSame($entity, $table->save($entity));
- $this->assertTrue($called);
- }
- /**
- * Tests that marking an entity as already persisted will prevent the save
- * method from trying to infer the entity's actual status.
- *
- * @group save
- * @return void
- */
- public function testSaveUpdateWithHint() {
- $table = $this->getMock(
- '\Cake\ORM\Table',
- ['exists'],
- [['table' => 'users', 'connection' => ConnectionManager::get('test')]]
- );
- $entity = new \Cake\ORM\Entity([
- 'id' => 2,
- 'username' => 'baggins'
- ], ['markNew' => false]);
- $this->assertFalse($entity->isNew());
- $table->expects($this->never())->method('exists');
- $this->assertSame($entity, $table->save($entity));
- }
- /**
- * Tests that when updating the primary key is not passed to the list of
- * attributes to change
- *
- * @group save
- * @return void
- */
- public function testSaveUpdatePrimaryKeyNotModified() {
- $table = $this->getMock(
- '\Cake\ORM\Table',
- ['query'],
- [['table' => 'users', 'connection' => $this->connection]]
- );
- $query = $this->getMock(
- '\Cake\ORM\Query',
- ['execute', 'addDefaultTypes', 'set'],
- [null, $table]
- );
- $table->expects($this->once())->method('query')
- ->will($this->returnValue($query));
- $statement = $this->getMock('\Cake\Database\Statement\StatementDecorator');
- $statement->expects($this->once())
- ->method('errorCode')
- ->will($this->returnValue('00000'));
- $query->expects($this->once())
- ->method('execute')
- ->will($this->returnValue($statement));
- $query->expects($this->once())->method('set')
- ->with(['username' => 'baggins'])
- ->will($this->returnValue($query));
- $entity = new \Cake\ORM\Entity([
- 'id' => 2,
- 'username' => 'baggins'
- ], ['markNew' => false]);
- $this->assertSame($entity, $table->save($entity));
- }
- /**
- * Tests that passing only the primary key to save will not execute any queries
- * but still return success
- *
- * @group save
- * @return void
- */
- public function testUpdateNoChange() {
- $table = $this->getMock(
- '\Cake\ORM\Table',
- ['query'],
- [['table' => 'users', 'connection' => $this->connection]]
- );
- $table->expects($this->never())->method('query');
- $entity = new \Cake\ORM\Entity([
- 'id' => 2,
- ], ['markNew' => false]);
- $this->assertSame($entity, $table->save($entity));
- }
- /**
- * Tests that passing only the primary key to save will not execute any queries
- * but still return success
- *
- * @group save
- * @group integration
- * @return void
- */
- public function testUpdateDirtyNoActualChanges() {
- $table = TableRegistry::get('Articles');
- $entity = $table->get(1);
- $entity->accessible('*', true);
- $entity->set($entity->toArray());
- $this->assertSame($entity, $table->save($entity));
- }
- /**
- * Tests that failing to pass a primary key to save will result in exception
- *
- * @group save
- * @expectedException \InvalidArgumentException
- * @return void
- */
- public function testUpdateNoPrimaryButOtherKeys() {
- $table = $this->getMock(
- '\Cake\ORM\Table',
- ['query'],
- [['table' => 'users', 'connection' => $this->connection]]
- );
- $table->expects($this->never())->method('query');
- $entity = new \Cake\ORM\Entity([
- 'username' => 'mariano',
- ], ['markNew' => false]);
- $this->assertSame($entity, $table->save($entity));
- }
- /**
- * Test simple delete.
- *
- * @return void
- */
- public function testDelete() {
- $table = TableRegistry::get('users');
- $conditions = [
- 'limit' => 1,
- 'conditions' => [
- 'username' => 'nate'
- ]
- ];
- $query = $table->find('all', $conditions);
- $entity = $query->first();
- $result = $table->delete($entity);
- $this->assertTrue($result);
- $query = $table->find('all', $conditions);
- $results = $query->execute();
- $this->assertCount(0, $results, 'Find should fail.');
- }
- /**
- * Test delete with dependent records
- *
- * @return void
- */
- public function testDeleteDependent() {
- $table = TableRegistry::get('authors');
- $table->hasOne('articles', [
- 'foreignKey' => 'author_id',
- 'dependent' => true,
- ]);
- $query = $table->find('all')->where(['id' => 1]);
- $entity = $query->first();
- $result = $table->delete($entity);
- $articles = $table->association('articles')->target();
- $query = $articles->find('all', [
- 'conditions' => [
- 'author_id' => $entity->id
- ]
- ]);
- $this->assertNull($query->all()->first(), 'Should not find any rows.');
- }
- /**
- * Test delete with dependent = false does not cascade.
- *
- * @return void
- */
- public function testDeleteNoDependentNoCascade() {
- $table = TableRegistry::get('authors');
- $table->hasMany('article', [
- 'foreignKey' => 'author_id',
- 'dependent' => false,
- ]);
- $query = $table->find('all')->where(['id' => 1]);
- $entity = $query->first();
- $result = $table->delete($entity);
- $articles = $table->association('articles')->target();
- $query = $articles->find('all')->where(['author_id' => $entity->id]);
- $this->assertCount(2, $query->execute(), 'Should find rows.');
- }
- /**
- * Test delete with BelongsToMany
- *
- * @return void
- */
- public function testDeleteBelongsToMany() {
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tag', [
- 'foreignKey' => 'article_id',
- 'joinTable' => 'articles_tags'
- ]);
- $query = $table->find('all')->where(['id' => 1]);
- $entity = $query->first();
- $table->delete($entity);
- $junction = $table->association('tags')->junction();
- $query = $junction->find('all')->where(['article_id' => 1]);
- $this->assertNull($query->all()->first(), 'Should not find any rows.');
- }
- /**
- * Test delete callbacks
- *
- * @return void
- */
- public function testDeleteCallbacks() {
- $entity = new \Cake\ORM\Entity(['id' => 1, 'name' => 'mark']);
- $options = new \ArrayObject(['atomic' => true]);
- $mock = $this->getMock('Cake\Event\EventManager');
- $mock->expects($this->at(0))
- ->method('attach');
- $mock->expects($this->at(1))
- ->method('dispatch')
- ->with($this->logicalAnd(
- $this->attributeEqualTo('_name', 'Model.beforeDelete'),
- $this->attributeEqualTo(
- 'data',
- ['entity' => $entity, 'options' => $options]
- )
- ));
- $mock->expects($this->at(2))
- ->method('dispatch')
- ->with($this->logicalAnd(
- $this->attributeEqualTo('_name', 'Model.afterDelete'),
- $this->attributeEqualTo(
- 'data',
- ['entity' => $entity, 'options' => $options]
- )
- ));
- $table = TableRegistry::get('users', ['eventManager' => $mock]);
- $entity->isNew(false);
- $table->delete($entity);
- }
- /**
- * Test delete beforeDelete can abort the delete.
- *
- * @return void
- */
- public function testDeleteBeforeDeleteAbort() {
- $entity = new \Cake\ORM\Entity(['id' => 1, 'name' => 'mark']);
- $options = new \ArrayObject(['atomic' => true, 'cascade' => true]);
- $mock = $this->getMock('Cake\Event\EventManager');
- $mock->expects($this->once())
- ->method('dispatch')
- ->will($this->returnCallback(function($event) {
- $event->stopPropagation();
- }));
- $table = TableRegistry::get('users', ['eventManager' => $mock]);
- $entity->isNew(false);
- $result = $table->delete($entity);
- $this->assertNull($result);
- }
- /**
- * Test delete beforeDelete return result
- *
- * @return void
- */
- public function testDeleteBeforeDeleteReturnResult() {
- $entity = new \Cake\ORM\Entity(['id' => 1, 'name' => 'mark']);
- $options = new \ArrayObject(['atomic' => true, 'cascade' => true]);
- $mock = $this->getMock('Cake\Event\EventManager');
- $mock->expects($this->once())
- ->method('dispatch')
- ->will($this->returnCallback(function($event) {
- $event->stopPropagation();
- $event->result = 'got stopped';
- }));
- $table = TableRegistry::get('users', ['eventManager' => $mock]);
- $entity->isNew(false);
- $result = $table->delete($entity);
- $this->assertEquals('got stopped', $result);
- }
- /**
- * Test deleting new entities does nothing.
- *
- * @return void
- */
- public function testDeleteIsNew() {
- $entity = new \Cake\ORM\Entity(['id' => 1, 'name' => 'mark']);
- $table = $this->getMock(
- 'Cake\ORM\Table',
- ['query'],
- [['connection' => $this->connection]]
- );
- $table->expects($this->never())
- ->method('query');
- $entity->isNew(true);
- $result = $table->delete($entity);
- $this->assertFalse($result);
- }
- /**
- * test hasField()
- *
- * @return void
- */
- public function testHasField() {
- $table = TableRegistry::get('articles');
- $this->assertFalse($table->hasField('nope'), 'Should not be there.');
- $this->assertTrue($table->hasField('title'), 'Should be there.');
- $this->assertTrue($table->hasField('body'), 'Should be there.');
- }
- /**
- * Tests that there exists a default validator
- *
- * @return void
- */
- public function testValidatorDefault() {
- $table = new Table();
- $validator = $table->validator();
- $this->assertSame($table, $validator->provider('table'));
- $this->assertInstanceOf('\Cake\Validation\Validator', $validator);
- $default = $table->validator('default');
- $this->assertSame($validator, $default);
- }
- /**
- * Tests that it is possible to define custom validator methods
- *
- * @return void
- */
- public function functionTestValidationWithDefiner() {
- $table = $this->getMock('\Cake\ORM\Table', ['validationForOtherStuff']);
- $table->expects($this->once())->method('validationForOtherStuff')
- ->will($this->returnArgument(0));
- $other = $table->validator('forOtherStuff');
- $this->assertInstanceOf('\Cake\Validation\Validator', $other);
- $this->assertNotSame($other, $table->validator());
- $this->assertSame($table, $other->provider('table'));
- }
- /**
- * Tests that it is possible to set a custom validator under a name
- *
- * @return void
- */
- public function testValidatorSetter() {
- $table = new Table;
- $validator = new \Cake\Validation\Validator;
- $table->validator('other', $validator);
- $this->assertSame($validator, $table->validator('other'));
- $this->assertSame($table, $validator->provider('table'));
- }
- /**
- * Tests saving with validation
- *
- * @return void
- */
- public function testSaveWithValidationError() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser'
- ]);
- $table = TableRegistry::get('users');
- $table->validator()->validatePresence('password');
- $this->assertFalse($table->save($entity));
- $this->assertNotEmpty($entity->errors('password'));
- $this->assertSame($entity, $table->validator()->provider('entity'));
- $this->assertSame($table, $table->validator()->provider('table'));
- }
- /**
- * Tests saving with validation and field list
- *
- * @return void
- */
- public function testSaveWithValidationErrorAndFieldList() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser'
- ]);
- $table = TableRegistry::get('users');
- $table->validator()->validatePresence('password');
- $this->assertFalse($table->save($entity));
- $this->assertNotEmpty($entity->errors('password'));
- }
- /**
- * Tests using a custom validation object when saving
- *
- * @return void
- */
- public function testSaveWithDifferentValidator() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser'
- ]);
- $table = TableRegistry::get('users');
- $validator = (new Validator)->validatePresence('password');
- $table->validator('custom', $validator);
- $this->assertFalse($table->save($entity, ['validate' => 'custom']));
- $this->assertNotEmpty($entity->errors('password'));
- $this->assertSame($entity, $table->save($entity), 'default was not used');
- }
- /**
- * Tests saving with successful validation
- *
- * @return void
- */
- public function testSaveWithValidationSuccess() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'password' => 'hey'
- ]);
- $table = TableRegistry::get('users');
- $table->validator()->validatePresence('password');
- $this->assertSame($entity, $table->save($entity));
- $this->assertEmpty($entity->errors('password'));
- }
- /**
- * Tests beforeValidate event is triggered
- *
- * @return void
- */
- public function testBeforeValidate() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser'
- ]);
- $table = TableRegistry::get('users');
- $table->getEventManager()->attach(function($ev, $en, $opt, $val) use ($entity) {
- $this->assertSame($entity, $en);
- $this->assertTrue($opt['crazy']);
- $this->assertSame($ev->subject()->validator('default'), $val);
- $val->validatePresence('password');
- }, 'Model.beforeValidate');
- $this->assertFalse($table->save($entity, ['crazy' => true]));
- $this->assertNotEmpty($entity->errors('password'));
- }
- /**
- * Tests that beforeValidate can set the validation result
- *
- * @return void
- */
- public function testBeforeValidateSetResult() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser'
- ]);
- $table = TableRegistry::get('users');
- $table->getEventManager()->attach(function($ev, $en) {
- $en->errors('username', 'Not good');
- return false;
- }, 'Model.beforeValidate');
- $this->assertFalse($table->save($entity));
- $this->assertEquals(['Not good'], $entity->errors('username'));
- }
- /**
- * Tests that afterValidate is triggered and can set a result
- *
- * @return void
- */
- public function testAfterValidate() {
- $entity = new \Cake\ORM\Entity([
- 'username' => 'superuser',
- 'password' => 'hey'
- ]);
- $table = TableRegistry::get('users');
- $table->validator()->validatePresence('password');
- $table->getEventManager()->attach(function($ev, $en, $opt, $val) use ($entity) {
- $this->assertSame($entity, $en);
- $this->assertTrue($opt['crazy']);
- $this->assertSame($ev->subject()->validator('default'), $val);
- $en->errors('username', 'Not good');
- return false;
- }, 'Model.afterValidate');
- $this->assertFalse($table->save($entity, ['crazy' => true]));
- $this->assertEmpty($entity->errors('password'));
- $this->assertEquals(['Not good'], $entity->errors('username'));
- }
- /**
- * Test magic findByXX method.
- *
- * @return void
- */
- public function testMagicFindDefaultToAll() {
- $table = TableRegistry::get('Users');
- $result = $table->findByUsername('garrett');
- $this->assertInstanceOf('Cake\ORM\Query', $result);
- $expected = new QueryExpression(['username' => 'garrett'], $this->usersTypeMap);
- $this->assertEquals($expected, $result->clause('where'));
- }
- /**
- * Test magic findByXX errors on missing arguments.
- *
- * @expectedException \Cake\Error\Exception
- * @expectedExceptionMessage Not enough arguments to magic finder. Got 0 required 1
- * @return void
- */
- public function testMagicFindError() {
- $table = TableRegistry::get('Users');
- $table->findByUsername();
- }
- /**
- * Test magic findByXX errors on missing arguments.
- *
- * @expectedException \Cake\Error\Exception
- * @expectedExceptionMessage Not enough arguments to magic finder. Got 1 required 2
- * @return void
- */
- public function testMagicFindErrorMissingField() {
- $table = TableRegistry::get('Users');
- $table->findByUsernameAndId('garrett');
- }
- /**
- * Test magic findByXX errors when there is a mix of or & and.
- *
- * @expectedException \Cake\Error\Exception
- * @expectedExceptionMessage Cannot mix "and" & "or" in a magic finder. Use find() instead.
- * @return void
- */
- public function testMagicFindErrorMixOfOperators() {
- $table = TableRegistry::get('Users');
- $table->findByUsernameAndIdOrPassword('garrett', 1, 'sekret');
- }
- /**
- * Test magic findByXX method.
- *
- * @return void
- */
- public function testMagicFindFirstAnd() {
- $table = TableRegistry::get('Users');
- $result = $table->findByUsernameAndId('garrett', 4);
- $this->assertInstanceOf('Cake\ORM\Query', $result);
- $expected = new QueryExpression(['username' => 'garrett', 'id' => 4], $this->usersTypeMap);
- $this->assertEquals($expected, $result->clause('where'));
- }
- /**
- * Test magic findByXX method.
- *
- * @return void
- */
- public function testMagicFindFirstOr() {
- $table = TableRegistry::get('Users');
- $result = $table->findByUsernameOrId('garrett', 4);
- $this->assertInstanceOf('Cake\ORM\Query', $result);
- $expected = new QueryExpression([], $this->usersTypeMap);
- $expected->add([
- 'OR' => [
- 'username' => 'garrett',
- 'id' => 4
- ]]
- );
- $this->assertEquals($expected, $result->clause('where'));
- }
- /**
- * Test magic findAllByXX method.
- *
- * @return void
- */
- public function testMagicFindAll() {
- $table = TableRegistry::get('Articles');
- $result = $table->findAllByAuthorId(1);
- $this->assertInstanceOf('Cake\ORM\Query', $result);
- $this->assertNull($result->clause('limit'));
- $expected = new QueryExpression(['author_id' => 1], $this->articlesTypeMap);
- $this->assertEquals($expected, $result->clause('where'));
- }
- /**
- * Test magic findAllByXX method.
- *
- * @return void
- */
- public function testMagicFindAllAnd() {
- $table = TableRegistry::get('Users');
- $result = $table->findAllByAuthorIdAndPublished(1, 'Y');
- $this->assertInstanceOf('Cake\ORM\Query', $result);
- $this->assertNull($result->clause('limit'));
- $expected = new QueryExpression(
- ['author_id' => 1, 'published' => 'Y'],
- $this->usersTypeMap
- );
- $this->assertEquals($expected, $result->clause('where'));
- }
- /**
- * Test magic findAllByXX method.
- *
- * @return void
- */
- public function testMagicFindAllOr() {
- $table = TableRegistry::get('Users');
- $result = $table->findAllByAuthorIdOrPublished(1, 'Y');
- $this->assertInstanceOf('Cake\ORM\Query', $result);
- $this->assertNull($result->clause('limit'));
- $expected = new QueryExpression();
- $expected->typeMap()->defaults([
- 'Users.id' => 'integer',
- 'id' => 'integer',
- 'Users.username' => 'string',
- 'username' => 'string',
- 'Users.password' => 'string',
- 'password' => 'string',
- 'Users.created' => 'timestamp',
- 'created' => 'timestamp',
- 'Users.updated' => 'timestamp',
- 'updated' => 'timestamp',
- ]);
- $expected->add(
- ['or' => ['author_id' => 1, 'published' => 'Y']]
- );
- $this->assertEquals($expected, $result->clause('where'));
- $this->assertNull($result->clause('order'));
- }
- /**
- * Test the behavior method.
- *
- * @return void
- */
- public function testBehaviorIntrospection() {
- $table = TableRegistry::get('users');
- $this->assertEquals([], $table->behaviors(), 'no loaded behaviors');
- $table->addBehavior('Timestamp');
- $this->assertEquals(['Timestamp'], $table->behaviors(), 'Should have loaded behavior');
- $this->assertTrue($table->hasBehavior('Timestamp'), 'should be true on loaded behavior');
- $this->assertFalse($table->hasBehavior('Tree'), 'should be false on unloaded behavior');
- }
- /**
- * Tests saving belongsTo association
- *
- * @group save
- * @return void
- */
- public function testSaveBelongsTo() {
- $entity = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $entity->author = new \Cake\ORM\Entity([
- 'name' => 'Jose'
- ]);
- $table = TableRegistry::get('articles');
- $table->belongsTo('authors');
- $this->assertSame($entity, $table->save($entity));
- $this->assertFalse($entity->isNew());
- $this->assertFalse($entity->author->isNew());
- $this->assertEquals(5, $entity->author->id);
- $this->assertEquals(5, $entity->get('author_id'));
- }
- /**
- * Tests saving belongsTo association and get a validation error
- *
- * @group save
- * @return void
- */
- public function testsSaveBelongsToWithValidationError() {
- $entity = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $entity->author = new \Cake\ORM\Entity([
- 'name' => 'Jose'
- ]);
- $table = TableRegistry::get('articles');
- $table->belongsTo('authors');
- $table->association('authors')
- ->target()
- ->validator()
- ->add('name', 'num', ['rule' => 'numeric']);
- $this->assertFalse($table->save($entity));
- $this->assertTrue($entity->isNew());
- $this->assertTrue($entity->author->isNew());
- $this->assertNull($entity->get('author_id'));
- $this->assertNotEmpty($entity->author->errors('name'));
- }
- /**
- * Tests saving hasOne association
- *
- * @group save
- * @return void
- */
- public function testSaveHasOne() {
- $entity = new \Cake\ORM\Entity([
- 'name' => 'Jose'
- ]);
- $entity->article = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $table = TableRegistry::get('authors');
- $table->hasOne('articles');
- $this->assertSame($entity, $table->save($entity));
- $this->assertFalse($entity->isNew());
- $this->assertFalse($entity->article->isNew());
- $this->assertEquals(4, $entity->article->id);
- $this->assertEquals(5, $entity->article->get('author_id'));
- $this->assertFalse($entity->article->dirty('author_id'));
- }
- /**
- * Tests saving associations only saves associations
- * if they are entities.
- *
- * @group save
- * @return void
- */
- public function testSaveOnlySaveAssociatedEntities() {
- $entity = new \Cake\ORM\Entity([
- 'name' => 'Jose'
- ]);
- // Not an entity.
- $entity->article = [
- 'title' => 'A Title',
- 'body' => 'A body'
- ];
- $table = TableRegistry::get('authors');
- $table->hasOne('articles');
- $this->assertSame($entity, $table->save($entity));
- $this->assertFalse($entity->isNew());
- $this->assertInternalType('array', $entity->article);
- }
- /**
- * Tests saving hasOne association and returning a validation error will
- * abort the saving process
- *
- * @group save
- * @return void
- */
- public function testSaveHasOneWithValidationError() {
- $entity = new \Cake\ORM\Entity([
- 'name' => 'Jose'
- ]);
- $entity->article = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $table = TableRegistry::get('authors');
- $table->hasOne('articles');
- $table->association('articles')
- ->target()
- ->validator()
- ->add('title', 'num', ['rule' => 'numeric']);
- $this->assertFalse($table->save($entity));
- $this->assertTrue($entity->isNew());
- $this->assertTrue($entity->article->isNew());
- $this->assertNull($entity->article->id);
- $this->assertNull($entity->article->get('author_id'));
- $this->assertTrue($entity->article->dirty('author_id'));
- $this->assertNotEmpty($entity->article->errors('title'));
- }
- /**
- * Tests saving multiple entities in a hasMany association
- *
- * @return void
- */
- public function testSaveHasMany() {
- $entity = new \Cake\ORM\Entity([
- 'name' => 'Jose'
- ]);
- $entity->articles = [
- new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]),
- new \Cake\ORM\Entity([
- 'title' => 'Another Title',
- 'body' => 'Another body'
- ])
- ];
- $table = TableRegistry::get('authors');
- $table->hasMany('articles');
- $this->assertSame($entity, $table->save($entity));
- $this->assertFalse($entity->isNew());
- $this->assertFalse($entity->articles[0]->isNew());
- $this->assertFalse($entity->articles[1]->isNew());
- $this->assertEquals(4, $entity->articles[0]->id);
- $this->assertEquals(5, $entity->articles[1]->id);
- $this->assertEquals(5, $entity->articles[0]->author_id);
- $this->assertEquals(5, $entity->articles[1]->author_id);
- }
- /**
- * Tests saving multiple entities in a hasMany association and getting and
- * error while saving one of them. It should abort all the save operation
- * when options are set to defaults
- *
- * @return void
- */
- public function testSaveHasManyWithErrorsAtomic() {
- $entity = new \Cake\ORM\Entity([
- 'name' => 'Jose'
- ]);
- $entity->articles = [
- new \Cake\ORM\Entity([
- 'title' => '1',
- 'body' => 'A body'
- ]),
- new \Cake\ORM\Entity([
- 'title' => 'Another Title',
- 'body' => 'Another body'
- ])
- ];
- $table = TableRegistry::get('authors');
- $table->hasMany('articles');
- $table->association('articles')
- ->target()
- ->validator()
- ->add('title', 'num', ['rule' => 'numeric']);
- $this->assertFalse($table->save($entity));
- $this->assertTrue($entity->isNew());
- $this->assertNull($entity->articles[0]->isNew());
- $this->assertNull($entity->articles[1]->isNew());
- $this->assertNull($entity->articles[0]->id);
- $this->assertNull($entity->articles[1]->id);
- $this->assertNull($entity->articles[0]->author_id);
- $this->assertNull($entity->articles[1]->author_id);
- $this->assertEmpty($entity->articles[0]->errors());
- $this->assertNotEmpty($entity->articles[1]->errors());
- }
- /**
- * Tests that it is possible to continue saving hasMany associations
- * even if any of the records fail validation when atomic is set
- * to false
- *
- * @return void
- */
- public function testSaveHasManyWithErrorsNonAtomic() {
- $entity = new \Cake\ORM\Entity([
- 'name' => 'Jose'
- ]);
- $entity->articles = [
- new \Cake\ORM\Entity([
- 'title' => 'A title',
- 'body' => 'A body'
- ]),
- new \Cake\ORM\Entity([
- 'title' => '1',
- 'body' => 'Another body'
- ])
- ];
- $table = TableRegistry::get('authors');
- $table->hasMany('articles');
- $table->association('articles')
- ->target()
- ->validator()
- ->add('title', 'num', ['rule' => 'numeric']);
- $this->assertSame($entity, $table->save($entity, ['atomic' => false]));
- $this->assertFalse($entity->isNew());
- $this->assertTrue($entity->articles[0]->isNew());
- $this->assertFalse($entity->articles[1]->isNew());
- $this->assertEquals(4, $entity->articles[1]->id);
- $this->assertNull($entity->articles[0]->id);
- $this->assertEquals(5, $entity->articles[0]->author_id);
- $this->assertEquals(5, $entity->articles[1]->author_id);
- }
- /**
- * Tests saving hasOne association and returning a validation error will
- * not abort the saving process if atomic is set to false
- *
- * @group save
- * @return void
- */
- public function testSaveHasOneWithValidationErrorNonAtomic() {
- $entity = new \Cake\ORM\Entity([
- 'name' => 'Jose'
- ]);
- $entity->article = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $table = TableRegistry::get('authors');
- $table->hasOne('articles');
- $table->association('articles')
- ->target()
- ->validator()
- ->add('title', 'num', ['rule' => 'numeric']);
- $this->assertSame($entity, $table->save($entity, ['atomic' => false]));
- $this->assertFalse($entity->isNew());
- $this->assertTrue($entity->article->isNew());
- $this->assertNull($entity->article->id);
- $this->assertNull($entity->article->get('author_id'));
- $this->assertTrue($entity->article->dirty('author_id'));
- $this->assertNotEmpty($entity->article->errors('title'));
- }
- /**
- * Tests saving belongsTo association and get a validation error won't stop
- * saving if atomic is set to false
- *
- * @group save
- * @return void
- */
- public function testSaveBelongsToWithValidationErrorNotAtomic() {
- $entity = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $entity->author = new \Cake\ORM\Entity([
- 'name' => 'Jose'
- ]);
- $table = TableRegistry::get('articles');
- $table->belongsTo('authors');
- $table->association('authors')
- ->target()
- ->validator()
- ->add('name', 'num', ['rule' => 'numeric']);
- $this->assertSame($entity, $table->save($entity, ['atomic' => false]));
- $this->assertFalse($entity->isNew());
- $this->assertTrue($entity->author->isNew());
- $this->assertNull($entity->get('author_id'));
- $this->assertNotEmpty($entity->author->errors('name'));
- }
- /**
- * Tests saving belongsToMany records
- *
- * @group save
- * @return void
- */
- public function testSaveBelongsToMany() {
- $entity = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $entity->tags = [
- new \Cake\ORM\Entity([
- 'name' => 'Something New'
- ]),
- new \Cake\ORM\Entity([
- 'name' => 'Another Something'
- ])
- ];
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $this->assertSame($entity, $table->save($entity));
- $this->assertFalse($entity->isNew());
- $this->assertFalse($entity->tags[0]->isNew());
- $this->assertFalse($entity->tags[1]->isNew());
- $this->assertEquals(4, $entity->tags[0]->id);
- $this->assertEquals(5, $entity->tags[1]->id);
- $this->assertEquals(4, $entity->tags[0]->_joinData->article_id);
- $this->assertEquals(4, $entity->tags[1]->_joinData->article_id);
- $this->assertEquals(4, $entity->tags[0]->_joinData->tag_id);
- $this->assertEquals(5, $entity->tags[1]->_joinData->tag_id);
- }
- /**
- * Tests saving belongsToMany records with a validation error and atomic set
- * to true
- *
- * @group save
- * @return void
- */
- public function testSaveBelongsToWithValidationErrorAtomic() {
- $entity = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $entity->tags = [
- new \Cake\ORM\Entity([
- 'name' => '100'
- ]),
- new \Cake\ORM\Entity([
- 'name' => 'Something New'
- ])
- ];
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $tags = $table->association('tags')
- ->target()
- ->validator()
- ->add('name', 'num', ['rule' => 'numeric']);
- $this->assertFalse($table->save($entity));
- $this->assertTrue($entity->isNew());
- $this->assertNull($entity->tags[0]->isNew());
- $this->assertNull($entity->tags[1]->isNew());
- $this->assertNull($entity->tags[0]->id);
- $this->assertNull($entity->tags[1]->id);
- $this->assertNull($entity->tags[0]->_joinData);
- $this->assertNull($entity->tags[1]->_joinData);
- $this->assertEmpty($entity->tags[0]->errors('name'));
- $this->assertNotEmpty($entity->tags[1]->errors('name'));
- }
- /**
- * Tests saving belongsToMany records with a validation error and atomic set
- * to false
- *
- * @group save
- * @return void
- */
- public function testSaveBelongsToWithValidationErrorNonAtomic() {
- $entity = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $entity->tags = [
- new \Cake\ORM\Entity([
- 'name' => 'Something New'
- ]),
- new \Cake\ORM\Entity([
- 'name' => '100'
- ])
- ];
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $tags = $table->association('tags')
- ->target()
- ->validator()
- ->add('name', 'num', ['rule' => 'numeric']);
- $this->assertSame($entity, $table->save($entity, ['atomic' => false]));
- $this->assertFalse($entity->isNew());
- $this->assertTrue($entity->tags[0]->isNew());
- $this->assertFalse($entity->tags[1]->isNew());
- $this->assertNull($entity->tags[0]->id);
- $this->assertEquals(4, $entity->tags[1]->id);
- $this->assertNull($entity->tags[0]->_joinData);
- $this->assertEquals(4, $entity->tags[1]->_joinData->article_id);
- $this->assertEquals(4, $entity->tags[1]->_joinData->tag_id);
- }
- /**
- * Tests saving belongsToMany records with a validation error in a joint entity
- *
- * @group save
- * @return void
- */
- public function testSaveBelongsToWithValidationErrorInJointEntity() {
- $entity = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $entity->tags = [
- new \Cake\ORM\Entity([
- 'name' => 'Something New'
- ]),
- new \Cake\ORM\Entity([
- 'name' => '100'
- ])
- ];
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $table->association('tags')
- ->junction()
- ->validator()
- ->add('article_id', 'num', ['rule' => ['comparison', '>', 4]]);
- $this->assertFalse($table->save($entity));
- $this->assertTrue($entity->isNew());
- $this->assertNull($entity->tags[0]->isNew());
- $this->assertNull($entity->tags[1]->isNew());
- $this->assertNull($entity->tags[0]->id);
- $this->assertNull($entity->tags[1]->id);
- $this->assertNull($entity->tags[0]->_joinData);
- $this->assertNull($entity->tags[1]->_joinData);
- }
- /**
- * Tests saving belongsToMany records with a validation error in a joint entity
- * and atomic set to false
- *
- * @group save
- * @return void
- */
- public function testSaveBelongsToWithValidationErrorInJointEntityNonAtomic() {
- $entity = new \Cake\ORM\Entity([
- 'title' => 'A Title',
- 'body' => 'A body'
- ]);
- $entity->tags = [
- new \Cake\ORM\Entity([
- 'name' => 'Something New'
- ]),
- new \Cake\ORM\Entity([
- 'name' => 'New one'
- ])
- ];
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $table->association('tags')
- ->junction()
- ->validator()
- ->add('tag_id', 'num', ['rule' => ['comparison', '>', 4]]);
- $this->assertSame($entity, $table->save($entity, ['atomic' => false]));
- $this->assertFalse($entity->isNew());
- $this->assertFalse($entity->tags[0]->isNew());
- $this->assertFalse($entity->tags[1]->isNew());
- $this->assertEquals(4, $entity->tags[0]->id);
- $this->assertEquals(5, $entity->tags[1]->id);
- $this->assertTrue($entity->tags[0]->_joinData->isNew());
- $this->assertNotEmpty($entity->tags[0]->_joinData->errors());
- $this->assertEquals(4, $entity->tags[1]->_joinData->article_id);
- $this->assertEquals(5, $entity->tags[1]->_joinData->tag_id);
- }
- /**
- * Tests that saving a persisted and clean entity will is a no-op
- *
- * @group save
- * @return void
- */
- public function testSaveCleanEntity() {
- $table = $this->getMock('\Cake\ORM\Table', ['_processSave']);
- $entity = new \Cake\ORM\Entity(
- ['id' => 'foo'],
- ['markNew' => false, 'markClean' => true]
- );
- $table->expects($this->never())->method('_processSave');
- $this->assertSame($entity, $table->save($entity));
- }
- /**
- * Integration test to show how to append a new tag to an article
- *
- * @group save
- * @return void
- */
- public function testBelongsToManyIntegration() {
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $article = $table->find('all')->where(['id' => 1])->contain(['tags'])->first();
- $tags = $article->tags;
- $this->assertNotEmpty($tags);
- $tags[] = new \TestApp\Model\Entity\Tag(['name' => 'Something New']);
- $article->tags = $tags;
- $this->assertSame($article, $table->save($article));
- $tags = $article->tags;
- $this->assertCount(3, $tags);
- $this->assertFalse($tags[2]->isNew());
- $this->assertEquals(4, $tags[2]->id);
- $this->assertEquals(1, $tags[2]->_joinData->article_id);
- $this->assertEquals(4, $tags[2]->_joinData->tag_id);
- $article = $table->find('all')->where(['id' => 1])->contain(['tags'])->first();
- $this->assertEquals($tags, $article->tags);
- }
- /**
- * Tests that it is possible to do a deep save and control what associations get saved,
- * while having control of the options passed to each level of the save
- *
- * @group save
- * @return void
- */
- public function testSaveDeepAssociationOptions() {
- $articles = $this->getMock(
- '\Cake\ORM\Table',
- ['_insert'],
- [['table' => 'articles', 'connection' => $this->connection]]
- );
- $authors = $this->getMock(
- '\Cake\ORM\Table',
- ['_insert', 'validate'],
- [['table' => 'authors', 'connection' => $this->connection]]
- );
- $supervisors = $this->getMock(
- '\Cake\ORM\Table',
- ['_insert', 'validate'],
- [[
- 'table' => 'authors',
- 'alias' => 'supervisors',
- 'connection' => $this->connection
- ]]
- );
- $tags = $this->getMock(
- '\Cake\ORM\Table',
- ['_insert'],
- [['table' => 'tags', 'connection' => $this->connection]]
- );
- $articles->belongsTo('authors', ['targetTable' => $authors]);
- $authors->hasOne('supervisors', ['targetTable' => $supervisors]);
- $supervisors->belongsToMany('tags', ['targetTable' => $tags]);
- $entity = new \Cake\ORM\Entity([
- 'title' => 'bar',
- 'author' => new \Cake\ORM\Entity([
- 'name' => 'Juan',
- 'supervisor' => new \Cake\ORM\Entity(['name' => 'Marc']),
- 'tags' => [
- new \Cake\ORM\Entity(['name' => 'foo'])
- ]
- ]),
- ]);
- $entity->isNew(true);
- $entity->author->isNew(true);
- $entity->author->supervisor->isNew(true);
- $entity->author->tags[0]->isNew(true);
- $articles->expects($this->once())
- ->method('_insert')
- ->with($entity, ['title' => 'bar'])
- ->will($this->returnValue($entity));
- $authors->expects($this->once())
- ->method('_insert')
- ->with($entity->author, ['name' => 'Juan'])
- ->will($this->returnValue($entity->author));
- $authors->expects($this->once())
- ->method('validate')
- ->with($entity->author)
- ->will($this->returnValue(true));
- $supervisors->expects($this->once())
- ->method('_insert')
- ->with($entity->author->supervisor, ['name' => 'Marc'])
- ->will($this->returnValue($entity->author->supervisor));
- $supervisors->expects($this->never())->method('validate');
- $tags->expects($this->never())->method('_insert');
- $this->assertSame($entity, $articles->save($entity, [
- 'associated' => [
- 'authors' => [
- 'validate' => 'special',
- 'associated' => [
- 'supervisors' => [
- 'atomic' => false,
- 'validate' => false,
- 'associated' => false
- ]
- ]
- ]
- ]
- ]));
- }
- /**
- * Integration test for linking entities with belongsToMany
- *
- * @return void
- */
- public function testLinkBelongsToMany() {
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $tagsTable = TableRegistry::get('tags');
- $source = ['source' => 'tags'];
- $options = ['markNew' => false];
- $article = new \Cake\ORM\Entity([
- 'id' => 1,
- ], $options);
- $newTag = new \TestApp\Model\Entity\Tag([
- 'name' => 'Foo'
- ], $source);
- $tags[] = new \TestApp\Model\Entity\Tag([
- 'id' => 3
- ], $options + $source);
- $tags[] = $newTag;
- $tagsTable->save($newTag);
- $table->association('tags')->link($article, $tags);
- $this->assertEquals($article->tags, $tags);
- foreach ($tags as $tag) {
- $this->assertFalse($tag->isNew());
- }
- $article = $table->find('all')->where(['id' => 1])->contain(['tags'])->first();
- $this->assertEquals($article->tags[2]->id, $tags[0]->id);
- $this->assertEquals($article->tags[3], $tags[1]);
- }
- /**
- * Integration test to show how to unlink a single record from a belongsToMany
- *
- * @return void
- */
- public function testUnlinkBelongsToMany() {
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $tagsTable = TableRegistry::get('tags');
- $options = ['markNew' => false];
- $article = $table->find('all')
- ->where(['id' => 1])
- ->contain(['tags'])->first();
- $table->association('tags')->unlink($article, [$article->tags[0]]);
- $this->assertCount(1, $article->tags);
- $this->assertEquals(2, $article->tags[0]->get('id'));
- $this->assertFalse($article->dirty('tags'));
- }
- /**
- * Integration test to show how to unlink multiple records from a belongsToMany
- *
- * @return void
- */
- public function testUnlinkBelongsToManyMultiple() {
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $tagsTable = TableRegistry::get('tags');
- $options = ['markNew' => false];
- $article = new \Cake\ORM\Entity(['id' => 1], $options);
- $tags[] = new \TestApp\Model\Entity\Tag(['id' => 1], $options);
- $tags[] = new \TestApp\Model\Entity\Tag(['id' => 2], $options);
- $table->association('tags')->unlink($article, $tags);
- $left = $table->find('all')->where(['id' => 1])->contain(['tags'])->first();
- $this->assertEmpty($left->tags);
- }
- /**
- * Integration test to show how to unlink multiple records from a belongsToMany
- * providing some of the joint
- *
- * @return void
- */
- public function testUnlinkBelongsToManyPassingJoint() {
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $tagsTable = TableRegistry::get('tags');
- $options = ['markNew' => false];
- $article = new \Cake\ORM\Entity(['id' => 1], $options);
- $tags[] = new \TestApp\Model\Entity\Tag(['id' => 1], $options);
- $tags[] = new \TestApp\Model\Entity\Tag(['id' => 2], $options);
- $tags[1]->_joinData = new \Cake\ORM\Entity([
- 'article_id' => 1,
- 'tag_id' => 2
- ]);
- $table->association('tags')->unlink($article, $tags);
- $left = $table->find('all')->where(['id' => 1])->contain(['tags'])->first();
- $this->assertEmpty($left->tags);
- }
- /**
- * Integration test to show how to replace records from a belongsToMany
- *
- * @return void
- */
- public function testReplacelinksBelongsToMany() {
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $tagsTable = TableRegistry::get('tags');
- $options = ['markNew' => false];
- $article = new \Cake\ORM\Entity(['id' => 1], $options);
- $tags[] = new \TestApp\Model\Entity\Tag(['id' => 2], $options);
- $tags[] = new \TestApp\Model\Entity\Tag(['id' => 3], $options);
- $tags[] = new \TestApp\Model\Entity\Tag(['name' => 'foo']);
- $table->association('tags')->replaceLinks($article, $tags);
- $this->assertEquals(2, $article->tags[0]->id);
- $this->assertEquals(3, $article->tags[1]->id);
- $this->assertEquals(4, $article->tags[2]->id);
- $article = $table->find('all')->where(['id' => 1])->contain(['tags'])->first();
- $this->assertCount(3, $article->tags);
- $this->assertEquals(2, $article->tags[0]->id);
- $this->assertEquals(3, $article->tags[1]->id);
- $this->assertEquals(4, $article->tags[2]->id);
- $this->assertEquals('foo', $article->tags[2]->name);
- }
- /**
- * Integration test to show how remove all links from a belongsToMany
- *
- * @return void
- */
- public function testReplacelinksBelongsToManyWithEmpty() {
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $tagsTable = TableRegistry::get('tags');
- $options = ['markNew' => false];
- $article = new \Cake\ORM\Entity(['id' => 1], $options);
- $tags = [];
- $table->association('tags')->replaceLinks($article, $tags);
- $this->assertSame($tags, $article->tags);
- $article = $table->find('all')->where(['id' => 1])->contain(['tags'])->first();
- $this->assertEmpty($article->tags);
- }
- /**
- * Integration test to show how to replace records from a belongsToMany
- * passing the joint property along in the target entity
- *
- * @return void
- */
- public function testReplacelinksBelongsToManyWithJoint() {
- $table = TableRegistry::get('articles');
- $table->belongsToMany('tags');
- $tagsTable = TableRegistry::get('tags');
- $options = ['markNew' => false];
- $article = new \Cake\ORM\Entity(['id' => 1], $options);
- $tags[] = new \TestApp\Model\Entity\Tag([
- 'id' => 2,
- '_joinData' => new \Cake\ORM\Entity([
- 'article_id' => 1,
- 'tag_id' => 2,
- ])
- ], $options);
- $tags[] = new \TestApp\Model\Entity\Tag(['id' => 3], $options);
- $table->association('tags')->replaceLinks($article, $tags);
- $this->assertSame($tags, $article->tags);
- $article = $table->find('all')->where(['id' => 1])->contain(['tags'])->first();
- $this->assertCount(2, $article->tags);
- $this->assertEquals(2, $article->tags[0]->id);
- $this->assertEquals(3, $article->tags[1]->id);
- }
- /**
- * Tests that it is possible to call find with no arguments
- *
- * @return void
- */
- public function testSimplifiedFind() {
- $table = $this->getMock(
- '\Cake\ORM\Table',
- ['callFinder'],
- [[
- 'connection' => $this->connection,
- 'schema' => ['id' => ['type' => 'integer']]
- ]]
- );
- $query = (new \Cake\ORM\Query($this->connection, $table))->select();
- $table->expects($this->once())->method('callFinder')
- ->with('all', $query, []);
- $table->find();
- }
- /**
- * Test that get() will use the primary key for searching and return the first
- * entity found
- *
- * @return void
- */
- public function testGet() {
- $table = $this->getMock(
- '\Cake\ORM\Table',
- ['callFinder', 'query'],
- [[
- 'connection' => $this->connection,
- 'schema' => [
- 'id' => ['type' => 'integer'],
- 'bar' => ['type' => 'integer'],
- '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['bar']]]
- ]
- ]]
- );
- $query = $this->getMock(
- '\Cake\ORM\Query',
- ['addDefaultTypes', 'first', 'where'],
- [$this->connection, $table]
- );
- $entity = new \Cake\ORM\Entity;
- $table->expects($this->once())->method('query')
- ->will($this->returnValue($query));
- $table->expects($this->once())->method('callFinder')
- ->with('all', $query, ['fields' => ['id']])
- ->will($this->returnValue($query));
- $query->expects($this->once())->method('where')
- ->with([$table->alias() . '.bar' => 10])
- ->will($this->returnSelf());
- $query->expects($this->once())->method('first')
- ->will($this->returnValue($entity));
- $result = $table->get(10, ['fields' => ['id']]);
- $this->assertSame($entity, $result);
- }
- /**
- * Tests that get() will throw an exception if the record was not found
- *
- * @expectedException \Cake\ORM\Error\RecordNotFoundException
- * @expectedExceptionMessage Record "10" not found in table "articles"
- * @return void
- */
- public function testGetException() {
- $table = $this->getMock(
- '\Cake\ORM\Table',
- ['callFinder', 'query'],
- [[
- 'connection' => $this->connection,
- 'table' => 'articles',
- 'schema' => [
- 'id' => ['type' => 'integer'],
- 'bar' => ['type' => 'integer'],
- '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['bar']]]
- ]
- ]]
- );
- $query = $this->getMock(
- '\Cake\ORM\Query',
- ['addDefaultTypes', 'first', 'where'],
- [$this->connection, $table]
- );
- $table->expects($this->once())->method('query')
- ->will($this->returnValue($query));
- $table->expects($this->once())->method('callFinder')
- ->with('all', $query, ['contain' => ['foo']])
- ->will($this->returnValue($query));
- $query->expects($this->once())->method('where')
- ->with([$table->alias() . '.bar' => 10])
- ->will($this->returnSelf());
- $query->expects($this->once())->method('first')
- ->will($this->returnValue(false));
- $result = $table->get(10, ['contain' => ['foo']]);
- }
- /**
- * Tests entityValidator
- *
- * @return void
- */
- public function testEntityValidator() {
- $table = new Table;
- $expected = new \Cake\ORM\EntityValidator($table);
- $table->entityValidator();
- $this->assertEquals($expected, $table->entityValidator());
- }
- /**
- * Tests that validate will call the entity validator with the correct
- * options
- *
- * @return void
- */
- public function testValidateDefaultAssociations() {
- $table = $this->getMock('\Cake\ORM\Table', ['entityValidator']);
- $table->belongsTo('users');
- $table->hasMany('articles');
- $table->schema([]);
- $entityValidator = $this->getMock('\Cake\ORM\EntityValidator', [], [$table]);
- $entity = $table->newEntity([]);
- $table->expects($this->once())->method('entityValidator')
- ->will($this->returnValue($entityValidator));
- $entityValidator->expects($this->once())->method('one')
- ->with($entity, ['associated' => ['users', 'articles']])
- ->will($this->returnValue(true));
- $this->assertTrue($table->validate($entity));
- }
- /**
- * Tests that validate will call the entity validator with the correct
- * options
- *
- * @return void
- */
- public function testValidateWithCustomOptions() {
- $table = $this->getMock('\Cake\ORM\Table', ['entityValidator']);
- $table->schema([]);
- $entityValidator = $this->getMock('\Cake\ORM\EntityValidator', [], [$table]);
- $entity = $table->newEntity([]);
- $options = ['associated' => ['users'], 'validate' => 'foo'];
- $table->expects($this->once())->method('entityValidator')
- ->will($this->returnValue($entityValidator));
- $entityValidator->expects($this->once())->method('one')
- ->with($entity, $options)
- ->will($this->returnValue(false));
- $this->assertFalse($table->validate($entity, $options));
- }
- /**
- * Tests that validateMany will call the entity validator with the correct
- * options
- *
- * @return void
- */
- public function testValidateManyDefaultAssociaion() {
- $table = $this->getMock('\Cake\ORM\Table', ['entityValidator']);
- $table->belongsTo('users');
- $table->hasMany('articles');
- $table->schema([]);
- $entityValidator = $this->getMock('\Cake\ORM\EntityValidator', [], [$table]);
- $entities = ['a', 'b'];
- $table->expects($this->once())->method('entityValidator')
- ->will($this->returnValue($entityValidator));
- $entityValidator->expects($this->once())->method('many')
- ->with($entities, ['associated' => ['users', 'articles']])
- ->will($this->returnValue(true));
- $this->assertTrue($table->validateMany($entities));
- }
- /**
- * Tests that validateMany will call the entity validator with the correct
- * options
- *
- * @return void
- */
- public function testValidateManyWithCustomOptions() {
- $table = $this->getMock('\Cake\ORM\Table', ['entityValidator']);
- $table->schema([]);
- $entityValidator = $this->getMock('\Cake\ORM\EntityValidator', [], [$table]);
- $entities = ['a', 'b', 'c'];
- $options = ['associated' => ['users'], 'validate' => 'foo'];
- $table->expects($this->once())->method('entityValidator')
- ->will($this->returnValue($entityValidator));
- $entityValidator->expects($this->once())->method('many')
- ->with($entities, $options)
- ->will($this->returnValue(false));
- $this->assertFalse($table->validateMany($entities, $options));
- }
- /**
- * Tests that patchEntity delegates the task to the marshaller and passed
- * all associations
- *
- * @return void
- */
- public function testPatchEntity() {
- $table = $this->getMock('Cake\ORM\Table', ['marshaller']);
- $marshaller = $this->getMock('Cake\ORM\Marshaller', [], [$table]);
- $table->belongsTo('users');
- $table->hasMany('articles');
- $table->expects($this->once())->method('marshaller')
- ->will($this->returnValue($marshaller));
- $entity = new \Cake\ORM\Entity;
- $data = ['foo' => 'bar'];
- $marshaller->expects($this->once())
- ->method('merge')
- ->with($entity, $data, ['users', 'articles'])
- ->will($this->returnValue($entity));
- $table->patchEntity($entity, $data);
- }
- /**
- * Tests that patchEntities delegates the task to the marshaller and passed
- * all associations
- *
- * @return void
- */
- public function testPatchEntities() {
- $table = $this->getMock('Cake\ORM\Table', ['marshaller']);
- $marshaller = $this->getMock('Cake\ORM\Marshaller', [], [$table]);
- $table->belongsTo('users');
- $table->hasMany('articles');
- $table->expects($this->once())->method('marshaller')
- ->will($this->returnValue($marshaller));
- $entities = [new \Cake\ORM\Entity];
- $data = [['foo' => 'bar']];
- $marshaller->expects($this->once())
- ->method('mergeMany')
- ->with($entities, $data, ['users', 'articles'])
- ->will($this->returnValue($entities));
- $table->patchEntities($entities, $data);
- }
- /**
- * Tests __debugInfo
- *
- * @return void
- */
- public function testDebugInfo() {
- $articles = TableRegistry::get('articles');
- $articles->addBehavior('Timestamp');
- $result = $articles->__debugInfo();
- $expected = [
- 'table' => 'articles',
- 'alias' => 'articles',
- 'entityClass' => 'TestApp\Model\Entity\Article',
- 'associations' => ['authors', 'tags', 'articlestags'],
- 'behaviors' => ['Timestamp'],
- 'defaultConnection' => 'default',
- 'connectionName' => 'test'
- ];
- $this->assertEquals($expected, $result);
- }
- }
|