commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / tests / phpunit / CRM / Contribute / BAO / ContributionPageTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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 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 $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
73
74 $this->assertNotNull($contributionpage->id);
75 $this->assertType('int', $contributionpage->id);
76 ContributionPage::delete($contributionpage->id);
77 }
78
79 /**
80 * test setIsActive() method
81 */
82 public function testsetIsActive() {
83
84 $params = array(
85 'title' => 'Test Contribution Page',
86 'financial_type_id' => $this->_financialTypeID,
87 'is_active' => 1,
88 );
89
90 $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
91 $id = $contributionpage->id;
92 $is_active = 1;
93 $pageActive = CRM_Contribute_BAO_ContributionPage::setIsActive($id, $is_active);
94 $this->assertEquals($pageActive, TRUE, 'Verify financial types record deletion.');
95 ContributionPage::delete($contributionpage->id);
96 }
97
98 /**
99 * Test setValues() method
100 */
101 public function testSetValues() {
102
103 $params = array(
104 'title' => 'Test Contribution Page',
105 'financial_type_id' => $this->_financialTypeID,
106 'is_active' => 1,
107 );
108
109 $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
110
111 $id = $contributionpage->id;
112 $values = array();
113 $setValues = CRM_Contribute_BAO_ContributionPage::setValues($id, $values);
114
115 $this->assertEquals($params['title'], $values['title'], 'Verify contribution title.');
116 $this->assertEquals($this->_financialTypeID, $values['financial_type_id'], 'Verify financial types id.');
117 $this->assertEquals(1, $values['is_active'], 'Verify contribution is_active value.');
118 ContributionPage::delete($contributionpage->id);
119 }
120
121 /**
122 * Test copy() method
123 */
124 public function testcopy() {
125 $params = array(
126 'qfkey' => '9a3ef3c08879ad4c8c109b21c583400e',
127 'title' => 'Test Contribution Page',
128 'financial_type_id' => $this->_financialTypeID,
129 'intro_text' => '',
130 'footer_text' => 'Thanks',
131 'is_for_organization' => 0,
132 'for_organization' => ' I am contributing on behalf of an organization',
133 'goal_amount' => '400',
134 'is_active' => 1,
135 'honor_block_title' => '',
136 'honor_block_text' => '',
137 'start_date' => '20091022105900',
138 'start_date_time' => '10:59AM',
139 'end_date' => '19700101000000',
140 'end_date_time' => '',
141 'is_credit_card_only' => '',
142 );
143
144 $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
145 $copycontributionpage = CRM_Contribute_BAO_ContributionPage::copy($contributionpage->id);
146 $this->assertEquals($copycontributionpage->financial_type_id, $this->_financialTypeID, 'Check for Financial type id.');
147 $this->assertEquals($copycontributionpage->goal_amount, 400, 'Check for goal amount.');
148 ContributionPage::delete($contributionpage->id);
149 ContributionPage::delete($copycontributionpage->id);
150 }
151
152 /**
153 * Test checkRecurPaymentProcessor() method
154 */
155 public function testcheckRecurPaymentProcessor() {
156 //@todo paypalpro create seems to fail silently without causing this class to fail
157 // $this->paymentProcessorCreate may be a better option
158 $paymentProcessor = PaypalPro::create();
159 $params = array(
160 'title' => 'Test Contribution Page',
161 'financial_type_id' => $this->_financialTypeID,
162 'is_active' => 1,
163 'payment_processor_id' => $paymentProcessor,
164 );
165
166 $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
167 $id = $contributionpage->id;
168 $checkRecurring = CRM_Contribute_BAO_ContributionPage::checkRecurPaymentProcessor($id);
169 $this->assertEquals($checkRecurring, FALSE, 'Check for false return.');
170 ContributionPage::delete($contributionpage->id);
171 }
172
173 }