2008-08-09 06:53:34 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package tests
|
2008-08-09 07:45:43 +02:00
|
|
|
*
|
|
|
|
* @todo Test with columnn headers and custom mappings
|
2008-08-09 06:53:34 +02:00
|
|
|
*/
|
|
|
|
class CsvBulkLoaderTest extends SapphireTest {
|
2011-03-30 08:49:11 +02:00
|
|
|
static $fixture_file = 'CsvBulkLoaderTest.yml';
|
2008-08-09 06:53:34 +02:00
|
|
|
|
2010-04-12 04:03:16 +02:00
|
|
|
protected $extraDataObjects = array(
|
|
|
|
'CsvBulkLoaderTest_Team',
|
|
|
|
'CsvBulkLoaderTest_Player',
|
|
|
|
'CsvBulkLoaderTest_PlayerContract',
|
|
|
|
);
|
|
|
|
|
2009-12-02 10:40:28 +01:00
|
|
|
/**
|
|
|
|
* Test plain import with column auto-detection
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testLoad() {
|
2009-12-02 10:40:28 +01:00
|
|
|
$loader = new CsvBulkLoader('CsvBulkLoaderTest_Player');
|
2011-03-30 08:49:11 +02:00
|
|
|
$filepath = $this->getCurrentAbsolutePath() . '/CsvBulkLoaderTest_PlayersWithHeader.csv';
|
2009-12-02 10:40:28 +01:00
|
|
|
$file = fopen($filepath, 'r');
|
|
|
|
$compareCount = $this->getLineCount($file);
|
|
|
|
fgetcsv($file); // pop header row
|
|
|
|
$compareRow = fgetcsv($file);
|
|
|
|
$results = $loader->load($filepath);
|
|
|
|
|
|
|
|
// Test that right amount of columns was imported
|
|
|
|
$this->assertEquals(4, $results->Count(), 'Test correct count of imported data');
|
|
|
|
|
|
|
|
// Test that columns were correctly imported
|
|
|
|
$obj = DataObject::get_one("CsvBulkLoaderTest_Player", "\"FirstName\" = 'John'");
|
|
|
|
$this->assertNotNull($obj);
|
|
|
|
$this->assertEquals("He's a good guy", $obj->Biography);
|
|
|
|
$this->assertEquals("1988-01-31", $obj->Birthday);
|
|
|
|
$this->assertEquals("1", $obj->IsRegistered);
|
|
|
|
|
|
|
|
fclose($file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test plain import with clear_table_before_import
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testDeleteExistingRecords() {
|
2009-12-02 10:40:28 +01:00
|
|
|
$loader = new CsvBulkLoader('CsvBulkLoaderTest_Player');
|
2011-03-30 08:49:11 +02:00
|
|
|
$filepath = $this->getCurrentAbsolutePath() . '/CsvBulkLoaderTest_PlayersWithHeader.csv';
|
2009-12-02 10:40:28 +01:00
|
|
|
$loader->deleteExistingRecords = true;
|
|
|
|
$results1 = $loader->load($filepath);
|
|
|
|
$this->assertEquals(4, $results1->Count(), 'Test correct count of imported data on first load');
|
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
//delete existing data before doing second CSV import
|
|
|
|
$results2 = $loader->load($filepath, '512MB', true);
|
|
|
|
//get all instances of the loaded DataObject from the database and count them
|
|
|
|
$resultDataObject = DataObject::get('CsvBulkLoaderTest_Player');
|
2009-12-02 10:40:28 +01:00
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertEquals(4, $resultDataObject->Count(),
|
|
|
|
'Test if existing data is deleted before new data is added');
|
2012-12-08 12:20:20 +01:00
|
|
|
}
|
2009-12-02 10:40:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test import with manual column mapping
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testLoadWithColumnMap() {
|
2009-12-02 10:40:28 +01:00
|
|
|
$loader = new CsvBulkLoader('CsvBulkLoaderTest_Player');
|
2011-03-30 08:49:11 +02:00
|
|
|
$filepath = $this->getCurrentAbsolutePath() . '/CsvBulkLoaderTest_Players.csv';
|
2009-12-02 10:40:28 +01:00
|
|
|
$file = fopen($filepath, 'r');
|
|
|
|
$compareCount = $this->getLineCount($file);
|
|
|
|
$compareRow = fgetcsv($file);
|
|
|
|
$loader->columnMap = array(
|
|
|
|
'FirstName',
|
|
|
|
'Biography',
|
|
|
|
null, // ignored column
|
|
|
|
'Birthday',
|
|
|
|
'IsRegistered'
|
|
|
|
);
|
|
|
|
$loader->hasHeaderRow = false;
|
|
|
|
$results = $loader->load($filepath);
|
|
|
|
|
|
|
|
// Test that right amount of columns was imported
|
|
|
|
$this->assertEquals(4, $results->Count(), 'Test correct count of imported data');
|
|
|
|
|
|
|
|
// Test that columns were correctly imported
|
|
|
|
$obj = DataObject::get_one("CsvBulkLoaderTest_Player", "\"FirstName\" = 'John'");
|
|
|
|
$this->assertNotNull($obj);
|
|
|
|
$this->assertEquals("He's a good guy", $obj->Biography);
|
|
|
|
$this->assertEquals("1988-01-31", $obj->Birthday);
|
|
|
|
$this->assertEquals("1", $obj->IsRegistered);
|
|
|
|
|
|
|
|
$obj2 = DataObject::get_one('CsvBulkLoaderTest_Player', "\"FirstName\" = 'Jane'");
|
|
|
|
$this->assertNotNull($obj2);
|
|
|
|
$this->assertEquals('0', $obj2->IsRegistered);
|
|
|
|
|
|
|
|
fclose($file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test import with manual column mapping and custom column names
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testLoadWithCustomHeaderAndRelation() {
|
2009-12-02 10:40:28 +01:00
|
|
|
$loader = new CsvBulkLoader('CsvBulkLoaderTest_Player');
|
2011-03-30 08:49:11 +02:00
|
|
|
$filepath = $this->getCurrentAbsolutePath() . '/CsvBulkLoaderTest_PlayersWithCustomHeaderAndRelation.csv';
|
2009-12-02 10:40:28 +01:00
|
|
|
$file = fopen($filepath, 'r');
|
|
|
|
$compareCount = $this->getLineCount($file);
|
|
|
|
fgetcsv($file); // pop header row
|
|
|
|
$compareRow = fgetcsv($file);
|
|
|
|
$loader->columnMap = array(
|
|
|
|
'first name' => 'FirstName',
|
|
|
|
'bio' => 'Biography',
|
|
|
|
'bday' => 'Birthday',
|
|
|
|
'teamtitle' => 'Team.Title', // test existing relation
|
|
|
|
'teamsize' => 'Team.TeamSize', // test existing relation
|
|
|
|
'salary' => 'Contract.Amount' // test relation creation
|
|
|
|
);
|
|
|
|
$loader->hasHeaderRow = true;
|
|
|
|
$loader->relationCallbacks = array(
|
|
|
|
'Team.Title' => array(
|
|
|
|
'relationname' => 'Team',
|
|
|
|
'callback' => 'getTeamByTitle'
|
|
|
|
),
|
|
|
|
// contract should be automatically discovered
|
|
|
|
);
|
|
|
|
$results = $loader->load($filepath);
|
|
|
|
|
|
|
|
// Test that right amount of columns was imported
|
|
|
|
$this->assertEquals(1, $results->Count(), 'Test correct count of imported data');
|
|
|
|
|
|
|
|
// Test of augumenting existing relation (created by fixture)
|
|
|
|
$testTeam = DataObject::get_one('CsvBulkLoaderTest_Team', null, null, '"Created" DESC');
|
|
|
|
$this->assertEquals('20', $testTeam->TeamSize, 'Augumenting existing has_one relation works');
|
|
|
|
|
|
|
|
// Test of creating relation
|
|
|
|
$testContract = DataObject::get_one('CsvBulkLoaderTest_PlayerContract');
|
|
|
|
$testPlayer = Dataobject::get_one("CsvBulkLoaderTest_Player", "\"FirstName\" = 'John'");
|
|
|
|
$this->assertEquals($testPlayer->ContractID, $testContract->ID, 'Creating new has_one relation works');
|
|
|
|
|
|
|
|
// Test nested setting of relation properties
|
2012-03-27 06:57:42 +02:00
|
|
|
$contractAmount = DBField::create_field('Currency', $compareRow[5])->RAW();
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertEquals($testPlayer->Contract()->Amount, $contractAmount,
|
|
|
|
'Setting nested values in a relation works');
|
2009-12-02 10:40:28 +01:00
|
|
|
|
|
|
|
fclose($file);
|
|
|
|
}
|
2008-08-09 06:53:34 +02:00
|
|
|
|
2008-08-09 07:00:42 +02:00
|
|
|
/**
|
|
|
|
* Test import with custom identifiers by importing the data.
|
|
|
|
*
|
|
|
|
* @todo Test duplicateCheck callbacks
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testLoadWithIdentifiers() {
|
2008-08-09 07:00:42 +02:00
|
|
|
// first load
|
|
|
|
$loader = new CsvBulkLoader('CsvBulkLoaderTest_Player');
|
2011-03-30 08:49:11 +02:00
|
|
|
$filepath = $this->getCurrentAbsolutePath() . '/CsvBulkLoaderTest_PlayersWithId.csv';
|
2008-08-09 07:00:42 +02:00
|
|
|
$loader->duplicateChecks = array(
|
|
|
|
'ExternalIdentifier' => 'ExternalIdentifier'
|
|
|
|
);
|
|
|
|
$results = $loader->load($filepath);
|
2009-10-02 02:07:36 +02:00
|
|
|
$createdPlayers = $results->Created();
|
|
|
|
|
|
|
|
$player = $createdPlayers->First();
|
2008-08-09 07:00:42 +02:00
|
|
|
$this->assertEquals($player->FirstName, 'John');
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertEquals($player->Biography, 'He\'s a good guy',
|
|
|
|
'test updating of duplicate imports within the same import works');
|
2008-08-09 07:00:42 +02:00
|
|
|
|
|
|
|
// load with updated data
|
2012-03-24 04:38:57 +01:00
|
|
|
$filepath = FRAMEWORK_PATH . '/tests/dev/CsvBulkLoaderTest_PlayersWithIdUpdated.csv';
|
2008-08-09 07:00:42 +02:00
|
|
|
$results = $loader->load($filepath);
|
|
|
|
|
2009-10-02 02:07:36 +02:00
|
|
|
// HACK need to update the loaded record from the database
|
|
|
|
$player = DataObject::get_by_id('CsvBulkLoaderTest_Player', $player->ID);
|
2008-08-09 07:00:42 +02:00
|
|
|
$this->assertEquals($player->FirstName, 'JohnUpdated', 'Test updating of existing records works');
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertEquals($player->Biography, 'He\'s a good guy',
|
|
|
|
'Test retaining of previous information on duplicate when overwriting with blank field');
|
2008-08-09 07:00:42 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testLoadWithCustomImportMethods() {
|
2008-11-18 02:48:37 +01:00
|
|
|
$loader = new CsvBulkLoaderTest_CustomLoader('CsvBulkLoaderTest_Player');
|
2011-03-30 08:49:11 +02:00
|
|
|
$filepath = $this->getCurrentAbsolutePath() . '/CsvBulkLoaderTest_PlayersWithHeader.csv';
|
2008-11-18 02:48:37 +01:00
|
|
|
$loader->columnMap = array(
|
|
|
|
'FirstName' => '->importFirstName',
|
|
|
|
'Biography' => 'Biography',
|
2009-02-02 00:49:53 +01:00
|
|
|
'Birthday' => 'Birthday',
|
|
|
|
'IsRegistered' => 'IsRegistered'
|
2008-11-18 02:48:37 +01:00
|
|
|
);
|
|
|
|
$results = $loader->load($filepath);
|
2009-10-02 02:07:36 +02:00
|
|
|
$createdPlayers = $results->Created();
|
|
|
|
$player = $createdPlayers->First();
|
2008-11-18 02:48:37 +01:00
|
|
|
$this->assertEquals($player->FirstName, 'Customized John');
|
|
|
|
$this->assertEquals($player->Biography, "He's a good guy");
|
2009-02-02 00:49:53 +01:00
|
|
|
$this->assertEquals($player->IsRegistered, "1");
|
2008-11-18 02:48:37 +01:00
|
|
|
}
|
|
|
|
|
2008-08-09 06:53:34 +02:00
|
|
|
protected function getLineCount(&$file) {
|
|
|
|
$i = 0;
|
|
|
|
while(fgets($file) !== false) $i++;
|
|
|
|
rewind($file);
|
|
|
|
return $i;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-11-18 02:48:37 +01:00
|
|
|
class CsvBulkLoaderTest_CustomLoader extends CsvBulkLoader implements TestOnly {
|
2012-09-19 12:07:39 +02:00
|
|
|
public function importFirstName(&$obj, $val, $record) {
|
2008-11-18 02:48:37 +01:00
|
|
|
$obj->FirstName = "Customized {$val}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-09 06:53:34 +02:00
|
|
|
class CsvBulkLoaderTest_Team extends DataObject implements TestOnly {
|
|
|
|
|
|
|
|
static $db = array(
|
|
|
|
'Title' => 'Varchar(255)',
|
|
|
|
'TeamSize' => 'Int',
|
|
|
|
);
|
|
|
|
|
|
|
|
static $has_many = array(
|
|
|
|
'Players' => 'CsvBulkLoaderTest_Player',
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class CsvBulkLoaderTest_Player extends DataObject implements TestOnly {
|
|
|
|
|
|
|
|
static $db = array(
|
|
|
|
'FirstName' => 'Varchar(255)',
|
|
|
|
'Biography' => 'HTMLText',
|
|
|
|
'Birthday' => 'Date',
|
2008-08-09 07:00:42 +02:00
|
|
|
'ExternalIdentifier' => 'Varchar(255)', // used for uniqueness checks on passed property
|
2009-02-02 00:49:53 +01:00
|
|
|
'IsRegistered' => 'Boolean'
|
2008-08-09 06:53:34 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
static $has_one = array(
|
|
|
|
'Team' => 'CsvBulkLoaderTest_Team',
|
|
|
|
'Contract' => 'CsvBulkLoaderTest_PlayerContract'
|
|
|
|
);
|
|
|
|
|
|
|
|
public function getTeamByTitle($title) {
|
|
|
|
$SQL_title = Convert::raw2sql($title);
|
2008-11-24 10:31:14 +01:00
|
|
|
return DataObject::get_one('CsvBulkLoaderTest_Team', "\"Title\" = '{$SQL_title}'");
|
2008-08-09 06:53:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom setter for "Birthday" property when passed/imported
|
|
|
|
* in different format.
|
|
|
|
*
|
|
|
|
* @param string $val
|
|
|
|
* @param array $record
|
|
|
|
*/
|
2008-11-18 02:48:37 +01:00
|
|
|
public function setUSBirthday($val, $record = null) {
|
2008-08-09 06:53:34 +02:00
|
|
|
$this->Birthday = preg_replace('/^([0-9]{1,2})\/([0-9]{1,2})\/([0-90-9]{2,4})/', '\\3-\\1-\\2', $val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class CsvBulkLoaderTest_PlayerContract extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
|
|
'Amount' => 'Currency',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-02-12 21:22:11 +01:00
|
|
|
|