Merge pull request #7717 from yashodha/CRM-17908
[civicrm-core.git] / tests / phpunit / api / v3 / MailSettingsTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * Class api_v3_MailSettingsTest
30 */
31 class api_v3_MailSettingsTest extends CiviUnitTestCase {
32 protected $_apiversion = 3;
33 protected $params;
34 protected $id;
35 public $DBResetRequired = FALSE;
36
37 public function setUp() {
38 $this->params = array(
39 'domain_id' => 1,
40 'name' => "my mail setting",
41 'domain' => 'setting.com',
42 'local_part' => 'civicrm+',
43 'server' => "localhost",
44 'username' => 'sue',
45 'password' => 'pass',
46 'is_default' => 1,
47 );
48 parent::setUp();
49 $this->useTransaction(TRUE);
50 }
51
52 /**
53 * Test creation.
54 */
55 public function testCreateMailSettings() {
56 $this->callAPISuccessGetCount('mail_settings', array(), 1);
57 $result = $this->callAPIAndDocument('MailSettings', 'create', $this->params, __FUNCTION__, __FILE__);
58 $this->assertEquals(1, $result['count']);
59 $this->assertNotNull($result['values'][$result['id']]['id']);
60 $this->callAPISuccess('MailSettings', 'delete', array('id' => $result['id']));
61 $this->callAPISuccessGetCount('mail_settings', array(), 1);
62 }
63
64 /**
65 * Test caches cleared adequately.
66 */
67 public function testCreateUpdateMailSettings() {
68 $result = $this->callAPISuccess('MailSettings', 'create', $this->params);
69 $this->assertEquals('setting.com', CRM_Core_BAO_MailSettings::defaultDomain());
70 $this->callAPISuccess('mail_settings', 'create', array('id' => $result['id'], 'domain' => 'updated.com'));
71 $this->assertEquals('updated.com', CRM_Core_BAO_MailSettings::defaultDomain());
72 $this->callAPISuccess('MailSettings', 'delete', array('id' => $result['id']));
73 $this->callAPISuccessGetCount('mail_settings', array(), 1);
74 }
75
76 /**
77 * Test get method.
78 */
79 public function testGetMailSettings() {
80 $this->callAPIAndDocument('MailSettings', 'create', $this->params, __FUNCTION__, __FILE__);
81 $result = $this->callAPIAndDocument('MailSettings', 'get', $this->params, __FUNCTION__, __FILE__);
82 $this->assertEquals(1, $result['count']);
83 $this->assertNotNull($result['values'][$result['id']]['id']);
84 $this->callAPISuccess('MailSettings', 'delete', array('id' => $result['id']));
85 $this->callAPISuccessGetCount('mail_settings', array(), 1);
86 }
87
88 public function testDeleteMailSettings() {
89 $this->callAPIAndDocument('MailSettings', 'create', $this->params, __FUNCTION__, __FILE__);
90 $entity = $this->callAPISuccess('MailSettings', 'get', $this->params);
91 $this->assertEquals('setting.com', $entity['values'][$entity['id']]['domain']);
92 $this->callAPIAndDocument('MailSettings', 'delete', array('id' => $entity['id']), __FUNCTION__, __FILE__);
93 $checkDeleted = $this->callAPISuccess('MailSettings', 'get', array());
94 $this->assertEquals('EXAMPLE.ORG', $checkDeleted['values'][$checkDeleted['id']]['domain']);
95 }
96
97 /**
98 * Test chained delete.
99 */
100 public function testGetMailSettingsChainDelete() {
101 $description = "Demonstrates get + delete in the same call.";
102 $subFile = 'ChainedGetDelete';
103 $params = array(
104 'title' => "MailSettings title",
105 'api.MailSettings.delete' => 1,
106 );
107 $this->callAPISuccess('MailSettings', 'create', $this->params);
108 $this->callAPIAndDocument('MailSettings', 'get', $params, __FUNCTION__, __FILE__, $description, $subFile);
109 $this->assertEquals(0, $this->callAPISuccess('MailSettings', 'getcount', array()));
110 }
111
112 }