Update Unit test styling to cover the future coder version
[civicrm-core.git] / tests / phpunit / CRM / Contribute / Form / Task / InvoiceTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 * Test APIv3 civicrm_contribute_* functions
30 *
31 * @package CiviCRM_APIv3
32 * @subpackage API_Contribution
33 * @group headless
34 */
35 class CRM_Contribute_Form_Task_InvoiceTest extends CiviUnitTestCase {
36
37 protected $_individualId;
38
39 /**
40 * Clean up after each test.
41 */
42 public function tearDown() {
43 $this->quickCleanUpFinancialEntities();
44 CRM_Utils_Hook::singleton()->reset();
45 }
46
47 /**
48 * CRM-17815 - Test due date and payment advice block in generated
49 * invoice pdf for pending and completed contributions
50 */
51 public function testInvoiceForDueDate() {
52 $contactIds = array();
53 $params = array(
54 'output' => 'pdf_invoice',
55 'forPage' => 1,
56 );
57
58 $this->_individualId = $this->individualCreate();
59 $contributionParams = array(
60 'contact_id' => $this->_individualId,
61 'total_amount' => 100,
62 'financial_type_id' => 'Donation',
63 );
64 $result = $this->callAPISuccess('Contribution', 'create', $contributionParams);
65
66 $contributionParams['contribution_status_id'] = 2;
67 $contributionParams['is_pay_later'] = 1;
68 $contribution = $this->callAPISuccess('Contribution', 'create', $contributionParams);
69
70 $contribution3 = $this->callAPISuccess('Contribution', 'create', $contributionParams);
71 $this->callAPISuccess('Payment', 'create', array('total_amount' => 8, 'contribution_id' => $contribution3['id']));
72
73 $this->callAPISuccess('Contribution', 'create', array('id' => $contribution3['id'], 'is_pay_later' => 0));
74
75 $contributionIDs = array(
76 array($result['id']),
77 array($contribution['id']),
78 array($contribution3['id']),
79 );
80
81 $contactIds[] = $this->_individualId;
82 foreach ($contributionIDs as $contributionID) {
83 $invoiceHTML[current($contributionID)] = CRM_Contribute_Form_Task_Invoice::printPDF($contributionID, $params, $contactIds);
84 }
85
86 $this->assertNotContains('Due Date', $invoiceHTML[$result['id']]);
87 $this->assertNotContains('PAYMENT ADVICE', $invoiceHTML[$result['id']]);
88
89 $this->assertContains('Due Date', $invoiceHTML[$contribution['id']]);
90 $this->assertContains('PAYMENT ADVICE', $invoiceHTML[$contribution['id']]);
91
92 $this->assertContains('AMOUNT DUE: </font></b></td>
93 <td style = "padding-left:34px;text-align:right;"><b><font size = "1">$ 92.00</font></b></td>', $invoiceHTML[$contribution3['id']]);
94
95 }
96
97 }