objFromFixture('Page', 'page3'); $oldVersion = $page->Version; $page->forceChange(); $page->write(); $this->assertTrue( ($page->Version > $oldVersion), "A object Version is increased when just calling forceChange() without any other changes" ); } /** * Test Versioned::get_including_deleted() */ function testGetIncludingDeleted() { // Delete a page $this->objFromFixture('Page', 'page3')->delete(); // Get all items, ignoring deleted $remainingPages = DataObject::get("SiteTree", "\"ParentID\" = 0", "\"SiteTree\".\"ID\" ASC"); // Check that page 3 has gone $this->assertNotNull($remainingPages); $this->assertEquals(array("Page 1", "Page 2"), $remainingPages->column('Title')); // Get all including deleted $allPages = Versioned::get_including_deleted("SiteTree", "\"ParentID\" = 0", "\"SiteTree\".\"ID\" ASC"); // Check that page 3 is still there $this->assertEquals(array("Page 1", "Page 2", "Page 3"), $allPages->column('Title')); // Check that this still works if we switch to reading the other stage Versioned::reading_stage("Live"); $allPages = Versioned::get_including_deleted("SiteTree", "\"ParentID\" = 0", "\"SiteTree\".\"ID\" ASC"); $this->assertEquals(array("Page 1", "Page 2", "Page 3"), $allPages->column('Title')); } function testVersionedFieldsAdded() { $obj = new VersionedTest_DataObject(); // Check that the Version column is added as a full-fledged column $this->assertType('Int', $obj->dbObject('Version')); $obj2 = new VersionedTest_Subclass(); // Check that the Version column is added as a full-fledged column $this->assertType('Int', $obj2->dbObject('Version')); } } class VersionedTest_DataObject extends DataObject { static $db = array( "Name" => "Varchar", ); static $extensions = array( "Versioned('Stage', 'Live')" ); } class VersionedTest_Subclass extends VersionedTest_DataObject { static $db = array( "ExtraField" => "Varchar", ); }