'Settings Tests', 'description' => 'Settings API', 'group' => 'CiviCRM API Tests', ); } function setUp() { parent::setUp(); $params = array( 'name' => 'Default Domain Name', ); $result = $this->callAPISuccess( 'domain','get',$params); if(empty($result['id'])){ $result = $this->callAPISuccess( 'domain','create',$params ); } $params['name'] = 'Second Domain'; $result = $this->callAPISuccess( 'domain','get',$params); if(empty($result['id'])){ $result = $this->callAPISuccess( 'domain','create',$params ); } $this->_domainID2 = $result['id']; $params['name'] = 'A-team domain'; $result = $this->callAPISuccess( 'domain','get',$params); if(empty($result['id'])){ $result = $this->callAPISuccess( 'domain','create',$params ); } $this->_domainID3 = $result['id']; $this->_currentDomain = CRM_Core_Config::domainID(); } function tearDown() { parent::tearDown(); $this->callAPISuccess('system','flush', array()); $this->quickCleanup(array('civicrm_domain')); } /** * check getfields works */ function testGetFields() { $description = 'Demonstrate return from getfields - see subfolder for variants'; $result = $this->callAPIAndDocument('setting', 'getfields', array(), __FUNCTION__, __FILE__, $description); $this->assertArrayHasKey('customCSSURL', $result['values']); $description = 'Demonstrate return from getfields'; $result = $this->callAPISuccess('setting', 'getfields', array()); $this->assertArrayHasKey('customCSSURL', $result['values']); $this->callAPISuccess('system','flush', array()); } /** * let's check it's loading from cache by meddling with the cache */ function testGetFieldsCaching() { $settingsMetadata = array(); CRM_Core_BAO_Cache::setItem($settingsMetadata,'CiviCRM setting Specs', 'settingsMetadata__'); CRM_Core_BAO_Cache::setItem($settingsMetadata,'CiviCRM setting Spec', 'All'); $result = $this->callAPISuccess('setting', 'getfields', array()); $this->assertArrayNotHasKey('customCSSURL', $result['values']); $this->quickCleanup(array('civicrm_cache')); } function testGetFieldsFilters() { $params = array('name' => 'advanced_search_options'); $result = $this->callAPISuccess('setting', 'getfields', $params); $this->assertArrayNotHasKey('customCSSURL', $result['values']); $this->assertArrayHasKey('advanced_search_options',$result['values']); } /** * check getfields works */ function testCreateSetting() { $description = "shows setting a variable for a given domain - if no domain is set current is assumed"; $params = array( 'domain_id' => $this->_domainID2, 'uniq_email_per_site' => 1, ); $result = $this->callAPIAndDocument('setting', 'create', $params, __FUNCTION__, __FILE__); $params = array('uniq_email_per_site' => 1,); $description = "shows setting a variable for a current domain"; $result = $this->callAPIAndDocument('setting', 'create', $params, __FUNCTION__, __FILE__, $description, 'CreateSettingCurrentDomain'); $this->assertArrayHasKey(CRM_Core_Config::domainID(), $result['values']); } /** * check getfields works */ function testCreateInvalidSettings() { $params = array( 'domain_id' => $this->_domainID2, 'invalid_key' => 1, ); $result = $this->callAPIFailure('setting', 'create', $params); } /** * check invalid settings rejected - */ function testCreateInvalidURLSettings() { $params = array( 'domain_id' => $this->_domainID2, 'userFrameworkResourceURL' => 'dfhkdhfd', ); $result = $this->callAPIFailure('setting', 'create', $params); $params = array( 'domain_id' => $this->_domainID2, 'userFrameworkResourceURL' => 'http://blah.com', ); $result = $this->callAPISuccess('setting', 'create', $params); } /** * check getfields works */ function testCreateInvalidBooleanSettings() { $params = array( 'domain_id' => $this->_domainID2, 'track_civimail_replies' => 'dfhkdhfd', ); $result = $this->callAPIFailure('setting', 'create', $params); $params = array('track_civimail_replies' => '0',); $result = $this->callAPISuccess('setting', 'create', $params); $getResult = $this->callAPISuccess('setting','get',$params); $this->assertEquals(0, $getResult['values'][$this->_currentDomain]['track_civimail_replies']); $getResult = $this->callAPISuccess('setting','get',$params); $this->assertEquals(0, $getResult['values'][$this->_currentDomain]['track_civimail_replies']); $params = array( 'domain_id' => $this->_domainID2, 'track_civimail_replies' => '1', ); $result = $this->callAPISuccess('setting', 'create', $params); $getResult = $this->callAPISuccess('setting','get',$params); $this->assertEquals(1, $getResult['values'][$this->_domainID2]['track_civimail_replies']); $params = array( 'domain_id' => $this->_domainID2, 'track_civimail_replies' => 'TRUE', ); $result = $this->callAPISuccess('setting', 'create', $params); $getResult = $this->callAPISuccess('setting','get',$params); $this->assertEquals(1, $getResult['values'][$this->_domainID2]['track_civimail_replies'], "check TRUE is converted to 1"); } /** * check getfields works */ function testCreateSettingMultipleDomains() { $description = "shows setting a variable for all domains"; $params = array( 'domain_id' => 'all', 'uniq_email_per_site' => 1, ); $result = $this->callAPIAndDocument('setting', 'create', $params, __FUNCTION__, __FILE__,$description, 'CreateAllDomains'); $this->assertEquals(1, $result['values'][2]['uniq_email_per_site']); $this->assertEquals(1, $result['values'][1]['uniq_email_per_site']); $this->assertArrayHasKey(3, $result['values'], 'Domain create probably failed Debug this IF domain test is passing'); $this->assertEquals(1, $result['values'][3]['uniq_email_per_site'], 'failed to set setting for domain 3.'); $params = array( 'domain_id' => 'all', 'return' => 'uniq_email_per_site' ); // we'll check it with a 'get' $description = "shows getting a variable for all domains"; $result = $this->callAPIAndDocument('setting', 'get', $params, __FUNCTION__, __FILE__,$description, 'GetAllDomains', 'Get'); $this->assertEquals(1, $result['values'][2]['uniq_email_per_site']); $this->assertEquals(1, $result['values'][1]['uniq_email_per_site']); $this->assertEquals(1, $result['values'][3]['uniq_email_per_site']); $params = array( 'domain_id' => array(1,3), 'uniq_email_per_site' => 0, ); $description = "shows setting a variable for specified domains"; $result = $this->callAPIAndDocument('setting', 'create', $params, __FUNCTION__, __FILE__,$description, 'CreateSpecifiedDomains'); $this->assertEquals(0, $result['values'][3]['uniq_email_per_site']); $this->assertEquals(0, $result['values'][1]['uniq_email_per_site']); $params = array( 'domain_id' => array(1,2), 'return' => array('uniq_email_per_site'), ); $description = "shows getting a variable for specified domains"; $result = $this->callAPIAndDocument('setting', 'get', $params, __FUNCTION__, __FILE__,$description, 'GetSpecifiedDomains', 'Get'); $this->assertEquals(1, $result['values'][2]['uniq_email_per_site']); $this->assertEquals(0, $result['values'][1]['uniq_email_per_site']); } function testGetSetting() { $params = array( 'domain_id' => $this->_domainID2, 'return' => 'uniq_email_per_site', ); $description = "shows get setting a variable for a given domain - if no domain is set current is assumed"; $result = $this->callAPIAndDocument('setting', 'get', $params, __FUNCTION__, __FILE__); $params = array( 'return' => 'uniq_email_per_site', ); $description = "shows getting a variable for a current domain"; $result = $this->callAPIAndDocument('setting', 'get', $params, __FUNCTION__, __FILE__, $description, 'GetSettingCurrentDomain'); $this->assertArrayHasKey(CRM_Core_Config::domainID(), $result['values']); } /** * setting api should set & fetch settings stored in config as well as those in settings table */ function testSetConfigSetting() { $config = CRM_Core_Config::singleton(); $this->assertFalse($config->debug == 1); $params = array( 'domain_id' => $this->_domainID2, 'debug_enabled' => 1, ); $result = $this->callAPISuccess('setting', 'create', $params); CRM_Core_BAO_Domain::setDomain($this->_domainID2); $config = CRM_Core_Config::singleton(TRUE, TRUE); CRM_Core_BAO_Domain::resetDomain(); $this->assertTrue($config->debug == 1); // this should NOT be stored in the settings table now - only in config $sql = " SELECT count(*) as c FROM civicrm_setting WHERE name LIKE '%debug%'"; $dao = CRM_Core_DAO::executeQuery($sql); $dao->fetch(); $this->assertEquals($dao->c, 0); } /** * setting api should set & fetch settings stored in config as well as those in settings table */ function testGetConfigSetting() { $settings = $this->callAPISuccess('setting', 'get', array( 'name' => 'defaultCurrency', 'sequential' => 1,) ); $this->assertEquals('USD', $settings['values'][0]['defaultCurrency']); } /** * setting api should set & fetch settings stored in config as well as those in settings table */ function testGetSetConfigSettingMultipleDomains() { $settings = $this->callAPISuccess('setting', 'create', array( 'defaultCurrency' => 'USD', 'domain_id' => $this->_currentDomain) ); $settings = $this->callAPISuccess('setting', 'create', array( 'defaultCurrency' => 'CAD', 'domain_id' => $this->_domainID2) ); $settings = $this->callAPISuccess('setting', 'get', array( 'return' => 'defaultCurrency', 'domain_id' => 'all', ) ); $this->assertEquals('USD', $settings['values'][$this->_currentDomain]['defaultCurrency']); $this->assertEquals('CAD', $settings['values'][$this->_domainID2]['defaultCurrency'], "second domain (id {$this->_domainID2} ) should be set to CAD. First dom was {$this->_currentDomain} & was USD"); } /* * Use getValue against a config setting */ function testGetValueConfigSetting() { $params = array( 'name' => 'monetaryThousandSeparator', 'group' => 'Localization Setting', ); $result = $this->callAPISuccess('setting', 'getvalue', $params); $this->assertEquals(',', $result); } function testGetValue() { $params = array( 'name' => 'petition_contacts', 'group' => 'Campaign Preferences' ); $description = "Demonstrates getvalue action - intended for runtime use as better caching than get"; $result = $this->callAPIAndDocument('setting', 'getvalue', $params, __FUNCTION__, __FILE__, $description); $this->assertEquals('Petition Contacts', $result); } function testGetDefaults() { $description = "gets defaults setting a variable for a given domain - if no domain is set current is assumed"; $params = array( 'name' => 'address_format', ); $result = $this->callAPIAndDocument('setting', 'getdefaults', $params, __FUNCTION__, __FILE__,$description,'GetDefaults','getdefaults'); $this->assertEquals("{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}", $result['values'][CRM_Core_Config::domainID()]['address_format']); $params = array('name' => 'mailing_format',); $result = $this->callAPISuccess('setting', 'getdefaults', $params); $this->assertEquals("{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}", $result['values'][CRM_Core_Config::domainID()]['mailing_format']); $this->assertArrayHasKey(CRM_Core_Config::domainID(), $result['values']); } /* * Function tests reverting a specific parameter */ function testRevert() { $params = array( 'address_format' => 'xyz', 'mailing_format' => 'bcs', ); $result = $this->callAPISuccess('setting', 'create', $params); $this->assertAPISuccess($result, "in line " . __LINE__); $revertParams = array( 'name' => 'address_format' ); $result = $this->callAPISuccess('setting', 'get', $params); //make sure it's set $this->assertEquals('xyz', $result['values'][CRM_Core_Config::domainID()]['address_format']); $description = "Demonstrates reverting a parameter to default value"; $result = $this->callAPIAndDocument('setting', 'revert', $revertParams, __FUNCTION__, __FILE__,$description,'','revert'); //make sure it's reverted $result = $this->callAPISuccess('setting', 'get', $params); $this->assertEquals("{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}", $result['values'][CRM_Core_Config::domainID()]['address_format']); $params = array( 'return' => array('mailing_format'), ); $result = $this->callAPISuccess('setting', 'get', $params); //make sure it's unchanged $this->assertEquals('bcs', $result['values'][CRM_Core_Config::domainID()]['mailing_format']); } /* * Tests reverting ALL parameters (specific domain) */ function testRevertAll() { $params = array( 'address_format' => 'xyz', 'mailing_format' => 'bcs', ); $result = $this->callAPISuccess('setting', 'create', $params); $revertParams = array( ); $result = $this->callAPISuccess('setting', 'get', $params); //make sure it's set $this->assertEquals('xyz', $result['values'][CRM_Core_Config::domainID()]['address_format']); $this->callAPISuccess('setting', 'revert', $revertParams); //make sure it's reverted $result = $this->callAPISuccess('setting', 'get', array('group' => 'core')); $this->assertEquals("{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}", $result['values'][CRM_Core_Config::domainID()]['address_format']); $this->assertEquals("{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}", $result['values'][CRM_Core_Config::domainID()]['mailing_format']); } /* * Tests filling missing params */ function testFill() { $domparams = array( 'name' => 'B Team Domain', ); $dom = $this->callAPISuccess('domain', 'create', $domparams); $params = array( 'domain_id' => 'all', ); $result = $this->callAPISuccess('setting', 'get', $params); $params = array( 'address_format' => 'xyz', 'mailing_format' => 'bcs', 'domain_id' => $this->_domainID2, ); $result = $this->callAPISuccess('setting', 'create', $params); $params = array( 'domain_id' => $dom['id'], ); $result = $this->callAPISuccess('setting', 'get', $params); $this->assertAPISuccess($result, "in line " . __LINE__); $this->assertArrayNotHasKey('tag_unconfirmed', $result['values'][$dom['id']],'setting for domain 3 should not be set. Debug this IF domain test is passing'); $result = $this->callAPISuccess('setting', 'fill', $params); $this->assertAPISuccess($result, "in line " . __LINE__); $result = $this->callAPISuccess('setting', 'get', $params); $this->assertAPISuccess($result, "in line " . __LINE__); $this->assertArrayHasKey('tag_unconfirmed', $result['values'][$dom['id']]); $this->assertArrayHasKey('extensionsDir', $result['values'][$dom['id']]); $this->assertEquals('Unconfirmed', $result['values'][$dom['id']]['tag_unconfirmed']); } }