Skip to content
Snippets Groups Projects
Commit a5a79ef4 authored by Tim Otten's avatar Tim Otten
Browse files

Merge pull request #1456 from totten/master-migrate-test

CRM-12845 - Add unit tests for CRM_Utils_Migrate_*
parents a487725c bc24cdad
No related branches found
No related tags found
No related merge requests found
<?php
require_once 'CiviTest/CiviUnitTestCase.php';
class CRM_Utils_Migrate_ImportExportTest extends CiviUnitTestCase {
protected $_apiversion;
public $_eNoticeCompliant = TRUE;
function setUp() {
$this->_apiversion = 3;
parent::setUp();
}
function tearDown() {
$tablesToTruncate = array(
'civicrm_custom_group',
'civicrm_custom_field',
);
$this->quickCleanup($tablesToTruncate, TRUE);
}
/**
* Generate a list of basic XML test cases. Each test case creates a
* custom-group and custom-field then compares the output to a pre-defined
* XML file. Then, for each test-case, we reverse the process -- we
* load the XML into a clean DB and see if it creates matching custom-group
* and custom-field.
*/
function basicXmlTestCases() {
// a small library which we use to describe test cases
$fixtures = array();
$fixtures['textField'] = array(
'name' => 'test_textfield',
'label' => 'Name1',
'html_type' => 'Text',
'data_type' => 'String',
'default_value' => 'abc',
'weight' => 4,
'is_required' => 1,
'is_searchable' => 0,
'is_active' => 1,
);
$fixtures['selectField'] = array(
// custom_group_id
'label' => 'Our select field',
'html_type' => 'Select',
'data_type' => 'String',
'weight' => 4,
'is_required' => 1,
'is_searchable' => 0,
'is_active' => 1,
// 'option_group_name' => 'our_select_field_20130818044104',
'option_values' => array(
array(
'weight' => 1,
'label' => 'Label1',
'value' => 1,
'is_active' => 1,
),
array(
'weight' => 2,
'label' => 'Label2',
'value' => 2,
'is_active' => 1,
),
),
);
// the actual test cases
$cases = array();
$cases[] = array(
// CustomGroup params
array(
'extends' => 'Contact',
'title' => 'example',
),
// CustomField params
$fixtures['textField'],
// expectedXmlFilePath
__DIR__ . '/fixtures/Contact-text.xml',
);
/*
$cases[] = array(
// CustomGroup params
array(
'extends' => 'Contact',
'title' => 'example',
),
// CustomField params
$fixtures['selectField'],
// expectedXmlFilePath
__DIR__ . '/fixtures/Contact-select.xml',
);
*/
$cases[] = array(
// CustomGroup params
array(
'extends' => 'Individual',
'title' => 'example',
),
// CustomField params
$fixtures['textField'],
// expectedXmlFilePath
__DIR__ . '/fixtures/Individual-text.xml',
);
$cases[] = array(
// CustomGroup params
array(
'extends' => 'Individual',
'extends_entity_column_value' => array('Student'),
'title' => 'example',
),
// CustomField params
$fixtures['textField'],
// expectedXmlFilePath
__DIR__ . '/fixtures/IndividualStudent-text.xml',
);
$cases[] = array(
// CustomGroup params
array(
'extends' => 'Activity',
'title' => 'example',
),
// CustomField params
$fixtures['textField'],
// expectedXmlFilePath
__DIR__ . '/fixtures/Activity-text.xml',
);
$cases[] = array(
// CustomGroup params
array(
'extends' => 'Activity',
'extends_entity_column_value' => array(array_search('Meeting', CRM_Core_PseudoConstant::activityType())),
'title' => 'example',
),
// CustomField params
$fixtures['textField'],
// expectedXmlFilePath
__DIR__ . '/fixtures/ActivityMeeting-text.xml',
);
return $cases;
}
/**
* Execute a basic XML test case. Each test case creates a custom-group and
* custom-field then compares the output to a pre-defined XML file.
*
* @param $customGroupParams
* @param $fieldParams
* @param $expectedXmlFilePath
* @dataProvider basicXmlTestCases
*/
function testBasicXMLExports($customGroupParams, $fieldParams, $expectedXmlFilePath) {
$this->assertDBQuery(0, 'SELECT count(*) FROM civicrm_custom_group WHERE title = %1', array(
1 => array($customGroupParams['title'], 'String')
));
$customGroup = $this->customGroupCreate($customGroupParams);
$fieldParams['custom_group_id'] = $customGroup['id'];
$customField = $this->callAPISuccess('custom_field', 'create', $fieldParams);
$exporter = new CRM_Utils_Migrate_Export();
$exporter->buildCustomGroups(array($customGroup['id']));
// print $exporter->toXML();
$this->assertEquals(file_get_contents($expectedXmlFilePath), $exporter->toXML());
$this->callAPISuccess('custom_field', 'delete', array('id' => $customField['id']));
$this->callAPISuccess('custom_group', 'delete', array('id' => $customGroup['id']));
}
/**
* @param $customGroupParams
* @param $fieldParams
* @param $expectedXmlFilePath
* @dataProvider basicXmlTestCases
*/
function testBasicXMLImports($expectCustomGroup, $expectCustomField, $inputXmlFilePath) {
$this->assertDBQuery(0, 'SELECT count(*) FROM civicrm_custom_group WHERE title = %1', array(
1 => array($expectCustomGroup['title'], 'String')
));
$importer = new CRM_Utils_Migrate_Import();
$importer->run($inputXmlFilePath);
$customGroups = $this->callAPISuccess('custom_group', 'get', array('title' => $expectCustomGroup['title']));
$this->assertEquals(1, $customGroups['count']);
$customGroup = array_shift($customGroups['values']);
foreach ($expectCustomGroup as $expectKey => $expectValue) {
$this->assertEquals($expectValue, $customGroup[$expectKey]);
}
$customFields = $this->callAPISuccess('custom_field', 'get', array('label' => $expectCustomField['label']));
$this->assertEquals(1, $customFields['count']);
$customField = array_shift($customFields['values']);
foreach ($expectCustomField as $expectKey => $expectValue) {
$this->assertEquals($expectValue, $customField[$expectKey]);
}
}
}
\ No newline at end of file
<?xml version="1.0" encoding="iso-8859-1" ?>
<CustomData>
<CustomGroups>
<CustomGroup>
<name>example</name>
<title>example</title>
<extends>Activity</extends>
<style>Inline</style>
<collapse_display>0</collapse_display>
<help_pre></help_pre>
<help_post></help_post>
<weight>1</weight>
<is_active>1</is_active>
<table_name>civicrm_value_example_1</table_name>
<is_multiple>0</is_multiple>
<collapse_adv_display>0</collapse_adv_display>
<is_reserved>0</is_reserved>
</CustomGroup>
</CustomGroups>
<CustomFields>
<CustomField>
<name>test_textfield</name>
<label>Name1</label>
<data_type>String</data_type>
<html_type>Text</html_type>
<default_value>abc</default_value>
<is_required>1</is_required>
<is_searchable>0</is_searchable>
<is_search_range>0</is_search_range>
<weight>4</weight>
<is_active>1</is_active>
<is_view>0</is_view>
<column_name>name1_1</column_name>
<custom_group_name>example</custom_group_name>
</CustomField>
</CustomFields>
</CustomData>
<?xml version="1.0" encoding="iso-8859-1" ?>
<CustomData>
<CustomGroups>
<CustomGroup>
<name>example</name>
<title>example</title>
<extends>Activity</extends>
<extends_entity_column_value_option_group>activity_type</extends_entity_column_value_option_group>
<extends_entity_column_value>Meeting</extends_entity_column_value>
<style>Inline</style>
<collapse_display>0</collapse_display>
<help_pre></help_pre>
<help_post></help_post>
<weight>1</weight>
<is_active>1</is_active>
<table_name>civicrm_value_example_1</table_name>
<is_multiple>0</is_multiple>
<collapse_adv_display>0</collapse_adv_display>
<is_reserved>0</is_reserved>
</CustomGroup>
</CustomGroups>
<CustomFields>
<CustomField>
<name>test_textfield</name>
<label>Name1</label>
<data_type>String</data_type>
<html_type>Text</html_type>
<default_value>abc</default_value>
<is_required>1</is_required>
<is_searchable>0</is_searchable>
<is_search_range>0</is_search_range>
<weight>4</weight>
<is_active>1</is_active>
<is_view>0</is_view>
<column_name>name1_1</column_name>
<custom_group_name>example</custom_group_name>
</CustomField>
</CustomFields>
</CustomData>
<?xml version="1.0" encoding="iso-8859-1" ?>
<CustomData>
<CustomGroups>
<CustomGroup>
<name>example</name>
<title>example</title>
<extends>Contact</extends>
<style>Inline</style>
<collapse_display>0</collapse_display>
<help_pre></help_pre>
<help_post></help_post>
<weight>1</weight>
<is_active>1</is_active>
<table_name>civicrm_value_example_1</table_name>
<is_multiple>0</is_multiple>
<collapse_adv_display>0</collapse_adv_display>
<is_reserved>0</is_reserved>
</CustomGroup>
</CustomGroups>
<CustomFields>
<CustomField>
<name>Our_select_field</name>
<label>Our select field</label>
<data_type>String</data_type>
<html_type>Select</html_type>
<is_required>1</is_required>
<is_searchable>0</is_searchable>
<is_search_range>0</is_search_range>
<weight>4</weight>
<is_active>1</is_active>
<is_view>0</is_view>
<column_name>our_select_field_1</column_name>
<option_group_name>our_select_field_20130818044104</option_group_name>
<custom_group_name>example</custom_group_name>
</CustomField>
</CustomFields>
<OptionGroups>
<OptionGroup>
<name>our_select_field_20130818044104</name>
<title>Our select field</title>
<is_reserved>1</is_reserved>
<is_active>1</is_active>
</OptionGroup>
</OptionGroups>
<OptionValues>
<OptionValue>
<label>Label1</label>
<value>1</value>
<name>Label1</name>
<is_default>0</is_default>
<weight>1</weight>
<is_optgroup>0</is_optgroup>
<is_reserved>0</is_reserved>
<is_active>1</is_active>
<option_group_name>our_select_field_20130818044104</option_group_name>
</OptionValue>
<OptionValue>
<label>Label2</label>
<value>2</value>
<name>Label2</name>
<is_default>0</is_default>
<weight>2</weight>
<is_optgroup>0</is_optgroup>
<is_reserved>0</is_reserved>
<is_active>1</is_active>
<option_group_name>our_select_field_20130818044104</option_group_name>
</OptionValue>
</OptionValues>
</CustomData>
<?xml version="1.0" encoding="iso-8859-1" ?>
<CustomData>
<CustomGroups>
<CustomGroup>
<name>example</name>
<title>example</title>
<extends>Contact</extends>
<style>Inline</style>
<collapse_display>0</collapse_display>
<help_pre></help_pre>
<help_post></help_post>
<weight>1</weight>
<is_active>1</is_active>
<table_name>civicrm_value_example_1</table_name>
<is_multiple>0</is_multiple>
<collapse_adv_display>0</collapse_adv_display>
<is_reserved>0</is_reserved>
</CustomGroup>
</CustomGroups>
<CustomFields>
<CustomField>
<name>test_textfield</name>
<label>Name1</label>
<data_type>String</data_type>
<html_type>Text</html_type>
<default_value>abc</default_value>
<is_required>1</is_required>
<is_searchable>0</is_searchable>
<is_search_range>0</is_search_range>
<weight>4</weight>
<is_active>1</is_active>
<is_view>0</is_view>
<column_name>name1_1</column_name>
<custom_group_name>example</custom_group_name>
</CustomField>
</CustomFields>
</CustomData>
<?xml version="1.0" encoding="iso-8859-1" ?>
<CustomData>
<CustomGroups>
<CustomGroup>
<name>example</name>
<title>example</title>
<extends>Individual</extends>
<style>Inline</style>
<collapse_display>0</collapse_display>
<help_pre></help_pre>
<help_post></help_post>
<weight>1</weight>
<is_active>1</is_active>
<table_name>civicrm_value_example_1</table_name>
<is_multiple>0</is_multiple>
<collapse_adv_display>0</collapse_adv_display>
<is_reserved>0</is_reserved>
</CustomGroup>
</CustomGroups>
<CustomFields>
<CustomField>
<name>test_textfield</name>
<label>Name1</label>
<data_type>String</data_type>
<html_type>Text</html_type>
<default_value>abc</default_value>
<is_required>1</is_required>
<is_searchable>0</is_searchable>
<is_search_range>0</is_search_range>
<weight>4</weight>
<is_active>1</is_active>
<is_view>0</is_view>
<column_name>name1_1</column_name>
<custom_group_name>example</custom_group_name>
</CustomField>
</CustomFields>
</CustomData>
<?xml version="1.0" encoding="iso-8859-1" ?>
<CustomData>
<CustomGroups>
<CustomGroup>
<name>example</name>
<title>example</title>
<extends>Individual</extends>
<extends_entity_column_value_option_group>contact_type</extends_entity_column_value_option_group>
<extends_entity_column_value>Student</extends_entity_column_value>
<style>Inline</style>
<collapse_display>0</collapse_display>
<help_pre></help_pre>
<help_post></help_post>
<weight>1</weight>
<is_active>1</is_active>
<table_name>civicrm_value_example_1</table_name>
<is_multiple>0</is_multiple>
<collapse_adv_display>0</collapse_adv_display>
<is_reserved>0</is_reserved>
</CustomGroup>
</CustomGroups>
<CustomFields>
<CustomField>
<name>test_textfield</name>
<label>Name1</label>
<data_type>String</data_type>
<html_type>Text</html_type>
<default_value>abc</default_value>
<is_required>1</is_required>
<is_searchable>0</is_searchable>
<is_search_range>0</is_search_range>
<weight>4</weight>
<is_active>1</is_active>
<is_view>0</is_view>
<column_name>name1_1</column_name>
<custom_group_name>example</custom_group_name>
</CustomField>
</CustomFields>
</CustomData>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment