Merge pull request #15526 from civicrm/5.19
[civicrm-core.git] / tests / phpunit / CRM / Financial / BAO / PaymentProcessorTest.php
CommitLineData
c294dbbc
SL
1<?php
2/*
3 +--------------------------------------------------------------------+
2fe49090 4 | CiviCRM version 5 |
c294dbbc 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
c294dbbc
SL
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 * Class CRM_Financial_BAO_PaymentProcessorTypeTest
30 * @group headless
31 */
8d79abbe 32class CRM_Financial_BAO_PaymentProcessorTest extends CiviUnitTestCase {
39b959db 33
c294dbbc
SL
34 public function setUp() {
35 parent::setUp();
36 }
37
38 /**
39 * Check method create()
40 */
41 public function testGetCreditCards() {
9099cab3 42 $params = [
c294dbbc
SL
43 'name' => 'API_Test_PP_Type',
44 'title' => 'API Test Payment Processor Type',
45 'class_name' => 'CRM_Core_Payment_APITest',
46 'billing_mode' => 'form',
47 'payment_processor_type_id' => 1,
48 'is_recur' => 0,
49 'domain_id' => 1,
9099cab3 50 'accepted_credit_cards' => json_encode([
c294dbbc
SL
51 'Visa' => 'Visa',
52 'Mastercard' => 'Mastercard',
53 'Amex' => 'Amex',
9099cab3
CW
54 ]),
55 ];
c294dbbc 56 $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::create($params);
9099cab3 57 $expectedCards = [
c294dbbc
SL
58 'Visa' => 'Visa',
59 'Mastercard' => 'Mastercard',
60 'Amex' => 'Amex',
9099cab3 61 ];
c294dbbc
SL
62 $cards = CRM_Financial_BAO_PaymentProcessor::getCreditCards($paymentProcessor->id);
63 $this->assertEquals($cards, $expectedCards, 'Verify correct credit card types are returned');
64 }
65
31eddd0d 66 /**
67 * Test the processor retrieval function.
68 *
69 * @throws \CiviCRM_API3_Exception
70 */
71 public function testGetProcessors() {
72 $testProcessor = $this->dummyProcessorCreate();
73 $testProcessorID = $testProcessor->getID();
74 $liveProcessorID = $testProcessorID + 1;
75
76 $processors = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors(['BackOffice', 'TestMode']);
c5c6e048 77 $this->markTestIncomplete('Not working yet :-(');
31eddd0d 78 $this->assertEquals([$testProcessorID, 0], array_keys($processors), 'Only the test processor and the manual processor should be returned');
79
80 $processors = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors(['BackOffice', 'TestMode'], [$liveProcessorID]);
81 $this->assertEquals([$testProcessorID], array_keys($processors), 'Only the test processor should be returned');
82
83 $processors = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors(['BackOffice', 'TestMode'], [$testProcessorID]);
84 $this->assertEquals([$testProcessorID], array_keys($processors), 'Only the test processor should be returned');
85
86 $processors = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors(['BackOffice', 'LiveMode']);
87 $this->assertEquals([$liveProcessorID, 0], array_keys($processors), 'Only the Live processor and the manual processor should be returned');
88
89 $processors = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors(['BackOffice', 'LiveMode'], [$liveProcessorID]);
90 $this->assertEquals([$liveProcessorID], array_keys($processors), 'Only the Live processor should be returned');
91
92 }
93
c294dbbc 94}