tests/phpunit - Declare `@group headless`
[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 * @group headless
31 */
32 class api_v3_MailSettingsTest extends CiviUnitTestCase {
33 protected $_apiversion = 3;
34 protected $params;
35 protected $id;
36 public $DBResetRequired = FALSE;
37
38 public function setUp() {
39 $this->params = array(
40 'domain_id' => 1,
41 'name' => "my mail setting",
42 'domain' => 'setting.com',
43 'local_part' => 'civicrm+',
44 'server' => "localhost",
45 'username' => 'sue',
46 'password' => 'pass',
47 'is_default' => 1,
48 );
49 parent::setUp();
50 $this->useTransaction(TRUE);
51 }
52
53 /**
54 * Test creation.
55 */
56 public function testCreateMailSettings() {
57 $this->callAPISuccessGetCount('mail_settings', array(), 1);
58 $result = $this->callAPIAndDocument('MailSettings', 'create', $this->params, __FUNCTION__, __FILE__);
59 $this->assertEquals(1, $result['count']);
60 $this->assertNotNull($result['values'][$result['id']]['id']);
61 $this->callAPISuccess('MailSettings', 'delete', array('id' => $result['id']));
62 $this->callAPISuccessGetCount('mail_settings', array(), 1);
63 }
64
65 /**
66 * Test caches cleared adequately.
67 */
68 public function testCreateUpdateMailSettings() {
69 $result = $this->callAPISuccess('MailSettings', 'create', $this->params);
70 $this->assertEquals('setting.com', CRM_Core_BAO_MailSettings::defaultDomain());
71 $this->callAPISuccess('mail_settings', 'create', array('id' => $result['id'], 'domain' => 'updated.com'));
72 $this->assertEquals('updated.com', CRM_Core_BAO_MailSettings::defaultDomain());
73 $this->callAPISuccess('MailSettings', 'delete', array('id' => $result['id']));
74 $this->callAPISuccessGetCount('mail_settings', array(), 1);
75 }
76
77 /**
78 * Test get method.
79 */
80 public function testGetMailSettings() {
81 $this->callAPIAndDocument('MailSettings', 'create', $this->params, __FUNCTION__, __FILE__);
82 $result = $this->callAPIAndDocument('MailSettings', 'get', $this->params, __FUNCTION__, __FILE__);
83 $this->assertEquals(1, $result['count']);
84 $this->assertNotNull($result['values'][$result['id']]['id']);
85 $this->callAPISuccess('MailSettings', 'delete', array('id' => $result['id']));
86 $this->callAPISuccessGetCount('mail_settings', array(), 1);
87 }
88
89 public function testDeleteMailSettings() {
90 $this->callAPIAndDocument('MailSettings', 'create', $this->params, __FUNCTION__, __FILE__);
91 $entity = $this->callAPISuccess('MailSettings', 'get', $this->params);
92 $this->assertEquals('setting.com', $entity['values'][$entity['id']]['domain']);
93 $this->callAPIAndDocument('MailSettings', 'delete', array('id' => $entity['id']), __FUNCTION__, __FILE__);
94 $checkDeleted = $this->callAPISuccess('MailSettings', 'get', array());
95 $this->assertEquals('EXAMPLE.ORG', $checkDeleted['values'][$checkDeleted['id']]['domain']);
96 }
97
98 /**
99 * Test chained delete.
100 */
101 public function testGetMailSettingsChainDelete() {
102 $description = "Demonstrates get + delete in the same call.";
103 $subFile = 'ChainedGetDelete';
104 $params = array(
105 'title' => "MailSettings title",
106 'api.MailSettings.delete' => 1,
107 );
108 $this->callAPISuccess('MailSettings', 'create', $this->params);
109 $this->callAPIAndDocument('MailSettings', 'get', $params, __FUNCTION__, __FILE__, $description, $subFile);
110 $this->assertEquals(0, $this->callAPISuccess('MailSettings', 'getcount', array()));
111 }
112
113 }