Merge pull request #9637 from omarabuhussein/CRM-19832-searchtask-hook
[civicrm-core.git] / tests / phpunit / WebTest / Contribute / ContactContextAddTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 along with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 */
26
27 require_once 'CiviTest/CiviSeleniumTestCase.php';
28
29 /**
30 * Class WebTest_Contribute_ContactContextAddTest
31 */
32 class WebTest_Contribute_ContactContextAddTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 public function testContactContextAdd() {
39
40 // Log in using webtestLogin() method
41 $this->webtestLogin();
42
43 // Create a contact to be used as soft creditor
44 $softCreditFname = substr(sha1(rand()), 0, 7);
45 $softCreditLname = substr(sha1(rand()), 0, 7);
46 $this->webtestAddContact($softCreditFname, $softCreditLname, FALSE);
47
48 // Adding contact with randomized first name (so we can then select that contact when creating contribution.)
49 // We're using Quick Add block on the main page for this.
50 $firstName = substr(sha1(rand()), 0, 7);
51 // Add new Financial Account
52 $orgName = 'Alberta ' . substr(sha1(rand()), 0, 7);
53 $financialAccountTitle = 'Financial Account ' . substr(sha1(rand()), 0, 4);
54 $financialAccountDescription = "{$financialAccountTitle} Description";
55 $accountingCode = 1033;
56 $financialAccountType = 'Asset';
57 $taxDeductible = FALSE;
58 $isActive = FALSE;
59 $isTax = TRUE;
60 $taxRate = 9.99999999;
61 $isDefault = FALSE;
62
63 //Add new organisation
64 if ($orgName) {
65 $this->webtestAddOrganization($orgName);
66 }
67 $this->_testAddFinancialAccount($financialAccountTitle,
68 $financialAccountDescription,
69 $accountingCode,
70 $orgName,
71 $financialAccountType,
72 $taxDeductible,
73 $isActive,
74 $isTax,
75 $taxRate,
76 $isDefault
77 );
78
79 $this->webtestAddContact($firstName, "Anderson", TRUE);
80
81 // Get the contact id of the new contact
82 $contactUrl = $this->parseURL();
83 $cid = $contactUrl['queryString']['cid'];
84 $this->assertType('numeric', $cid);
85
86 // go to contribution tab and add contribution.
87 $this->click("css=li#tab_contribute a");
88
89 // wait for Record Contribution elenment.
90 $this->waitForElementPresent("link=Record Contribution (Check, Cash, EFT ...)");
91 $this->click("link=Record Contribution (Check, Cash, EFT ...)");
92
93 $this->waitForElementPresent("_qf_Contribution_cancel-bottom");
94 // fill financial type.
95 $this->select("financial_type_id", "Donation");
96
97 // fill in Received Date
98 $this->webtestFillDate('receive_date');
99
100 // source
101 $this->type("source", "Mailer 1");
102
103 // total amount
104 $this->type("total_amount", "100");
105
106 // select payment instrument type = Check and enter chk number
107 $this->select("payment_instrument_id", "value=4");
108 $this->waitForElementPresent("check_number");
109 $this->type("check_number", "check #1041");
110
111 $this->type("trxn_id", "P20901X1" . rand(100, 10000));
112
113 // soft credit
114 $this->webtestFillAutocomplete("{$softCreditLname}, {$softCreditFname}", 'soft_credit_contact_id_1');
115 $this->type("soft_credit_amount_1", "100");
116
117 //Custom Data
118 //$this->waitForElementPresent('CIVICRM_QFID_3_6');
119 //$this->click('CIVICRM_QFID_3_6');
120
121 //Additional Detail section
122 $this->click("AdditionalDetail");
123 $this->waitForElementPresent("thankyou_date");
124
125 $this->type("note", "Test note for {$firstName}.");
126 $this->type("fee_amount", "0");
127 $this->type("net_amount", "0");
128 $this->type("invoice_id", time());
129 $this->webtestFillDate('thankyou_date');
130
131 //Premium section
132 $this->click("Premium");
133 $this->waitForElementPresent("fulfilled_date");
134 $this->select("product_name[0]", "label=Coffee Mug ( MUG-101 )");
135 $this->select("product_name[1]", "label=Black");
136 $this->webtestFillDate('fulfilled_date');
137
138 // Clicking save.
139 $this->clickLink("_qf_Contribution_upload-bottom", 'civicrm-footer', FALSE);
140 // Is status message correct?
141 $this->waitForText('crm-notification-container', "The contribution record has been saved");
142 $this->waitForElementPresent("xpath=//form[@class='CRM_Contribute_Form_Search crm-search-form']/div[2]/table[2]/tbody/tr/td[8]/span//a[text()='View']");
143 $viewUrl = $this->parseURL($this->getAttribute("xpath=//form[@class='CRM_Contribute_Form_Search crm-search-form']/div[2]/table[2]/tbody/tr/td[8]/span//a[text()='View']@href"));
144 $id = $viewUrl['queryString']['id'];
145 $this->assertType('numeric', $id);
146
147 // click through to the Contribution view screen
148 $this->click("xpath=//div[@class='view-content']/table[2]/tbody/tr/td[8]/span/a[text()='View']");
149 $this->waitForElementPresent('_qf_ContributionView_cancel-bottom');
150
151 // verify Contribution created. Non-deductible amount derived from market value of selected 'sample' coffee mug premium (CRM-11956)
152 $verifyData = array(
153 'From' => $firstName . " Anderson",
154 'Financial Type' => 'Donation',
155 'Contribution Status' => 'Completed',
156 'Payment Method' => 'Check',
157 'Total Amount' => '$ 100.00',
158 'Non-deductible Amount' => '$ 12.50',
159 'Check Number' => 'check #1041',
160 );
161 foreach ($verifyData as $label => $value) {
162 $this->assertElementContainsText("xpath=//form[@id='ContributionView']//table/tbody/tr/td[text()='{$label}']/following-sibling::td", $value);
163 }
164
165 // check values of contribution record in the DB
166
167 $searchParams = array('id' => $id);
168 $compareParams = array(
169 'contact_id' => $cid,
170 'total_amount' => '100.00',
171 );
172 $this->assertDBCompareValues('CRM_Contribute_DAO_Contribution', $searchParams, $compareParams);
173
174 // go to soft creditor contact view page
175 $this->clickLink("css=table.crm-soft-credit-listing tbody tr td a");
176
177 // go to contribution tab
178 $this->waitForElementPresent("css=li#tab_contribute a");
179 $this->click("css=li#tab_contribute a");
180 $this->waitForElementPresent("link=Record Contribution (Check, Cash, EFT ...)");
181
182 // verify soft credit details
183 $expected = array(
184 4 => 'Donation',
185 2 => '100.00',
186 6 => 'Completed',
187 1 => "{$firstName} Anderson",
188 );
189 foreach ($expected as $value => $label) {
190 $this->assertElementContainsText("xpath=id('Search')/div[2]/table[2]/tbody//tr/td[$value]", $label);
191 }
192 }
193
194 }