Merge pull request #4606 from johanv/CRM-15636-price_set_event_and_contribution
[civicrm-core.git] / tests / phpunit / CRM / Contribute / BAO / ContributionPageTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 require_once 'CiviTest/CiviUnitTestCase.php';
30 require_once 'CiviTest/Contact.php';
31 require_once 'CiviTest/ContributionPage.php';
32 require_once 'CiviTest/Custom.php';
33 require_once 'CiviTest/PaypalPro.php';
34
35 /**
36 * Class CRM_Contribute_BAO_ContributionPageTest
37 */
38 class CRM_Contribute_BAO_ContributionPageTest extends CiviUnitTestCase {
39
40 public function setUp() {
41 parent::setUp();
42 $this->_financialTypeID = 1;
43 }
44
45 public function tearDown() {
46 }
47
48 /**
49 * Create() method (create Contribution Page)
50 */
51 public function testCreate() {
52
53 $params = array(
54 'qfkey' => '9a3ef3c08879ad4c8c109b21c583400e',
55 'title' => 'Test Contribution Page',
56 'financial_type_id' => $this->_financialTypeID,
57 'intro_text' => '',
58 'footer_text' => 'Thanks',
59 'is_for_organization' => 0,
60 'for_organization' => ' I am contributing on behalf of an organization',
61 'goal_amount' => '400',
62 'is_active' => 1,
63 'honor_block_title' => '',
64 'honor_block_text' => '',
65 'start_date' => '20091022105900',
66 'start_date_time' => '10:59AM',
67 'end_date' => '19700101000000',
68 'end_date_time' => '',
69 'is_credit_card_only' => '',
70 );
71
72
73 $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
74
75 $this->assertNotNull($contributionpage->id);
76 $this->assertType('int', $contributionpage->id);
77 ContributionPage::delete($contributionpage->id);
78 }
79
80 /**
81 * test setIsActive() method
82 */
83 public function testsetIsActive() {
84
85 $params = array(
86 'title' => 'Test Contribution Page',
87 'financial_type_id' => $this->_financialTypeID,
88 'is_active' => 1,
89 );
90
91 $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
92 $id = $contributionpage->id;
93 $is_active = 1;
94 $pageActive = CRM_Contribute_BAO_ContributionPage::setIsActive($id, $is_active);
95 $this->assertEquals($pageActive, true, 'Verify financial types record deletion.');
96 ContributionPage::delete($contributionpage->id);
97 }
98
99 /**
100 * Test setValues() method
101 */
102 public function testSetValues() {
103
104 $params = array(
105 'title' => 'Test Contribution Page',
106 'financial_type_id' => $this->_financialTypeID,
107 'is_active' => 1,
108 );
109
110 $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
111
112 $id = $contributionpage->id;
113 $values = array();
114 $setValues = CRM_Contribute_BAO_ContributionPage::setValues($id, $values);
115
116 $this->assertEquals($params['title'], $values['title'], 'Verify contribution title.');
117 $this->assertEquals($this->_financialTypeID, $values['financial_type_id'], 'Verify financial types id.');
118 $this->assertEquals(1, $values['is_active'], 'Verify contribution is_active value.');
119 ContributionPage::delete($contributionpage->id);
120 }
121
122 /**
123 * Test copy() method
124 */
125 public function testcopy() {
126 $params = array(
127 'qfkey' => '9a3ef3c08879ad4c8c109b21c583400e',
128 'title' => 'Test Contribution Page',
129 'financial_type_id' => $this->_financialTypeID,
130 'intro_text' => '',
131 'footer_text' => 'Thanks',
132 'is_for_organization' => 0,
133 'for_organization' => ' I am contributing on behalf of an organization',
134 'goal_amount' => '400',
135 'is_active' => 1,
136 'honor_block_title' => '',
137 'honor_block_text' => '',
138 'start_date' => '20091022105900',
139 'start_date_time' => '10:59AM',
140 'end_date' => '19700101000000',
141 'end_date_time' => '',
142 'is_credit_card_only' => '',
143 );
144
145
146 $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
147 $copycontributionpage = CRM_Contribute_BAO_ContributionPage::copy($contributionpage->id);
148 $this->assertEquals($copycontributionpage->financial_type_id, $this->_financialTypeID, 'Check for Financial type id.');
149 $this->assertEquals($copycontributionpage->goal_amount, 400, 'Check for goal amount.');
150 ContributionPage::delete($contributionpage->id);
151 ContributionPage::delete($copycontributionpage->id);
152 }
153
154 /**
155 * Test checkRecurPaymentProcessor() method
156 */
157 public function testcheckRecurPaymentProcessor() {
158 //@todo paypalpro create seems to fail silently without causing this class to fail
159 // $this->paymentProcessorCreate may be a better option
160 $paymentProcessor = PaypalPro::create();
161 $params = array(
162 'title' => 'Test Contribution Page',
163 'financial_type_id' => $this->_financialTypeID,
164 'is_active' => 1,
165 'payment_processor_id' => $paymentProcessor,
166 );
167
168 $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
169 $id = $contributionpage->id;
170 $checkRecurring = CRM_Contribute_BAO_ContributionPage::checkRecurPaymentProcessor($id);
171 $this->assertEquals($checkRecurring, FALSE, 'Check for false return.');
172 ContributionPage::delete($contributionpage->id);
173 }
174 }