Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-09-25-01-46-57
[civicrm-core.git] / tests / phpunit / CRM / Contribute / BAO / ContributionTypeTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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 require_once 'CiviTest/CiviUnitTestCase.php';
29 class CRM_Contribute_BAO_ContributionTypeTest extends CiviUnitTestCase {
30 function get_info() {
31 return array(
32 'name' => 'FinancialAccount BAOs',
33 'description' => 'Test all Contribute_BAO_Contribution methods.',
34 'group' => 'CiviCRM BAO Tests',
35 );
36 }
37
38 function setUp() {
39 parent::setUp();
40 $this->organizationCreate();
41 }
42
43 function teardown() {
44 $this->financialAccountDelete('Donations');
45 }
46
47 /**
48 * check method add()
49 */
50 function testAdd() {
51 $params = array(
52 'name' => 'Donations',
53 'is_deductible' => 0,
54 'is_active' => 1,
55 );
56 $ids = array();
57 $contributionType = CRM_Financial_BAO_FinancialType::add($params, $ids);
58
59 $result = $this->assertDBNotNull('CRM_Financial_BAO_FinancialType', $contributionType->id,
60 'name', 'id',
61 'Database check on updated financial type record.'
62 );
63
64 $this->assertEquals($result, 'Donations', 'Verify financial type name.');
65 }
66
67 /**
68 * check method retrive()
69 */
70 function testRetrieve() {
71 $params = array(
72 'name' => 'Donations',
73 'is_deductible' => 0,
74 'is_active' => 1,
75 );
76 $ids = array();
77 $contributionType = CRM_Financial_BAO_FinancialType::add($params, $ids);
78
79 $defaults = array();
80 $result = CRM_Financial_BAO_FinancialType::retrieve($params, $defaults);
81
82 $this->assertEquals($result->name, 'Donations', 'Verify financial type name.');
83 }
84
85 /**
86 * check method setIsActive()
87 */
88 function testSetIsActive() {
89 $params = array(
90 'name' => 'Donations',
91 'is_deductible' => 0,
92 'is_active' => 1,
93 );
94 $ids = array();
95 $contributionType = CRM_Financial_BAO_FinancialType::add($params, $ids);
96 $result = CRM_Financial_BAO_FinancialType::setIsActive($contributionType->id, 0);
97 $this->assertEquals($result, TRUE, 'Verify financial type record updation for is_active.');
98
99 $isActive = $this->assertDBNotNull('CRM_Financial_BAO_FinancialType', $contributionType->id,
100 'is_active', 'id',
101 'Database check on updated for financial type is_active.'
102 );
103 $this->assertEquals($isActive, 0, 'Verify financial types is_active.');
104 }
105
106 /**
107 * check method del()
108 */
109 function testdel() {
110 $params = array(
111 'name' => 'Donations',
112 'is_deductible' => 0,
113 'is_active' => 1,
114 );
115 $ids = array();
116 $contributionType = CRM_Financial_BAO_FinancialType::add($params, $ids);
117
118 CRM_Financial_BAO_FinancialType::del($contributionType->id);
119 $params = array('id' => $contributionType->id);
120 $result = CRM_Financial_BAO_FinancialType::retrieve($params, $defaults);
121 $this->assertEquals(empty($result), TRUE, 'Verify financial types record deletion.');
122 }
123 }
124
125