2008-01-09 04:39:05 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-06-15 15:33:53 +02:00
|
|
|
* @subpackage tests
|
2008-01-09 04:39:05 +01:00
|
|
|
*/
|
|
|
|
class DataObjectTest extends SapphireTest {
|
2009-06-04 23:00:41 +02:00
|
|
|
|
2011-03-30 08:49:11 +02:00
|
|
|
static $fixture_file = 'DataObjectTest.yml';
|
2009-03-04 04:44:11 +01:00
|
|
|
|
2010-04-12 04:03:16 +02:00
|
|
|
protected $extraDataObjects = array(
|
|
|
|
'DataObjectTest_Team',
|
|
|
|
'DataObjectTest_Fixture',
|
|
|
|
'DataObjectTest_SubTeam',
|
|
|
|
'OtherSubclassWithSameField',
|
|
|
|
'DataObjectTest_FieldlessTable',
|
|
|
|
'DataObjectTest_FieldlessSubTable',
|
|
|
|
'DataObjectTest_ValidatedObject',
|
|
|
|
'DataObjectTest_Player',
|
2010-12-11 06:43:08 +01:00
|
|
|
'DataObjectTest_TeamComment'
|
2010-04-12 04:03:16 +02:00
|
|
|
);
|
2010-04-13 00:30:07 +02:00
|
|
|
|
|
|
|
function testDataIntegrityWhenTwoSubclassesHaveSameField() {
|
|
|
|
// Save data into DataObjectTest_SubTeam.SubclassDatabaseField
|
|
|
|
$obj = new DataObjectTest_SubTeam();
|
|
|
|
$obj->SubclassDatabaseField = "obj-SubTeam";
|
|
|
|
$obj->write();
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2010-04-13 00:30:07 +02:00
|
|
|
// Change the class
|
|
|
|
$obj->ClassName = 'OtherSubclassWithSameField';
|
|
|
|
$obj->write();
|
|
|
|
$obj->flushCache();
|
2011-09-27 04:01:06 +02:00
|
|
|
|
|
|
|
// Re-fetch from the database and confirm that the data is sourced from
|
2010-04-13 00:30:07 +02:00
|
|
|
// OtherSubclassWithSameField.SubclassDatabaseField
|
|
|
|
$obj = DataObject::get_by_id('DataObjectTest_Team', $obj->ID);
|
|
|
|
$this->assertNull($obj->SubclassDatabaseField);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2010-04-13 00:30:07 +02:00
|
|
|
// Confirm that save the object in the other direction.
|
|
|
|
$obj->SubclassDatabaseField = 'obj-Other';
|
|
|
|
$obj->write();
|
|
|
|
|
|
|
|
$obj->ClassName = 'DataObjectTest_SubTeam';
|
|
|
|
$obj->write();
|
|
|
|
$obj->flushCache();
|
|
|
|
|
|
|
|
// If we restore the class, the old value has been lying dormant and will be available again.
|
|
|
|
// NOTE: This behaviour is volatile; we may change this in the future to clear fields that
|
|
|
|
// are no longer relevant when changing ClassName
|
|
|
|
$obj = DataObject::get_by_id('DataObjectTest_Team', $obj->ID);
|
|
|
|
$this->assertEquals('obj-SubTeam', $obj->SubclassDatabaseField);
|
|
|
|
}
|
2010-04-12 04:03:16 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
/**
|
|
|
|
* Test deletion of DataObjects
|
|
|
|
* - Deleting using delete() on the DataObject
|
|
|
|
* - Deleting using DataObject::delete_by_id()
|
|
|
|
*/
|
|
|
|
function testDelete() {
|
|
|
|
// Test deleting using delete() on the DataObject
|
|
|
|
// Get the first page
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj = $this->objFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
$objID = $obj->ID;
|
2008-01-09 04:39:05 +01:00
|
|
|
// Check the page exists before deleting
|
2011-03-23 04:32:24 +01:00
|
|
|
$this->assertTrue(is_object($obj) && $obj->exists());
|
2008-01-09 04:39:05 +01:00
|
|
|
// Delete the page
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj->delete();
|
2008-01-09 04:39:05 +01:00
|
|
|
// Check that page does not exist after deleting
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj = DataObject::get_by_id('DataObjectTest_Player', $objID);
|
|
|
|
$this->assertTrue(!$obj || !$obj->exists());
|
2011-09-27 04:01:06 +02:00
|
|
|
|
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test deleting using DataObject::delete_by_id()
|
|
|
|
// Get the second page
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj = $this->objFromFixture('DataObjectTest_Player', 'captain2');
|
|
|
|
$objID = $obj->ID;
|
2008-01-09 04:39:05 +01:00
|
|
|
// Check the page exists before deleting
|
2011-03-23 04:32:24 +01:00
|
|
|
$this->assertTrue(is_object($obj) && $obj->exists());
|
2008-01-09 04:39:05 +01:00
|
|
|
// Delete the page
|
2011-03-23 04:32:24 +01:00
|
|
|
DataObject::delete_by_id('DataObjectTest_Player', $obj->ID);
|
2008-01-09 04:39:05 +01:00
|
|
|
// Check that page does not exist after deleting
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj = DataObject::get_by_id('DataObjectTest_Player', $objID);
|
|
|
|
$this->assertTrue(!$obj || !$obj->exists());
|
2008-01-09 04:39:05 +01:00
|
|
|
}
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
/**
|
|
|
|
* Test methods that get DataObjects
|
|
|
|
* - DataObject::get()
|
|
|
|
* - All records of a DataObject
|
|
|
|
* - Filtering
|
|
|
|
* - Sorting
|
|
|
|
* - Joins
|
|
|
|
* - Limit
|
|
|
|
* - Container class
|
|
|
|
* - DataObject::get_by_id()
|
|
|
|
* - DataObject::get_one()
|
|
|
|
* - With and without caching
|
|
|
|
* - With and without ordering
|
|
|
|
*/
|
|
|
|
function testGet() {
|
|
|
|
// Test getting all records of a DataObject
|
2010-12-11 06:43:08 +01:00
|
|
|
$comments = DataObject::get('DataObjectTest_TeamComment');
|
|
|
|
$this->assertEquals(3, $comments->Count());
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test WHERE clause
|
2010-12-11 06:43:08 +01:00
|
|
|
$comments = DataObject::get('DataObjectTest_TeamComment', "\"Name\"='Bob'");
|
|
|
|
$this->assertEquals(1, $comments->Count());
|
2008-01-09 04:39:05 +01:00
|
|
|
foreach($comments as $comment) {
|
2008-08-13 02:44:52 +02:00
|
|
|
$this->assertEquals('Bob', $comment->Name);
|
2008-01-09 04:39:05 +01:00
|
|
|
}
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test sorting
|
2010-12-11 06:43:08 +01:00
|
|
|
$comments = DataObject::get('DataObjectTest_TeamComment', '', "\"Name\" ASC");
|
|
|
|
$this->assertEquals(3, $comments->Count());
|
2008-08-13 02:44:52 +02:00
|
|
|
$this->assertEquals('Bob', $comments->First()->Name);
|
2010-12-11 06:43:08 +01:00
|
|
|
$comments = DataObject::get('DataObjectTest_TeamComment', '', "\"Name\" DESC");
|
|
|
|
$this->assertEquals(3, $comments->Count());
|
|
|
|
$this->assertEquals('Phil', $comments->First()->Name);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2011-10-29 06:04:45 +02:00
|
|
|
// Test join - 2.4 only
|
|
|
|
$originalDeprecation = Deprecation::dump_settings();
|
|
|
|
Deprecation::notification_version('2.4');
|
|
|
|
|
2010-12-11 06:43:08 +01:00
|
|
|
$comments = DataObject::get(
|
2011-09-27 04:01:06 +02:00
|
|
|
'DataObjectTest_TeamComment',
|
|
|
|
"\"DataObjectTest_Team\".\"Title\" = 'Team 1'",
|
|
|
|
"\"Name\" ASC",
|
2010-12-11 06:43:08 +01:00
|
|
|
"INNER JOIN \"DataObjectTest_Team\" ON \"DataObjectTest_TeamComment\".\"TeamID\" = \"DataObjectTest_Team\".\"ID\""
|
|
|
|
);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-08-13 02:44:52 +02:00
|
|
|
$this->assertEquals(2, $comments->Count());
|
|
|
|
$this->assertEquals('Bob', $comments->First()->Name);
|
2010-12-11 06:43:08 +01:00
|
|
|
$this->assertEquals('Joe', $comments->Last()->Name);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2011-10-29 06:04:45 +02:00
|
|
|
Deprecation::restore_settings($originalDeprecation);
|
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test limit
|
2010-12-11 06:43:08 +01:00
|
|
|
$comments = DataObject::get('DataObjectTest_TeamComment', '', "\"Name\" ASC", '', '1,2');
|
2008-08-13 02:44:52 +02:00
|
|
|
$this->assertEquals(2, $comments->Count());
|
2010-12-11 06:43:08 +01:00
|
|
|
$this->assertEquals('Joe', $comments->First()->Name);
|
|
|
|
$this->assertEquals('Phil', $comments->Last()->Name);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test get_by_id()
|
2011-03-23 04:32:24 +01:00
|
|
|
$captain1ID = $this->idFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
$captain1 = DataObject::get_by_id('DataObjectTest_Player', $captain1ID);
|
|
|
|
$this->assertEquals('Captain', $captain1->FirstName);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test get_one() without caching
|
2010-12-11 06:43:08 +01:00
|
|
|
$comment1 = DataObject::get_one('DataObjectTest_TeamComment', "\"Name\" = 'Joe'", false);
|
2008-01-09 04:39:05 +01:00
|
|
|
$comment1->Comment = "Something Else";
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2010-12-11 06:43:08 +01:00
|
|
|
$comment2 = DataObject::get_one('DataObjectTest_TeamComment', "\"Name\" = 'Joe'", false);
|
2008-08-13 02:44:52 +02:00
|
|
|
$this->assertNotEquals($comment1->Comment, $comment2->Comment);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test get_one() with caching
|
2010-12-11 06:43:08 +01:00
|
|
|
$comment1 = DataObject::get_one('DataObjectTest_TeamComment', "\"Name\" = 'Bob'", true);
|
2008-01-09 04:39:05 +01:00
|
|
|
$comment1->Comment = "Something Else";
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2010-12-11 06:43:08 +01:00
|
|
|
$comment2 = DataObject::get_one('DataObjectTest_TeamComment', "\"Name\" = 'Bob'", true);
|
2008-08-13 02:44:52 +02:00
|
|
|
$this->assertEquals((string)$comment1->Comment, (string)$comment2->Comment);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test get_one() with order by without caching
|
2010-12-11 06:43:08 +01:00
|
|
|
$comment = DataObject::get_one('DataObjectTest_TeamComment', '', false, "\"Name\" ASC");
|
2008-08-13 02:44:52 +02:00
|
|
|
$this->assertEquals('Bob', $comment->Name);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2010-12-11 06:43:08 +01:00
|
|
|
$comment = DataObject::get_one('DataObjectTest_TeamComment', '', false, "\"Name\" DESC");
|
|
|
|
$this->assertEquals('Phil', $comment->Name);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test get_one() with order by with caching
|
2010-12-11 06:43:08 +01:00
|
|
|
$comment = DataObject::get_one('DataObjectTest_TeamComment', '', true, '"Name" ASC');
|
2008-08-13 02:44:52 +02:00
|
|
|
$this->assertEquals('Bob', $comment->Name);
|
2010-12-11 06:43:08 +01:00
|
|
|
$comment = DataObject::get_one('DataObjectTest_TeamComment', '', true, '"Name" DESC');
|
|
|
|
$this->assertEquals('Phil', $comment->Name);
|
2008-01-09 04:39:05 +01:00
|
|
|
}
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2009-11-22 04:47:18 +01:00
|
|
|
function testGetSubclassFields() {
|
|
|
|
/* Test that fields / has_one relations from the parent table and the subclass tables are extracted */
|
|
|
|
$captain1 = $this->objFromFixture("DataObjectTest_Player", "captain1");
|
|
|
|
// Base field
|
2009-11-22 06:16:38 +01:00
|
|
|
$this->assertEquals('Captain', $captain1->FirstName);
|
2009-11-22 04:47:18 +01:00
|
|
|
// Subclass field
|
|
|
|
$this->assertEquals('007', $captain1->ShirtNumber);
|
|
|
|
// Subclass has_one relation
|
|
|
|
$this->assertEquals($this->idFromFixture('DataObjectTest_Team', 'team1'), $captain1->FavouriteTeamID);
|
|
|
|
}
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2012-04-20 06:03:38 +02:00
|
|
|
function testGetRelationClass() {
|
|
|
|
$obj = new DataObjectTest_Player();
|
|
|
|
$this->assertEquals(singleton('DataObjectTest_Player')->getRelationClass('FavouriteTeam'), 'DataObjectTest_Team', 'has_one is properly inspected');
|
|
|
|
$this->assertEquals(singleton('DataObjectTest_Company')->getRelationClass('CurrentStaff'), 'DataObjectTest_Staff', 'has_many is properly inspected');
|
|
|
|
$this->assertEquals(singleton('DataObjectTest_Team')->getRelationClass('Players'), 'DataObjectTest_Player', 'many_many is properly inspected');
|
|
|
|
$this->assertEquals(singleton('DataObjectTest_Player')->getRelationClass('Teams'), 'DataObjectTest_Team', 'belongs_many_many is properly inspected');
|
|
|
|
$this->assertEquals(singleton('DataObjectTest_CEO')->getRelationClass('Company'), 'DataObjectTest_Company', 'belongs_to is properly inspected');
|
|
|
|
}
|
|
|
|
|
2009-11-22 04:47:18 +01:00
|
|
|
function testGetHasOneRelations() {
|
|
|
|
$captain1 = $this->objFromFixture("DataObjectTest_Player", "captain1");
|
|
|
|
/* There will be a field called (relname)ID that contains the ID of the object linked to via the has_one relation */
|
|
|
|
$this->assertEquals($this->idFromFixture('DataObjectTest_Team', 'team1'), $captain1->FavouriteTeamID);
|
|
|
|
/* There will be a method called $obj->relname() that returns the object itself */
|
|
|
|
$this->assertEquals($this->idFromFixture('DataObjectTest_Team', 'team1'), $captain1->FavouriteTeam()->ID);
|
|
|
|
}
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2009-11-22 06:16:38 +01:00
|
|
|
function testLimitAndCount() {
|
|
|
|
$players = DataObject::get("DataObjectTest_Player");
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2009-11-22 06:16:38 +01:00
|
|
|
// There's 4 records in total
|
|
|
|
$this->assertEquals(4, $players->count());
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2009-11-22 06:16:38 +01:00
|
|
|
// Testing "##, ##" syntax
|
2012-03-09 02:02:37 +01:00
|
|
|
$this->assertEquals(4, $players->limit(20)->count());
|
|
|
|
$this->assertEquals(4, $players->limit(20, 0)->count());
|
|
|
|
$this->assertEquals(0, $players->limit(20, 20)->count());
|
|
|
|
$this->assertEquals(2, $players->limit(2, 0)->count());
|
|
|
|
$this->assertEquals(1, $players->limit(5, 3)->count());
|
2009-11-22 06:16:38 +01:00
|
|
|
}
|
2008-08-09 05:54:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test writing of database columns which don't correlate to a DBField,
|
2011-09-27 04:01:06 +02:00
|
|
|
* e.g. all relation fields on has_one/has_many like "ParentID".
|
2008-08-09 05:54:55 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
function testWritePropertyWithoutDBField() {
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj = $this->objFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
$obj->FavouriteTeamID = 99;
|
|
|
|
$obj->write();
|
2008-08-09 05:54:55 +02:00
|
|
|
// reload the page from the database
|
2011-03-23 04:32:24 +01:00
|
|
|
$savedObj = DataObject::get_by_id('DataObjectTest_Player', $obj->ID);
|
|
|
|
$this->assertTrue($savedObj->FavouriteTeamID == 99);
|
2008-08-09 05:54:55 +02:00
|
|
|
}
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
/**
|
|
|
|
* Test has many relationships
|
|
|
|
* - Test getComponents() gets the ComponentSet of the other side of the relation
|
|
|
|
* - Test the IDs on the DataObjects are set correctly
|
|
|
|
*/
|
|
|
|
function testHasManyRelationships() {
|
2010-12-11 06:43:08 +01:00
|
|
|
$team = $this->objFromFixture('DataObjectTest_Team', 'team1');
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test getComponents() gets the ComponentSet of the other side of the relation
|
2009-11-22 06:16:38 +01:00
|
|
|
$this->assertTrue($team->Comments()->Count() == 2);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
// Test the IDs on the DataObjects are set correctly
|
2009-11-22 06:16:38 +01:00
|
|
|
foreach($team->Comments() as $comment) {
|
|
|
|
$this->assertEquals($team->ID, $comment->TeamID);
|
2008-01-09 04:39:05 +01:00
|
|
|
}
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2009-11-22 04:47:18 +01:00
|
|
|
// Test that we can add and remove items that already exist in the database
|
2009-11-22 06:16:38 +01:00
|
|
|
$newComment = new DataObjectTest_TeamComment();
|
2009-11-22 04:47:18 +01:00
|
|
|
$newComment->Name = "Automated commenter";
|
|
|
|
$newComment->Comment = "This is a new comment";
|
|
|
|
$newComment->write();
|
2009-11-22 06:16:38 +01:00
|
|
|
$team->Comments()->add($newComment);
|
|
|
|
$this->assertEquals($team->ID, $newComment->TeamID);
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2009-11-22 06:16:38 +01:00
|
|
|
$comment1 = $this->fixture->objFromFixture('DataObjectTest_TeamComment', 'comment1');
|
|
|
|
$comment2 = $this->fixture->objFromFixture('DataObjectTest_TeamComment', 'comment2');
|
|
|
|
$team->Comments()->remove($comment2);
|
2009-11-22 04:47:18 +01:00
|
|
|
|
2011-10-29 12:53:24 +02:00
|
|
|
$commentIDs = $team->Comments()->sort('ID')->column('ID');
|
2009-11-22 04:47:18 +01:00
|
|
|
$this->assertEquals(array($comment1->ID, $newComment->ID), $commentIDs);
|
2008-01-09 04:39:05 +01:00
|
|
|
}
|
2009-05-21 02:14:47 +02:00
|
|
|
|
|
|
|
function testHasOneRelationship() {
|
2009-07-08 02:06:16 +02:00
|
|
|
$team1 = $this->objFromFixture('DataObjectTest_Team', 'team1');
|
|
|
|
$player1 = $this->objFromFixture('DataObjectTest_Player', 'player1');
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2009-05-21 02:14:47 +02:00
|
|
|
// Add a captain to team 1
|
|
|
|
$team1->setField('CaptainID', $player1->ID);
|
|
|
|
$team1->write();
|
2011-09-27 04:01:06 +02:00
|
|
|
|
2009-05-21 02:14:47 +02:00
|
|
|
$this->assertEquals($player1->ID, $team1->Captain()->ID, 'The captain exists for team 1');
|
|
|
|
$this->assertEquals($player1->ID, $team1->getComponent('Captain')->ID, 'The captain exists through the component getter');
|
|
|
|
|
|
|
|
$this->assertEquals($team1->Captain()->FirstName, 'Player 1', 'Player 1 is the captain');
|
|
|
|
$this->assertEquals($team1->getComponent('Captain')->FirstName, 'Player 1', 'Player 1 is the captain');
|
|
|
|
}
|
2008-08-11 05:03:52 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @todo Extend type change tests (e.g. '0'==NULL)
|
|
|
|
*/
|
|
|
|
function testChangedFields() {
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj = $this->objFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
$obj->FirstName = 'Captain-changed';
|
|
|
|
$obj->IsRetired = true;
|
2008-08-11 05:03:52 +02:00
|
|
|
|
|
|
|
$this->assertEquals(
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj->getChangedFields(false, 1),
|
2008-08-11 05:03:52 +02:00
|
|
|
array(
|
2011-03-23 04:32:24 +01:00
|
|
|
'FirstName' => array(
|
|
|
|
'before' => 'Captain',
|
|
|
|
'after' => 'Captain-changed',
|
2008-08-11 05:03:52 +02:00
|
|
|
'level' => 2
|
|
|
|
),
|
2011-03-23 04:32:24 +01:00
|
|
|
'IsRetired' => array(
|
2008-08-11 05:03:52 +02:00
|
|
|
'before' => 1,
|
|
|
|
'after' => true,
|
|
|
|
'level' => 1
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'Changed fields are correctly detected with strict type changes (level=1)'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj->getChangedFields(false, 2),
|
2008-08-11 05:03:52 +02:00
|
|
|
array(
|
2011-03-23 04:32:24 +01:00
|
|
|
'FirstName' => array(
|
|
|
|
'before'=>'Captain',
|
|
|
|
'after'=>'Captain-changed',
|
2008-08-11 05:03:52 +02:00
|
|
|
'level' => 2
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'Changed fields are correctly detected while ignoring type changes (level=2)'
|
|
|
|
);
|
2008-10-08 04:00:12 +02:00
|
|
|
|
2011-03-23 04:32:24 +01:00
|
|
|
$newObj = new DataObjectTest_Player();
|
|
|
|
$newObj->FirstName = "New Player";
|
2008-10-08 04:00:12 +02:00
|
|
|
$this->assertEquals(
|
2011-03-23 04:32:24 +01:00
|
|
|
$newObj->getChangedFields(false, 2),
|
2008-10-08 04:00:12 +02:00
|
|
|
array(
|
2011-03-23 04:32:24 +01:00
|
|
|
'FirstName' => array(
|
2008-10-08 04:00:12 +02:00
|
|
|
'before' => null,
|
2011-03-23 04:32:24 +01:00
|
|
|
'after' => 'New Player',
|
2008-10-08 04:00:12 +02:00
|
|
|
'level' => 2
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'Initialised fields are correctly detected as full changes'
|
|
|
|
);
|
2008-08-11 05:03:52 +02:00
|
|
|
}
|
2008-08-13 02:44:52 +02:00
|
|
|
|
2009-05-27 02:09:23 +02:00
|
|
|
function testIsChanged() {
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj = $this->objFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
$obj->FirstName = 'Captain-changed';
|
|
|
|
$obj->IsRetired = true; // type change only, database stores "1"
|
2009-05-27 02:09:23 +02:00
|
|
|
|
2011-03-23 04:32:24 +01:00
|
|
|
$this->assertTrue($obj->isChanged('FirstName', 1));
|
|
|
|
$this->assertTrue($obj->isChanged('FirstName', 2));
|
|
|
|
$this->assertTrue($obj->isChanged('IsRetired', 1));
|
|
|
|
$this->assertFalse($obj->isChanged('IsRetired', 2));
|
|
|
|
$this->assertFalse($obj->isChanged('Email', 1), 'Doesnt change mark unchanged property');
|
|
|
|
$this->assertFalse($obj->isChanged('Email', 2), 'Doesnt change mark unchanged property');
|
|
|
|
|
|
|
|
$newObj = new DataObjectTest_Player();
|
|
|
|
$newObj->FirstName = "New Player";
|
|
|
|
$this->assertTrue($newObj->isChanged('FirstName', 1));
|
|
|
|
$this->assertTrue($newObj->isChanged('FirstName', 2));
|
|
|
|
$this->assertFalse($newObj->isChanged('Email', 1));
|
|
|
|
$this->assertFalse($newObj->isChanged('Email', 2));
|
|
|
|
|
|
|
|
$newObj->write();
|
|
|
|
$this->assertFalse($newObj->isChanged('FirstName', 1));
|
|
|
|
$this->assertFalse($newObj->isChanged('FirstName', 2));
|
|
|
|
$this->assertFalse($newObj->isChanged('Email', 1));
|
|
|
|
$this->assertFalse($newObj->isChanged('Email', 2));
|
|
|
|
|
|
|
|
$obj = $this->objFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
$obj->FirstName = null;
|
|
|
|
$this->assertTrue($obj->isChanged('FirstName', 1));
|
|
|
|
$this->assertTrue($obj->isChanged('FirstName', 2));
|
2010-10-13 06:04:32 +02:00
|
|
|
|
|
|
|
/* Test when there's not field provided */
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj = $this->objFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
$obj->FirstName = "New Player";
|
|
|
|
$this->assertTrue($obj->isChanged());
|
2010-10-13 06:04:32 +02:00
|
|
|
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj->write();
|
|
|
|
$this->assertFalse($obj->isChanged());
|
2009-05-27 02:09:23 +02:00
|
|
|
}
|
|
|
|
|
2008-08-13 02:44:52 +02:00
|
|
|
function testRandomSort() {
|
2012-04-20 00:08:17 +02:00
|
|
|
/* If we perform the same regularly sorted query twice, it should return the same results */
|
2011-02-14 06:47:53 +01:00
|
|
|
$itemsA = DataObject::get("DataObjectTest_TeamComment", "", "ID");
|
2008-08-13 02:44:52 +02:00
|
|
|
foreach($itemsA as $item) $keysA[] = $item->ID;
|
|
|
|
|
2011-02-14 06:47:53 +01:00
|
|
|
$itemsB = DataObject::get("DataObjectTest_TeamComment", "", "ID");
|
2008-08-13 02:44:52 +02:00
|
|
|
foreach($itemsB as $item) $keysB[] = $item->ID;
|
|
|
|
|
2011-02-14 06:47:53 +01:00
|
|
|
/* Test when there's not field provided */
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj = $this->objFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
$obj->FirstName = "New Player";
|
|
|
|
$this->assertTrue($obj->isChanged());
|
2008-08-13 02:44:52 +02:00
|
|
|
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj->write();
|
|
|
|
$this->assertFalse($obj->isChanged());
|
2009-11-22 04:47:18 +01:00
|
|
|
|
|
|
|
/* If we perform the same random query twice, it shouldn't return the same results */
|
|
|
|
$itemsA = DataObject::get("DataObjectTest_TeamComment", "", DB::getConn()->random());
|
|
|
|
$itemsB = DataObject::get("DataObjectTest_TeamComment", "", DB::getConn()->random());
|
2009-11-22 06:16:38 +01:00
|
|
|
$itemsC = DataObject::get("DataObjectTest_TeamComment", "", DB::getConn()->random());
|
|
|
|
$itemsD = DataObject::get("DataObjectTest_TeamComment", "", DB::getConn()->random());
|
|
|
|
foreach($itemsA as $item) $keysA[] = $item->ID;
|
2009-11-22 04:47:18 +01:00
|
|
|
foreach($itemsB as $item) $keysB[] = $item->ID;
|
2009-11-22 06:16:38 +01:00
|
|
|
foreach($itemsC as $item) $keysC[] = $item->ID;
|
|
|
|
foreach($itemsD as $item) $keysD[] = $item->ID;
|
2009-11-22 04:47:18 +01:00
|
|
|
|
2009-11-22 06:16:38 +01:00
|
|
|
// These shouldn't all be the same (run it 4 times to minimise chance of an accidental collision)
|
|
|
|
// There's about a 1 in a billion chance of an accidental collision
|
|
|
|
$this->assertTrue($keysA != $keysB || $keysB != $keysC || $keysC != $keysD);
|
2008-08-13 02:44:52 +02:00
|
|
|
}
|
2008-08-15 05:08:03 +02:00
|
|
|
|
|
|
|
function testWriteSavesToHasOneRelations() {
|
|
|
|
/* DataObject::write() should save to a has_one relationship if you set a field called (relname)ID */
|
|
|
|
$team = new DataObjectTest_Team();
|
|
|
|
$captainID = $this->idFromFixture('DataObjectTest_Player', 'player1');
|
|
|
|
$team->CaptainID = $captainID;
|
|
|
|
$team->write();
|
2008-11-24 10:31:14 +01:00
|
|
|
$this->assertEquals($captainID, DB::query("SELECT \"CaptainID\" FROM \"DataObjectTest_Team\" WHERE \"ID\" = $team->ID")->value());
|
2008-08-15 05:08:03 +02:00
|
|
|
|
|
|
|
/* After giving it a value, you should also be able to set it back to null */
|
|
|
|
$team->CaptainID = '';
|
|
|
|
$team->write();
|
2008-11-24 10:31:14 +01:00
|
|
|
$this->assertEquals(0, DB::query("SELECT \"CaptainID\" FROM \"DataObjectTest_Team\" WHERE \"ID\" = $team->ID")->value());
|
2008-08-15 05:08:03 +02:00
|
|
|
|
|
|
|
/* You should also be able to save a blank to it when it's first created */
|
|
|
|
$team = new DataObjectTest_Team();
|
|
|
|
$team->CaptainID = '';
|
|
|
|
$team->write();
|
2008-11-24 10:31:14 +01:00
|
|
|
$this->assertEquals(0, DB::query("SELECT \"CaptainID\" FROM \"DataObjectTest_Team\" WHERE \"ID\" = $team->ID")->value());
|
2008-08-15 05:08:03 +02:00
|
|
|
|
|
|
|
/* Ditto for existing records without a value */
|
|
|
|
$existingTeam = $this->objFromFixture('DataObjectTest_Team', 'team1');
|
|
|
|
$existingTeam->CaptainID = '';
|
|
|
|
$existingTeam->write();
|
2008-11-24 10:31:14 +01:00
|
|
|
$this->assertEquals(0, DB::query("SELECT \"CaptainID\" FROM \"DataObjectTest_Team\" WHERE \"ID\" = $existingTeam->ID")->value());
|
2008-08-15 05:08:03 +02:00
|
|
|
}
|
2008-09-30 02:20:30 +02:00
|
|
|
|
2008-10-02 02:45:13 +02:00
|
|
|
function testCanAccessHasOneObjectsAsMethods() {
|
|
|
|
/* If you have a has_one relation 'Captain' on $obj, and you set the $obj->CaptainID = (ID), then the object itself should
|
|
|
|
* be accessible as $obj->Captain() */
|
|
|
|
$team = $this->objFromFixture('DataObjectTest_Team', 'team1');
|
|
|
|
$captainID = $this->idFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
|
|
|
|
$team->CaptainID = $captainID;
|
|
|
|
$this->assertNotNull($team->Captain());
|
|
|
|
$this->assertEquals($captainID, $team->Captain()->ID);
|
|
|
|
}
|
|
|
|
|
2008-10-01 02:55:25 +02:00
|
|
|
function testFieldNamesThatMatchMethodNamesWork() {
|
|
|
|
/* Check that a field name that corresponds to a method on DataObject will still work */
|
2009-06-16 04:56:59 +02:00
|
|
|
$obj = new DataObjectTest_Fixture();
|
2008-10-01 02:55:25 +02:00
|
|
|
$obj->Data = "value1";
|
|
|
|
$obj->DbObject = "value2";
|
|
|
|
$obj->Duplicate = "value3";
|
|
|
|
$obj->write();
|
|
|
|
|
|
|
|
$this->assertNotNull($obj->ID);
|
2009-06-16 04:56:59 +02:00
|
|
|
$this->assertEquals('value1', DB::query("SELECT \"Data\" FROM \"DataObjectTest_Fixture\" WHERE \"ID\" = $obj->ID")->value());
|
|
|
|
$this->assertEquals('value2', DB::query("SELECT \"DbObject\" FROM \"DataObjectTest_Fixture\" WHERE \"ID\" = $obj->ID")->value());
|
|
|
|
$this->assertEquals('value3', DB::query("SELECT \"Duplicate\" FROM \"DataObjectTest_Fixture\" WHERE \"ID\" = $obj->ID")->value());
|
2008-10-01 02:55:25 +02:00
|
|
|
}
|
|
|
|
|
2008-09-30 02:27:22 +02:00
|
|
|
/**
|
|
|
|
* @todo Re-enable all test cases for field existence after behaviour has been fixed
|
|
|
|
*/
|
2008-09-30 02:20:30 +02:00
|
|
|
function testFieldExistence() {
|
|
|
|
$teamInstance = $this->objFromFixture('DataObjectTest_Team', 'team1');
|
|
|
|
$teamSingleton = singleton('DataObjectTest_Team');
|
|
|
|
|
|
|
|
$subteamInstance = $this->objFromFixture('DataObjectTest_SubTeam', 'subteam1');
|
|
|
|
$subteamSingleton = singleton('DataObjectTest_SubTeam');
|
|
|
|
|
|
|
|
/* hasField() singleton checks */
|
|
|
|
$this->assertTrue($teamSingleton->hasField('ID'), 'hasField() finds built-in fields in singletons');
|
|
|
|
$this->assertTrue($teamSingleton->hasField('Title'), 'hasField() finds custom fields in singletons');
|
|
|
|
|
|
|
|
/* hasField() instance checks */
|
|
|
|
$this->assertFalse($teamInstance->hasField('NonExistingField'), 'hasField() doesnt find non-existing fields in instances');
|
|
|
|
$this->assertTrue($teamInstance->hasField('ID'), 'hasField() finds built-in fields in instances');
|
|
|
|
$this->assertTrue($teamInstance->hasField('Created'), 'hasField() finds built-in fields in instances');
|
|
|
|
$this->assertTrue($teamInstance->hasField('DatabaseField'), 'hasField() finds custom fields in instances');
|
|
|
|
//$this->assertFalse($teamInstance->hasField('SubclassDatabaseField'), 'hasField() doesnt find subclass fields in parentclass instances');
|
2008-10-09 16:38:46 +02:00
|
|
|
$this->assertTrue($teamInstance->hasField('DynamicField'), 'hasField() finds dynamic getters in instances');
|
2008-09-30 02:20:30 +02:00
|
|
|
$this->assertTrue($teamInstance->hasField('HasOneRelationshipID'), 'hasField() finds foreign keys in instances');
|
2011-04-15 11:35:30 +02:00
|
|
|
$this->assertTrue($teamInstance->hasField('ExtendedDatabaseField'), 'hasField() finds extended fields in instances');
|
|
|
|
$this->assertTrue($teamInstance->hasField('ExtendedHasOneRelationshipID'), 'hasField() finds extended foreign keys in instances');
|
|
|
|
//$this->assertTrue($teamInstance->hasField('ExtendedDynamicField'), 'hasField() includes extended dynamic getters in instances');
|
2008-09-30 02:20:30 +02:00
|
|
|
|
|
|
|
/* hasField() subclass checks */
|
|
|
|
$this->assertTrue($subteamInstance->hasField('ID'), 'hasField() finds built-in fields in subclass instances');
|
|
|
|
$this->assertTrue($subteamInstance->hasField('Created'), 'hasField() finds built-in fields in subclass instances');
|
|
|
|
$this->assertTrue($subteamInstance->hasField('DatabaseField'), 'hasField() finds custom fields in subclass instances');
|
|
|
|
$this->assertTrue($subteamInstance->hasField('SubclassDatabaseField'), 'hasField() finds custom fields in subclass instances');
|
2008-10-09 16:38:46 +02:00
|
|
|
$this->assertTrue($subteamInstance->hasField('DynamicField'), 'hasField() finds dynamic getters in subclass instances');
|
2008-09-30 02:20:30 +02:00
|
|
|
$this->assertTrue($subteamInstance->hasField('HasOneRelationshipID'), 'hasField() finds foreign keys in subclass instances');
|
2011-04-15 11:35:30 +02:00
|
|
|
$this->assertTrue($subteamInstance->hasField('ExtendedDatabaseField'), 'hasField() finds extended fields in subclass instances');
|
|
|
|
$this->assertTrue($subteamInstance->hasField('ExtendedHasOneRelationshipID'), 'hasField() finds extended foreign keys in subclass instances');
|
2008-09-30 02:20:30 +02:00
|
|
|
|
|
|
|
/* hasDatabaseField() singleton checks */
|
|
|
|
//$this->assertTrue($teamSingleton->hasDatabaseField('ID'), 'hasDatabaseField() finds built-in fields in singletons');
|
|
|
|
$this->assertTrue($teamSingleton->hasDatabaseField('Title'), 'hasDatabaseField() finds custom fields in singletons');
|
|
|
|
|
|
|
|
/* hasDatabaseField() instance checks */
|
|
|
|
$this->assertFalse($teamInstance->hasDatabaseField('NonExistingField'), 'hasDatabaseField() doesnt find non-existing fields in instances');
|
|
|
|
//$this->assertTrue($teamInstance->hasDatabaseField('ID'), 'hasDatabaseField() finds built-in fields in instances');
|
|
|
|
$this->assertTrue($teamInstance->hasDatabaseField('Created'), 'hasDatabaseField() finds built-in fields in instances');
|
|
|
|
$this->assertTrue($teamInstance->hasDatabaseField('DatabaseField'), 'hasDatabaseField() finds custom fields in instances');
|
|
|
|
$this->assertFalse($teamInstance->hasDatabaseField('SubclassDatabaseField'), 'hasDatabaseField() doesnt find subclass fields in parentclass instances');
|
|
|
|
//$this->assertFalse($teamInstance->hasDatabaseField('DynamicField'), 'hasDatabaseField() doesnt dynamic getters in instances');
|
|
|
|
$this->assertTrue($teamInstance->hasDatabaseField('HasOneRelationshipID'), 'hasDatabaseField() finds foreign keys in instances');
|
2011-04-15 11:35:30 +02:00
|
|
|
$this->assertTrue($teamInstance->hasDatabaseField('ExtendedDatabaseField'), 'hasDatabaseField() finds extended fields in instances');
|
|
|
|
$this->assertTrue($teamInstance->hasDatabaseField('ExtendedHasOneRelationshipID'), 'hasDatabaseField() finds extended foreign keys in instances');
|
|
|
|
$this->assertFalse($teamInstance->hasDatabaseField('ExtendedDynamicField'), 'hasDatabaseField() doesnt include extended dynamic getters in instances');
|
2008-09-30 02:20:30 +02:00
|
|
|
|
|
|
|
/* hasDatabaseField() subclass checks */
|
|
|
|
$this->assertTrue($subteamInstance->hasField('DatabaseField'), 'hasField() finds custom fields in subclass instances');
|
|
|
|
$this->assertTrue($subteamInstance->hasField('SubclassDatabaseField'), 'hasField() finds custom fields in subclass instances');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-09-30 02:27:22 +02:00
|
|
|
/**
|
|
|
|
* @todo Re-enable all test cases for field inheritance aggregation after behaviour has been fixed
|
|
|
|
*/
|
2008-09-30 02:20:30 +02:00
|
|
|
function testFieldInheritance() {
|
|
|
|
$teamInstance = $this->objFromFixture('DataObjectTest_Team', 'team1');
|
|
|
|
$subteamInstance = $this->objFromFixture('DataObjectTest_SubTeam', 'subteam1');
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array_keys($teamInstance->inheritedDatabaseFields()),
|
|
|
|
array(
|
|
|
|
//'ID',
|
|
|
|
//'ClassName',
|
|
|
|
//'Created',
|
|
|
|
//'LastEdited',
|
|
|
|
'Title',
|
|
|
|
'DatabaseField',
|
2011-04-15 11:35:30 +02:00
|
|
|
'ExtendedDatabaseField',
|
2008-09-30 02:20:30 +02:00
|
|
|
'CaptainID',
|
|
|
|
'HasOneRelationshipID',
|
2011-04-15 11:35:30 +02:00
|
|
|
'ExtendedHasOneRelationshipID'
|
2008-09-30 02:20:30 +02:00
|
|
|
),
|
2011-04-15 11:35:30 +02:00
|
|
|
'inheritedDatabaseFields() contains all fields defined on instance, including base fields, extended fields and foreign keys'
|
2008-09-30 02:20:30 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2009-08-11 10:49:52 +02:00
|
|
|
array_keys(DataObject::database_fields('DataObjectTest_Team')),
|
2008-09-30 02:20:30 +02:00
|
|
|
array(
|
|
|
|
//'ID',
|
|
|
|
'ClassName',
|
|
|
|
'Created',
|
|
|
|
'LastEdited',
|
|
|
|
'Title',
|
|
|
|
'DatabaseField',
|
2011-04-15 11:35:30 +02:00
|
|
|
'ExtendedDatabaseField',
|
2008-09-30 02:20:30 +02:00
|
|
|
'CaptainID',
|
|
|
|
'HasOneRelationshipID',
|
2011-04-15 11:35:30 +02:00
|
|
|
'ExtendedHasOneRelationshipID'
|
2008-09-30 02:20:30 +02:00
|
|
|
),
|
2011-04-15 11:35:30 +02:00
|
|
|
'databaseFields() contains only fields defined on instance, including base fields, extended fields and foreign keys'
|
2008-09-30 02:20:30 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array_keys($subteamInstance->inheritedDatabaseFields()),
|
|
|
|
array(
|
|
|
|
//'ID',
|
|
|
|
//'ClassName',
|
|
|
|
//'Created',
|
|
|
|
//'LastEdited',
|
|
|
|
'SubclassDatabaseField',
|
2012-04-20 00:08:17 +02:00
|
|
|
'ParentTeamID',
|
2008-09-30 02:20:30 +02:00
|
|
|
'Title',
|
|
|
|
'DatabaseField',
|
2011-04-15 11:35:30 +02:00
|
|
|
'ExtendedDatabaseField',
|
2008-09-30 02:20:30 +02:00
|
|
|
'CaptainID',
|
|
|
|
'HasOneRelationshipID',
|
2011-04-15 11:35:30 +02:00
|
|
|
'ExtendedHasOneRelationshipID',
|
2008-09-30 02:20:30 +02:00
|
|
|
),
|
2011-04-15 11:35:30 +02:00
|
|
|
'inheritedDatabaseFields() on subclass contains all fields defined on instance, including base fields, extended fields and foreign keys'
|
2008-09-30 02:20:30 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2009-08-11 10:49:52 +02:00
|
|
|
array_keys(DataObject::database_fields('DataObjectTest_SubTeam')),
|
2008-09-30 02:20:30 +02:00
|
|
|
array(
|
|
|
|
'SubclassDatabaseField',
|
2012-04-20 00:08:17 +02:00
|
|
|
'ParentTeamID',
|
2008-09-30 02:20:30 +02:00
|
|
|
),
|
|
|
|
'databaseFields() on subclass contains only fields defined on instance'
|
|
|
|
);
|
|
|
|
}
|
2008-10-02 02:45:13 +02:00
|
|
|
|
|
|
|
function testDataObjectUpdate() {
|
|
|
|
/* update() calls can use the dot syntax to reference has_one relations and other methods that return objects */
|
|
|
|
$team1 = $this->objFromFixture('DataObjectTest_Team', 'team1');
|
|
|
|
$team1->CaptainID = $this->idFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
|
|
|
|
$team1->update(array(
|
|
|
|
'DatabaseField' => 'Something',
|
|
|
|
'Captain.FirstName' => 'Jim',
|
|
|
|
'Captain.Email' => 'jim@example.com',
|
|
|
|
'Captain.FavouriteTeam.Title' => 'New and improved team 1',
|
|
|
|
));
|
|
|
|
|
|
|
|
/* Test the simple case of updating fields on the object itself */
|
|
|
|
$this->assertEquals('Something', $team1->DatabaseField);
|
|
|
|
|
|
|
|
/* Setting Captain.Email and Captain.FirstName will have updated DataObjectTest_Captain.captain1 in the database. Although update()
|
|
|
|
* doesn't usually write, it does write related records automatically. */
|
|
|
|
$captain1 = $this->objFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
$this->assertEquals('Jim', $captain1->FirstName);
|
|
|
|
$this->assertEquals('jim@example.com', $captain1->Email);
|
|
|
|
|
|
|
|
/* Jim's favourite team is team 1; we need to reload the object to the the change that setting Captain.FavouriteTeam.Title made */
|
|
|
|
$reloadedTeam1 = $this->objFromFixture('DataObjectTest_Team', 'team1');
|
|
|
|
$this->assertEquals('New and improved team 1', $reloadedTeam1->Title);
|
|
|
|
}
|
2009-03-04 04:44:11 +01:00
|
|
|
|
|
|
|
public function testWritingInvalidDataObjectThrowsException() {
|
|
|
|
$validatedObject = new DataObjectTest_ValidatedObject();
|
|
|
|
|
|
|
|
$this->setExpectedException('ValidationException');
|
|
|
|
$validatedObject->write();
|
|
|
|
}
|
2008-10-08 22:42:09 +02:00
|
|
|
|
2009-03-04 04:44:11 +01:00
|
|
|
public function testWritingValidDataObjectDoesntThrowException() {
|
2008-10-08 22:42:09 +02:00
|
|
|
$validatedObject = new DataObjectTest_ValidatedObject();
|
|
|
|
$validatedObject->Name = "Mr. Jones";
|
|
|
|
|
2009-03-04 04:44:11 +01:00
|
|
|
$validatedObject->write();
|
|
|
|
$this->assertTrue($validatedObject->isInDB(), "Validated object was not saved to database");
|
2008-10-08 22:42:09 +02:00
|
|
|
}
|
2008-10-28 02:23:41 +01:00
|
|
|
|
|
|
|
public function testSubclassCreation() {
|
|
|
|
/* Creating a new object of a subclass should set the ClassName field correctly */
|
|
|
|
$obj = new DataObjectTest_SubTeam();
|
|
|
|
$obj->write();
|
2008-11-24 10:31:14 +01:00
|
|
|
$this->assertEquals("DataObjectTest_SubTeam", DB::query("SELECT \"ClassName\" FROM \"DataObjectTest_Team\" WHERE \"ID\" = $obj->ID")->value());
|
2008-10-28 02:23:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testForceInsert() {
|
|
|
|
/* If you set an ID on an object and pass forceInsert = true, then the object should be correctly created */
|
2009-05-07 08:00:50 +02:00
|
|
|
$conn = DB::getConn();
|
2009-08-08 06:23:05 +02:00
|
|
|
if(method_exists($conn, 'allowPrimaryKeyEditing')) $conn->allowPrimaryKeyEditing('DataObjectTest_Team', true);
|
2008-10-28 02:23:41 +01:00
|
|
|
$obj = new DataObjectTest_SubTeam();
|
|
|
|
$obj->ID = 1001;
|
|
|
|
$obj->Title = 'asdfasdf';
|
|
|
|
$obj->SubclassDatabaseField = 'asdfasdf';
|
|
|
|
$obj->write(false, true);
|
2009-08-08 06:23:05 +02:00
|
|
|
if(method_exists($conn, 'allowPrimaryKeyEditing')) $conn->allowPrimaryKeyEditing('DataObjectTest_Team', false);
|
2008-10-28 02:23:41 +01:00
|
|
|
|
2008-11-24 10:31:14 +01:00
|
|
|
$this->assertEquals("DataObjectTest_SubTeam", DB::query("SELECT \"ClassName\" FROM \"DataObjectTest_Team\" WHERE \"ID\" = $obj->ID")->value());
|
2008-10-28 02:23:41 +01:00
|
|
|
|
|
|
|
/* Check that it actually saves to the database with the correct ID */
|
2008-11-24 10:31:14 +01:00
|
|
|
$this->assertEquals("1001", DB::query("SELECT \"ID\" FROM \"DataObjectTest_SubTeam\" WHERE \"SubclassDatabaseField\" = 'asdfasdf'")->value());
|
|
|
|
$this->assertEquals("1001", DB::query("SELECT \"ID\" FROM \"DataObjectTest_Team\" WHERE \"Title\" = 'asdfasdf'")->value());
|
2008-10-28 02:23:41 +01:00
|
|
|
}
|
2008-11-06 05:51:25 +01:00
|
|
|
|
|
|
|
public function TestHasOwnTable() {
|
|
|
|
/* Test DataObject::has_own_table() returns true if the object has $has_one or $db values */
|
|
|
|
$this->assertTrue(DataObject::has_own_table("DataObjectTest_Player"));
|
|
|
|
$this->assertTrue(DataObject::has_own_table("DataObjectTest_Team"));
|
2009-06-16 04:56:59 +02:00
|
|
|
$this->assertTrue(DataObject::has_own_table("DataObjectTest_Fixture"));
|
2008-11-06 05:51:25 +01:00
|
|
|
|
|
|
|
/* Root DataObject that always have a table, even if they lack both $db and $has_one */
|
|
|
|
$this->assertTrue(DataObject::has_own_table("DataObjectTest_FieldlessTable"));
|
|
|
|
|
|
|
|
/* Subclasses without $db or $has_one don't have a table */
|
|
|
|
$this->assertFalse(DataObject::has_own_table("DataObjectTest_FieldlessSubTable"));
|
|
|
|
|
|
|
|
/* Return false if you don't pass it a subclass of DataObject */
|
|
|
|
$this->assertFalse(DataObject::has_own_table("DataObject"));
|
|
|
|
$this->assertFalse(DataObject::has_own_table("ViewableData"));
|
|
|
|
$this->assertFalse(DataObject::has_own_table("ThisIsntADataObject"));
|
|
|
|
}
|
2009-01-07 02:25:43 +01:00
|
|
|
|
|
|
|
public function testMerge() {
|
|
|
|
// test right merge of subclasses
|
|
|
|
$left = $this->objFromFixture('DataObjectTest_SubTeam', 'subteam1');
|
|
|
|
$right = $this->objFromFixture('DataObjectTest_SubTeam', 'subteam2_with_player_relation');
|
|
|
|
$leftOrigID = $left->ID;
|
|
|
|
$left->merge($right, 'right', false, false);
|
|
|
|
$this->assertEquals(
|
|
|
|
$left->Title,
|
|
|
|
'Subteam 2',
|
|
|
|
'merge() with "right" priority overwrites fields with existing values on subclasses'
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
$left->ID,
|
|
|
|
$leftOrigID,
|
|
|
|
'merge() with "right" priority doesnt overwrite database ID'
|
|
|
|
);
|
|
|
|
|
|
|
|
// test overwriteWithEmpty flag on existing left values
|
|
|
|
$left = $this->objFromFixture('DataObjectTest_SubTeam', 'subteam2_with_player_relation');
|
|
|
|
$right = $this->objFromFixture('DataObjectTest_SubTeam', 'subteam3_with_empty_fields');
|
|
|
|
$left->merge($right, 'right', false, true);
|
|
|
|
$this->assertEquals(
|
|
|
|
$left->Title,
|
|
|
|
'Subteam 3',
|
|
|
|
'merge() with $overwriteWithEmpty overwrites non-empty fields on left object'
|
|
|
|
);
|
|
|
|
|
|
|
|
// test overwriteWithEmpty flag on empty left values
|
|
|
|
$left = $this->objFromFixture('DataObjectTest_SubTeam', 'subteam1');
|
|
|
|
$right = $this->objFromFixture('DataObjectTest_SubTeam', 'subteam2_with_player_relation'); // $SubclassDatabaseField is empty on here
|
|
|
|
$left->merge($right, 'right', false, true);
|
|
|
|
$this->assertEquals(
|
|
|
|
$left->SubclassDatabaseField,
|
|
|
|
NULL,
|
|
|
|
'merge() with $overwriteWithEmpty overwrites empty fields on left object'
|
|
|
|
);
|
|
|
|
|
|
|
|
// @todo test "left" priority flag
|
|
|
|
// @todo test includeRelations flag
|
|
|
|
// @todo test includeRelations in combination with overwriteWithEmpty
|
|
|
|
// @todo test has_one relations
|
|
|
|
// @todo test has_many and many_many relations
|
|
|
|
}
|
2009-02-10 07:04:36 +01:00
|
|
|
|
2009-03-16 14:43:03 +01:00
|
|
|
function testPopulateDefaults() {
|
2009-06-16 04:56:59 +02:00
|
|
|
$obj = new DataObjectTest_Fixture();
|
2009-03-16 14:43:03 +01:00
|
|
|
$this->assertEquals(
|
2009-06-16 04:56:59 +02:00
|
|
|
$obj->MyFieldWithDefault,
|
2009-03-16 14:43:03 +01:00
|
|
|
"Default Value",
|
|
|
|
"Defaults are populated for in-memory object from \$defaults array"
|
|
|
|
);
|
|
|
|
}
|
2009-04-27 07:55:25 +02:00
|
|
|
|
|
|
|
function testNewClassInstance() {
|
2011-05-19 22:38:21 +02:00
|
|
|
$dataObject = $this->objFromFixture('DataObjectTest_Team', 'team1');
|
|
|
|
$changedDO = $dataObject->newClassInstance('DataObjectTest_SubTeam');
|
2011-03-18 03:01:09 +01:00
|
|
|
$changedFields = $changedDO->getChangedFields();
|
2009-04-27 07:55:25 +02:00
|
|
|
|
|
|
|
// Don't write the record, it will reset changed fields
|
2011-05-19 22:38:21 +02:00
|
|
|
$this->assertType('DataObjectTest_SubTeam', $changedDO);
|
|
|
|
$this->assertEquals($changedDO->ClassName, 'DataObjectTest_SubTeam');
|
2009-04-27 07:55:25 +02:00
|
|
|
$this->assertContains('ClassName', array_keys($changedFields));
|
2011-05-19 22:38:21 +02:00
|
|
|
$this->assertEquals($changedFields['ClassName']['before'], 'DataObjectTest_Team');
|
|
|
|
$this->assertEquals($changedFields['ClassName']['after'], 'DataObjectTest_SubTeam');
|
|
|
|
|
2011-03-18 03:01:09 +01:00
|
|
|
$changedDO->write();
|
2011-05-19 22:38:21 +02:00
|
|
|
|
|
|
|
$this->assertType('DataObjectTest_SubTeam', $changedDO);
|
|
|
|
$this->assertEquals($changedDO->ClassName, 'DataObjectTest_SubTeam');
|
2009-04-27 07:55:25 +02:00
|
|
|
}
|
2009-05-01 05:49:34 +02:00
|
|
|
|
|
|
|
function testManyManyExtraFields() {
|
2009-07-08 02:06:16 +02:00
|
|
|
$player = $this->objFromFixture('DataObjectTest_Player', 'player1');
|
2012-04-20 00:08:17 +02:00
|
|
|
$team = $this->objFromFixture('DataObjectTest_Team', 'team1');
|
2009-05-01 05:49:34 +02:00
|
|
|
|
|
|
|
// Extra fields are immediately available on the Team class (defined in $many_many_extraFields)
|
|
|
|
$teamExtraFields = $team->many_many_extraFields('Players');
|
|
|
|
$this->assertEquals($teamExtraFields, array(
|
|
|
|
'Position' => 'Varchar(100)'
|
|
|
|
));
|
|
|
|
|
|
|
|
// We'll have to go through the relation to get the extra fields on Player
|
|
|
|
$playerExtraFields = $player->many_many_extraFields('Teams');
|
|
|
|
$this->assertEquals($playerExtraFields, array(
|
|
|
|
'Position' => 'Varchar(100)'
|
|
|
|
));
|
2009-10-16 00:40:38 +02:00
|
|
|
|
|
|
|
// Iterate through a many-many relationship and confirm that extra fields are included
|
|
|
|
$newTeam = new DataObjectTest_Team();
|
|
|
|
$newTeam->Title = "New team";
|
|
|
|
$newTeam->write();
|
|
|
|
$newTeamID = $newTeam->ID;
|
|
|
|
|
|
|
|
$newPlayer = new DataObjectTest_Player();
|
|
|
|
$newPlayer->FirstName = "Sam";
|
|
|
|
$newPlayer->Surname = "Minnee";
|
|
|
|
$newPlayer->write();
|
|
|
|
|
|
|
|
// The idea of Sam as a prop is essentially humourous.
|
|
|
|
$newTeam->Players()->add($newPlayer, array("Position" => "Prop"));
|
|
|
|
|
|
|
|
// Requery and uncache everything
|
|
|
|
$newTeam->flushCache();
|
|
|
|
$newTeam = DataObject::get_by_id('DataObjectTest_Team', $newTeamID);
|
|
|
|
|
|
|
|
// Check that the Position many_many_extraField is extracted.
|
|
|
|
$player = $newTeam->Players()->First();
|
|
|
|
$this->assertEquals('Sam', $player->FirstName);
|
|
|
|
$this->assertEquals("Prop", $player->Position);
|
2010-10-13 06:00:52 +02:00
|
|
|
|
|
|
|
// Check that ordering a many-many relation by an aggregate column doesn't fail
|
|
|
|
$player = $this->objFromFixture('DataObjectTest_Player', 'player2');
|
|
|
|
$player->Teams("", "count(DISTINCT \"DataObjectTest_Team_Players\".\"DataObjectTest_PlayerID\") DESC");
|
2009-05-01 05:49:34 +02:00
|
|
|
}
|
2009-05-22 05:49:15 +02:00
|
|
|
|
2010-10-13 06:00:14 +02:00
|
|
|
/**
|
|
|
|
* Check that the queries generated for many-many relation queries can have unlimitedRowCount
|
|
|
|
* called on them.
|
|
|
|
*/
|
|
|
|
function testManyManyUnlimitedRowCount() {
|
|
|
|
$player = $this->objFromFixture('DataObjectTest_Player', 'player2');
|
2009-11-22 06:16:38 +01:00
|
|
|
// TODO: What's going on here?
|
|
|
|
$this->assertEquals(2, $player->Teams()->dataQuery()->query()->unlimitedRowCount());
|
2010-10-13 06:00:14 +02:00
|
|
|
}
|
|
|
|
|
2009-05-22 05:49:15 +02:00
|
|
|
/**
|
|
|
|
* Tests that singular_name() generates sensible defaults.
|
|
|
|
*/
|
|
|
|
public function testSingularName() {
|
|
|
|
$assertions = array (
|
|
|
|
'DataObjectTest_Player' => 'Data Object Test Player',
|
|
|
|
'DataObjectTest_Team' => 'Data Object Test Team',
|
2009-06-16 04:56:59 +02:00
|
|
|
'DataObjectTest_Fixture' => 'Data Object Test Fixture'
|
2009-05-22 05:49:15 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
foreach($assertions as $class => $expectedSingularName) {
|
|
|
|
$this->assertEquals (
|
|
|
|
$expectedSingularName,
|
|
|
|
singleton($class)->singular_name(),
|
|
|
|
"Assert that the singular_name for '$class' is correct."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-04 23:00:41 +02:00
|
|
|
function testHasDatabaseField() {
|
2009-06-02 05:43:45 +02:00
|
|
|
$team = singleton('DataObjectTest_Team');
|
|
|
|
$subteam = singleton('DataObjectTest_SubTeam');
|
|
|
|
|
|
|
|
$this->assertTrue(
|
|
|
|
$team->hasDatabaseField('Title'),
|
|
|
|
"hasOwnDatabaseField() works with \$db fields"
|
|
|
|
);
|
|
|
|
$this->assertTrue(
|
|
|
|
$team->hasDatabaseField('CaptainID'),
|
|
|
|
"hasOwnDatabaseField() works with \$has_one fields"
|
|
|
|
);
|
|
|
|
$this->assertFalse(
|
|
|
|
$team->hasDatabaseField('NonExistentField'),
|
|
|
|
"hasOwnDatabaseField() doesn't detect non-existend fields"
|
|
|
|
);
|
|
|
|
$this->assertTrue(
|
2011-04-15 11:35:30 +02:00
|
|
|
$team->hasDatabaseField('ExtendedDatabaseField'),
|
|
|
|
"hasOwnDatabaseField() works with extended fields"
|
2009-06-02 05:43:45 +02:00
|
|
|
);
|
|
|
|
$this->assertFalse(
|
|
|
|
$team->hasDatabaseField('SubclassDatabaseField'),
|
|
|
|
"hasOwnDatabaseField() doesn't pick up fields in subclasses on parent class"
|
|
|
|
);
|
|
|
|
|
2009-06-04 23:00:41 +02:00
|
|
|
$this->assertTrue(
|
2009-06-02 05:43:45 +02:00
|
|
|
$subteam->hasDatabaseField('SubclassDatabaseField'),
|
|
|
|
"hasOwnDatabaseField() picks up fields in subclasses"
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-06-16 04:56:59 +02:00
|
|
|
function testFieldTypes() {
|
|
|
|
$obj = new DataObjectTest_Fixture();
|
|
|
|
$obj->DateField = '1988-01-02';
|
|
|
|
$obj->DatetimeField = '1988-03-04 06:30';
|
|
|
|
$obj->write();
|
|
|
|
$obj->flushCache();
|
|
|
|
|
|
|
|
$obj = DataObject::get_by_id('DataObjectTest_Fixture', $obj->ID);
|
|
|
|
$this->assertEquals('1988-01-02', $obj->DateField);
|
2009-06-16 05:21:13 +02:00
|
|
|
$this->assertEquals('1988-03-04 06:30:00', $obj->DatetimeField);
|
2009-06-16 04:56:59 +02:00
|
|
|
}
|
|
|
|
|
2009-08-19 06:34:28 +02:00
|
|
|
function testTwoSubclassesWithTheSameFieldNameWork() {
|
|
|
|
// Create two objects of different subclasses, setting the values of fields that are
|
|
|
|
// defined separately in each subclass
|
|
|
|
$obj1 = new DataObjectTest_SubTeam();
|
|
|
|
$obj1->SubclassDatabaseField = "obj1";
|
|
|
|
$obj2 = new OtherSubclassWithSameField();
|
|
|
|
$obj2->SubclassDatabaseField = "obj2";
|
|
|
|
|
|
|
|
// Write them to the database
|
|
|
|
$obj1->write();
|
|
|
|
$obj2->write();
|
|
|
|
|
|
|
|
// Check that the values of those fields are properly read from the database
|
2009-09-17 02:04:09 +02:00
|
|
|
$values = DataObject::get("DataObjectTest_Team", "\"DataObjectTest_Team\".\"ID\" IN
|
2009-08-19 06:34:28 +02:00
|
|
|
($obj1->ID, $obj2->ID)")->column("SubclassDatabaseField");
|
|
|
|
$this->assertEquals(array('obj1', 'obj2'), $values);
|
|
|
|
}
|
|
|
|
|
2009-08-21 07:02:31 +02:00
|
|
|
function testClassNameSetForNewObjects() {
|
|
|
|
$d = new DataObjectTest_Player();
|
|
|
|
$this->assertEquals('DataObjectTest_Player', $d->ClassName);
|
|
|
|
}
|
|
|
|
|
2009-10-11 02:06:58 +02:00
|
|
|
public function testHasValue() {
|
|
|
|
$team = new DataObjectTest_Team();
|
|
|
|
$this->assertFalse($team->hasValue('Title', null, false));
|
|
|
|
$this->assertFalse($team->hasValue('DatabaseField', null, false));
|
|
|
|
|
|
|
|
$team->Title = 'hasValue';
|
|
|
|
$this->assertTrue($team->hasValue('Title', null, false));
|
|
|
|
$this->assertFalse($team->hasValue('DatabaseField', null, false));
|
|
|
|
|
|
|
|
$team->DatabaseField = '<p></p>';
|
|
|
|
$this->assertTrue($team->hasValue('Title', null, false));
|
|
|
|
$this->assertFalse (
|
|
|
|
$team->hasValue('DatabaseField', null, false),
|
|
|
|
'Test that a blank paragraph on a HTML field is not a valid value.'
|
|
|
|
);
|
|
|
|
|
|
|
|
$team->Title = '<p></p>';
|
|
|
|
$this->assertTrue (
|
|
|
|
$team->hasValue('Title', null, false),
|
|
|
|
'Test that an empty paragraph is a value for non-HTML fields.'
|
|
|
|
);
|
|
|
|
|
|
|
|
$team->DatabaseField = 'hasValue';
|
|
|
|
$this->assertTrue($team->hasValue('Title', null, false));
|
|
|
|
$this->assertTrue($team->hasValue('DatabaseField', null, false));
|
|
|
|
}
|
|
|
|
|
2009-10-24 01:26:10 +02:00
|
|
|
public function testHasMany() {
|
|
|
|
$company = new DataObjectTest_Company();
|
|
|
|
|
|
|
|
$this->assertEquals (
|
|
|
|
array (
|
|
|
|
'CurrentStaff' => 'DataObjectTest_Staff',
|
|
|
|
'PreviousStaff' => 'DataObjectTest_Staff'
|
|
|
|
),
|
|
|
|
$company->has_many(),
|
|
|
|
'has_many strips field name data by default.'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals (
|
|
|
|
'DataObjectTest_Staff',
|
|
|
|
$company->has_many('CurrentStaff'),
|
|
|
|
'has_many strips field name data by default on single relationships.'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals (
|
|
|
|
array (
|
|
|
|
'CurrentStaff' => 'DataObjectTest_Staff.CurrentCompany',
|
|
|
|
'PreviousStaff' => 'DataObjectTest_Staff.PreviousCompany'
|
|
|
|
),
|
|
|
|
$company->has_many(null, false),
|
|
|
|
'has_many returns field name data when $classOnly is false.'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals (
|
|
|
|
'DataObjectTest_Staff.CurrentCompany',
|
|
|
|
$company->has_many('CurrentStaff', false),
|
|
|
|
'has_many returns field name data on single records when $classOnly is false.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetRemoteJoinField() {
|
|
|
|
$company = new DataObjectTest_Company();
|
|
|
|
|
|
|
|
$this->assertEquals('CurrentCompanyID', $company->getRemoteJoinField('CurrentStaff'));
|
|
|
|
$this->assertEquals('PreviousCompanyID', $company->getRemoteJoinField('PreviousStaff'));
|
2009-10-24 01:27:51 +02:00
|
|
|
|
|
|
|
$ceo = new DataObjectTest_CEO();
|
|
|
|
|
|
|
|
$this->assertEquals('CEOID', $ceo->getRemoteJoinField('Company', 'belongs_to'));
|
|
|
|
$this->assertEquals('PreviousCEOID', $ceo->getRemoteJoinField('PreviousCompany', 'belongs_to'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBelongsTo() {
|
|
|
|
$company = new DataObjectTest_Company();
|
|
|
|
$ceo = new DataObjectTest_CEO();
|
|
|
|
|
|
|
|
$company->write();
|
|
|
|
$ceo->write();
|
|
|
|
|
|
|
|
$company->CEOID = $ceo->ID;
|
|
|
|
$company->write();
|
|
|
|
|
|
|
|
$this->assertEquals($company->ID, $ceo->Company()->ID, 'belongs_to returns the right results.');
|
|
|
|
|
|
|
|
$ceo = new DataObjectTest_CEO();
|
|
|
|
$ceo->write();
|
|
|
|
|
|
|
|
$this->assertTrue (
|
|
|
|
$ceo->Company() instanceof DataObjectTest_Company,
|
|
|
|
'DataObjects across belongs_to relations are automatically created.'
|
|
|
|
);
|
|
|
|
$this->assertEquals($ceo->ID, $ceo->Company()->CEOID, 'Remote IDs are automatically set.');
|
|
|
|
|
|
|
|
$ceo->write(false, false, false, true);
|
|
|
|
$this->assertTrue($ceo->Company()->isInDB(), 'write() writes belongs_to components to the database.');
|
|
|
|
|
|
|
|
$newCEO = DataObject::get_by_id('DataObjectTest_CEO', $ceo->ID);
|
|
|
|
$this->assertEquals (
|
|
|
|
$ceo->Company()->ID, $newCEO->Company()->ID, 'belongs_to can be retrieved from the database.'
|
|
|
|
);
|
2009-10-24 01:26:10 +02:00
|
|
|
}
|
|
|
|
|
2010-10-19 00:40:56 +02:00
|
|
|
public function testInvalidate() {
|
|
|
|
$do = new DataObjectTest_Fixture();
|
|
|
|
$do->write();
|
|
|
|
|
|
|
|
$do->delete();
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Prohibit invalid object manipulation
|
|
|
|
$do->delete();
|
|
|
|
$do->write();
|
|
|
|
$do->duplicate();
|
|
|
|
}
|
|
|
|
catch(Exception $e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->fail('Should throw an exception');
|
|
|
|
}
|
2010-12-06 22:47:14 +01:00
|
|
|
|
|
|
|
function testToMap() {
|
|
|
|
$obj = $this->objFromFixture('DataObjectTest_SubTeam', 'subteam1');
|
|
|
|
|
|
|
|
$map = $obj->toMap();
|
|
|
|
|
|
|
|
$this->assertArrayHasKey('ID', $map, 'Contains base fields');
|
|
|
|
$this->assertArrayHasKey('Title', $map, 'Contains fields from parent class');
|
|
|
|
$this->assertArrayHasKey('SubclassDatabaseField', $map, 'Contains fields from concrete class');
|
|
|
|
|
|
|
|
$this->assertEquals($obj->ID, $map['ID'], 'Contains values from base fields');
|
|
|
|
$this->assertEquals($obj->Title, $map['Title'], 'Contains values from parent class fields');
|
|
|
|
$this->assertEquals($obj->SubclassDatabaseField, $map['SubclassDatabaseField'], 'Contains values from concrete class fields');
|
|
|
|
|
|
|
|
$newObj = new DataObjectTest_SubTeam();
|
|
|
|
$this->assertArrayHasKey('Title', $map, 'Contains null fields');
|
|
|
|
}
|
2010-12-06 23:12:24 +01:00
|
|
|
|
|
|
|
function testIsEmpty() {
|
|
|
|
$objEmpty = new DataObjectTest_Team();
|
|
|
|
$this->assertTrue($objEmpty->isEmpty(), 'New instance without populated defaults is empty');
|
|
|
|
|
|
|
|
$objEmpty->Title = '0'; //
|
|
|
|
$this->assertFalse($objEmpty->isEmpty(), 'Zero value in attribute considered non-empty');
|
|
|
|
}
|
2012-04-20 00:08:17 +02:00
|
|
|
|
2012-03-24 02:03:55 +01:00
|
|
|
function testRelField() {
|
|
|
|
$captain = $this->objFromFixture('DataObjectTest_Player', 'captain1');
|
|
|
|
// Test traversal of a single has_one
|
|
|
|
$this->assertEquals("Team 1", $captain->relField('FavouriteTeam.Title'));
|
|
|
|
// Test direct field access
|
|
|
|
$this->assertEquals("Captain", $captain->relField('FirstName'));
|
|
|
|
|
|
|
|
$player = $this->objFromFixture('DataObjectTest_Player', 'player2');
|
|
|
|
// Test that we can traverse more than once, and that arbitrary methods are okay
|
|
|
|
$this->assertEquals("Team 1", $player->relField('Teams.First.Title'));
|
|
|
|
}
|
|
|
|
|
|
|
|
function testRelObject() {
|
|
|
|
$captain = $this->objFromFixture('DataObjectTest_Player', 'captain1');
|
2012-04-18 13:11:53 +02:00
|
|
|
|
2012-03-24 02:03:55 +01:00
|
|
|
// Test traversal of a single has_one
|
|
|
|
$this->assertInstanceOf("Varchar", $captain->relObject('FavouriteTeam.Title'));
|
|
|
|
$this->assertEquals("Team 1", $captain->relObject('FavouriteTeam.Title')->getValue());
|
2012-04-18 13:11:53 +02:00
|
|
|
|
2012-03-24 02:03:55 +01:00
|
|
|
// Test direct field access
|
|
|
|
$this->assertInstanceOf("Boolean", $captain->relObject('IsRetired'));
|
|
|
|
$this->assertEquals(1, $captain->relObject('IsRetired')->getValue());
|
|
|
|
|
|
|
|
$player = $this->objFromFixture('DataObjectTest_Player', 'player2');
|
|
|
|
// Test that we can traverse more than once, and that arbitrary methods are okay
|
|
|
|
$this->assertInstanceOf("Varchar", $player->relObject('Teams.First.Title'));
|
|
|
|
$this->assertEquals("Team 1", $player->relObject('Teams.First.Title')->getValue());
|
|
|
|
}
|
|
|
|
|
2012-04-20 04:58:24 +02:00
|
|
|
function testLateStaticBindingStyle() {
|
|
|
|
// Confirm that DataObjectTest_Player::get() operates as excepted
|
|
|
|
$this->assertEquals(4, DataObjectTest_Player::get()->Count());
|
|
|
|
$this->assertInstanceOf('DataObjectTest_Player', DataObjectTest_Player::get()->First());
|
|
|
|
|
|
|
|
// You can't pass arguments to LSB syntax - use the DataList methods instead.
|
|
|
|
$this->setExpectedException('InvalidArgumentException');
|
|
|
|
DataObjectTest_Player::get(null, "\"ID\" = 1");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function testBrokenLateStaticBindingStyle() {
|
|
|
|
// If you call DataObject::get() you have to pass a first argument
|
|
|
|
$this->setExpectedException('InvalidArgumentException');
|
|
|
|
DataObject::get();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-03-30 03:19:27 +02:00
|
|
|
|
2008-01-09 04:39:05 +01:00
|
|
|
}
|
|
|
|
|
2008-08-11 06:51:58 +02:00
|
|
|
class DataObjectTest_Player extends Member implements TestOnly {
|
2011-03-23 04:32:24 +01:00
|
|
|
static $db = array(
|
2009-11-22 04:47:18 +01:00
|
|
|
'IsRetired' => 'Boolean',
|
|
|
|
'ShirtNumber' => 'Varchar',
|
2011-03-23 04:32:24 +01:00
|
|
|
);
|
|
|
|
|
2008-10-02 02:45:13 +02:00
|
|
|
static $has_one = array(
|
|
|
|
'FavouriteTeam' => 'DataObjectTest_Team',
|
|
|
|
);
|
2009-05-21 02:14:47 +02:00
|
|
|
|
2008-10-02 02:45:13 +02:00
|
|
|
static $belongs_many_many = array(
|
|
|
|
'Teams' => 'DataObjectTest_Team'
|
|
|
|
);
|
2008-08-11 06:51:58 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class DataObjectTest_Team extends DataObject implements TestOnly {
|
2008-08-15 05:08:03 +02:00
|
|
|
|
|
|
|
static $db = array(
|
2009-05-07 08:00:50 +02:00
|
|
|
'Title' => 'Varchar',
|
2009-10-11 02:06:58 +02:00
|
|
|
'DatabaseField' => 'HTMLVarchar'
|
2008-08-15 05:08:03 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
static $has_one = array(
|
|
|
|
"Captain" => 'DataObjectTest_Player',
|
2008-09-30 02:20:30 +02:00
|
|
|
'HasOneRelationship' => 'DataObjectTest_Player',
|
2008-08-15 05:08:03 +02:00
|
|
|
);
|
|
|
|
|
2010-12-11 06:43:08 +01:00
|
|
|
static $has_many = array(
|
2012-04-20 00:08:17 +02:00
|
|
|
'SubTeams' => 'DataObjectTest_SubTeam',
|
2010-12-11 06:43:08 +01:00
|
|
|
'Comments' => 'DataObjectTest_TeamComment'
|
|
|
|
);
|
|
|
|
|
2008-08-15 05:08:03 +02:00
|
|
|
static $many_many = array(
|
|
|
|
'Players' => 'DataObjectTest_Player'
|
|
|
|
);
|
2008-09-30 02:20:30 +02:00
|
|
|
|
2009-02-10 07:04:36 +01:00
|
|
|
static $many_many_extraFields = array(
|
|
|
|
'Players' => array(
|
|
|
|
'Position' => 'Varchar(100)'
|
|
|
|
)
|
|
|
|
);
|
2012-03-15 05:42:42 +01:00
|
|
|
|
|
|
|
function MyTitle() {
|
|
|
|
return 'Team ' . $this->Title;
|
|
|
|
}
|
|
|
|
|
2008-09-30 02:20:30 +02:00
|
|
|
function getDynamicField() {
|
|
|
|
return 'dynamicfield';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-06-16 04:56:59 +02:00
|
|
|
class DataObjectTest_Fixture extends DataObject implements TestOnly {
|
2008-10-01 02:55:25 +02:00
|
|
|
static $db = array(
|
2009-06-16 04:56:59 +02:00
|
|
|
// Funny field names
|
2009-05-07 08:00:50 +02:00
|
|
|
'Data' => 'Varchar',
|
|
|
|
'Duplicate' => 'Varchar',
|
|
|
|
'DbObject' => 'Varchar',
|
2009-06-16 04:56:59 +02:00
|
|
|
|
|
|
|
// Field with default
|
2009-05-07 08:00:50 +02:00
|
|
|
'MyField' => 'Varchar',
|
2009-06-16 04:56:59 +02:00
|
|
|
|
|
|
|
// Field types
|
|
|
|
"DateField" => "Date",
|
|
|
|
"DatetimeField" => "Datetime",
|
2009-03-16 14:43:03 +01:00
|
|
|
);
|
2009-06-16 04:56:59 +02:00
|
|
|
|
2009-03-16 14:43:03 +01:00
|
|
|
static $defaults = array(
|
2009-06-16 04:56:59 +02:00
|
|
|
'MyFieldWithDefault' => 'Default Value',
|
2009-03-16 14:43:03 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-09-30 02:20:30 +02:00
|
|
|
class DataObjectTest_SubTeam extends DataObjectTest_Team implements TestOnly {
|
|
|
|
static $db = array(
|
2009-05-07 08:00:50 +02:00
|
|
|
'SubclassDatabaseField' => 'Varchar'
|
2008-09-30 02:20:30 +02:00
|
|
|
);
|
2012-04-20 00:08:17 +02:00
|
|
|
|
|
|
|
static $has_one = array(
|
|
|
|
"ParentTeam" => 'DataObjectTest_Team',
|
|
|
|
);
|
2008-09-30 02:20:30 +02:00
|
|
|
}
|
2010-04-12 04:03:16 +02:00
|
|
|
class OtherSubclassWithSameField extends DataObjectTest_Team implements TestOnly {
|
2009-08-19 06:34:28 +02:00
|
|
|
static $db = array(
|
|
|
|
'SubclassDatabaseField' => 'Varchar',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-08-15 05:08:03 +02:00
|
|
|
|
2008-11-06 05:51:25 +01:00
|
|
|
class DataObjectTest_FieldlessTable extends DataObject implements TestOnly {
|
|
|
|
}
|
|
|
|
|
|
|
|
class DataObjectTest_FieldlessSubTable extends DataObjectTest_Team implements TestOnly {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-15 11:35:30 +02:00
|
|
|
class DataObjectTest_Team_Extension extends DataExtension implements TestOnly {
|
2012-03-09 04:37:50 +01:00
|
|
|
|
|
|
|
static $db = array(
|
|
|
|
'ExtendedDatabaseField' => 'Varchar'
|
|
|
|
);
|
|
|
|
|
|
|
|
static $has_one = array(
|
|
|
|
'ExtendedHasOneRelationship' => 'DataObjectTest_Player'
|
|
|
|
);
|
|
|
|
|
2011-04-15 11:35:30 +02:00
|
|
|
function getExtendedDynamicField() {
|
|
|
|
return "extended dynamic field";
|
2008-09-30 02:20:30 +02:00
|
|
|
}
|
|
|
|
|
2008-08-11 06:51:58 +02:00
|
|
|
}
|
|
|
|
|
2008-10-08 22:42:09 +02:00
|
|
|
class DataObjectTest_ValidatedObject extends DataObject implements TestOnly {
|
|
|
|
|
|
|
|
static $db = array(
|
|
|
|
'Name' => 'Varchar(50)'
|
|
|
|
);
|
|
|
|
|
|
|
|
protected function validate() {
|
|
|
|
if(!empty($this->Name)) {
|
|
|
|
return new ValidationResult();
|
|
|
|
} else {
|
|
|
|
return new ValidationResult(false, "This object needs a name. Otherwise it will have an identity crisis!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-24 01:26:10 +02:00
|
|
|
class DataObjectTest_Company extends DataObject {
|
2009-10-24 01:27:51 +02:00
|
|
|
public static $has_one = array (
|
|
|
|
'CEO' => 'DataObjectTest_CEO',
|
|
|
|
'PreviousCEO' => 'DataObjectTest_CEO'
|
|
|
|
);
|
|
|
|
|
2009-10-24 01:26:10 +02:00
|
|
|
public static $has_many = array (
|
|
|
|
'CurrentStaff' => 'DataObjectTest_Staff.CurrentCompany',
|
|
|
|
'PreviousStaff' => 'DataObjectTest_Staff.PreviousCompany'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
class DataObjectTest_Staff extends DataObject {
|
|
|
|
public static $has_one = array (
|
|
|
|
'CurrentCompany' => 'DataObjectTest_Company',
|
|
|
|
'PreviousCompany' => 'DataObjectTest_Company'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2009-10-24 01:27:51 +02:00
|
|
|
class DataObjectTest_CEO extends DataObjectTest_Staff {
|
|
|
|
public static $belongs_to = array (
|
2009-10-25 00:39:20 +02:00
|
|
|
'Company' => 'DataObjectTest_Company.CEO',
|
|
|
|
'PreviousCompany' => 'DataObjectTest_Company.PreviousCEO'
|
2009-10-24 01:27:51 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-12-11 06:43:08 +01:00
|
|
|
class DataObjectTest_TeamComment extends DataObject {
|
|
|
|
static $db = array(
|
2012-05-01 04:43:52 +02:00
|
|
|
'Name' => 'Varchar',
|
|
|
|
'Comment' => 'Text'
|
2010-12-11 06:43:08 +01:00
|
|
|
);
|
2012-05-01 04:43:52 +02:00
|
|
|
|
2010-12-11 06:43:08 +01:00
|
|
|
static $has_one = array(
|
2012-05-01 04:43:52 +02:00
|
|
|
'Team' => 'DataObjectTest_Team'
|
2010-12-11 06:43:08 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-04-15 11:35:30 +02:00
|
|
|
DataObject::add_extension('DataObjectTest_Team', 'DataObjectTest_Team_Extension');
|
2008-09-30 02:20:30 +02:00
|
|
|
|