Eileen has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/335088 )

Change subject: Merge branch 'master' of 
https://gerrit.wikimedia.org/r/wikimedia/fundraising/crm into deployment
......................................................................

Merge branch 'master' of 
https://gerrit.wikimedia.org/r/wikimedia/fundraising/crm into deployment

3d77c71 Add index to nick_name field.
ea06847 Merge "Fix missing ct_id recovery"

Change-Id: Ifb3abdb1b0b43f57601ca2c2c4854fb6e9d440eb
---
D sites/all/modules/recurring_globalcollect/tests/RecurringGlobalCollectTest.php
1 file changed, 0 insertions(+), 210 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/wikimedia/fundraising/crm 
refs/changes/88/335088/1

diff --git 
a/sites/all/modules/recurring_globalcollect/tests/RecurringGlobalCollectTest.php
 
b/sites/all/modules/recurring_globalcollect/tests/RecurringGlobalCollectTest.php
deleted file mode 100644
index a569bb5..0000000
--- 
a/sites/all/modules/recurring_globalcollect/tests/RecurringGlobalCollectTest.php
+++ /dev/null
@@ -1,210 +0,0 @@
-<<<<<<< HEAD   (6b6f5d Merge branch 'master' into deployment)
-=======
-<?php
-
-/**
- * @group GlobalCollect
- */
-class RecurringGlobalCollectTest extends BaseWmfDrupalPhpUnitTestCase {
-       protected $subscriptionId;
-       protected $amount;
-       protected $contributions;
-       protected $contactId;
-       protected $contributionRecurId;
-
-       function setUp() {
-               parent::setUp();
-               civicrm_initialize();
-
-               // FIXME - but do we really want to stuff the autoloader with 
all of our test classes?
-               require_once( DRUPAL_ROOT . 
'/../vendor/wikimedia/donation-interface/tests/phpunit/includes/test_gateway/TestingGlobalCollectAdapter.php'
 );
-               global $wgDonationInterfaceGatewayAdapters,
-                       $wgDonationInterfaceForbiddenCountries,
-                       $wgDonationInterfacePriceFloor,
-                       $wgDonationInterfacePriceCeiling;
-
-               $wgDonationInterfaceGatewayAdapters['globalcollect'] = 
'TestingGlobalCollectAdapter';
-               $wgDonationInterfaceForbiddenCountries = array();
-               $wgDonationInterfacePriceFloor = 1;
-               $wgDonationInterfacePriceCeiling = 10000;
-
-               $this->subscriptionId = 'SUB-FOO-' . mt_rand();
-               $this->amount = '1.12';
-
-               $this->contributions = array();
-
-               $result = civicrm_api3( 'Contact', 'create', array(
-                       'first_name' => 'Testes',
-                       'contact_type' => 'Individual',
-               ) );
-               $this->contactId = $result['id'];
-
-               $result = civicrm_api3( 'ContributionRecur', 'create', array(
-                       'contact_id' => $this->contactId,
-                       'amount' => $this->amount,
-                       'frequency_interval' => 1,
-                       'frequency_unit' => 'month',
-                       'next_sched_contribution' => 
wmf_common_date_unix_to_civicrm(strtotime('+1 month')),
-                       'installments' => 0,
-                       'processor_id' => 1,
-                       'currency' => 'USD',
-                       'trxn_id' => "RECURRING GLOBALCOLLECT 
{$this->subscriptionId}",
-               ) );
-               $this->contributionRecurId = $result['id'];
-
-               $result = civicrm_api3( 'Contribution', 'create', array(
-                       'contact_id' => $this->contactId,
-                       'contribution_recur_id' => $this->contributionRecurId,
-                       'currency' => 'USD',
-                       'total_amount' => $this->amount,
-                       'contribution_type' => 'Cash',
-                       'payment_instrument' => 'Credit Card',
-                       'trxn_id' => 'RECURRING GLOBALCOLLECT 
STUB_ORIG_CONTRIB-' . mt_rand(),
-               ) );
-               $this->contributions[] = $result['id'];
-               wmf_civicrm_insert_contribution_tracking( '..rcc', 'civicrm', 
null, wmf_common_date_unix_to_sql( strtotime( 'now' ) ), $result['id'] );
-       }
-
-       function testChargeRecorded() {
-
-               // Get some extra access to the testing adapter :(
-               global $wgDonationInterfaceGatewayAdapters;
-               $wgDonationInterfaceGatewayAdapters['globalcollect'] = 
'TestingRecurringStubAdapter';
-
-               // Include using require_once rather than autoload because the 
file
-               // depends on a DonationInterface testing class we loaded above.
-               require_once __DIR__ . '/TestingRecurringStubAdapter.php';
-               TestingRecurringStubAdapter::$singletonDummyGatewayResponseCode 
= 'recurring-OK';
-
-               recurring_globalcollect_charge( $this->contributionRecurId );
-
-               $result = civicrm_api3( 'Contribution', 'get', array(
-                       'contact_id' => $this->contactId,
-               ) );
-               $this->assertEquals( 2, count( $result['values'] ) );
-               foreach ( $result['values'] as $contribution ) {
-                       if ( $contribution['id'] == $this->contributions[0] ) {
-                               // Skip assertions on the synthetic original 
contribution
-                               continue;
-                       }
-
-                       $this->assertEquals( 1,
-                               preg_match( "/^RECURRING GLOBALCOLLECT 
{$this->subscriptionId}-2\$/", $contribution['trxn_id'] ) );
-               }
-       }
-
-       public function testRecurringCharge() {
-               $init = array(
-                       'contribution_tracking_id' => mt_rand(),
-                       'amount' => '2345',
-                       'effort_id' => 2,
-                       'order_id' => '9998890004',
-                       'currency_code' => 'EUR',
-                       'payment_product' => '',
-               );
-               $gateway = DonationInterfaceFactory::createAdapter( 
'globalcollect', $init );
-
-               $gateway->setDummyGatewayResponseCode( 'recurring-OK' );
-
-               $result = $gateway->do_transaction( 'Recurring_Charge' );
-
-               $this->assertTrue( $result->getCommunicationStatus() );
-               $this->assertRegExp( '/SET_PAYMENT/', $result->getRawResponse() 
);
-       }
-
-       /**
-        * Can make a recurring payment
-        *
-        * @covers GlobalCollectAdapter::transactionRecurring_Charge
-        */
-       public function testDeclinedRecurringCharge() {
-               $init = array(
-                       'contribution_tracking_id' => mt_rand(),
-                       'amount' => '2345',
-                       'effort_id' => 2,
-                       'order_id' => '9998890004',
-                       'currency_code' => 'EUR',
-                       'payment_product' => '',
-               );
-               $gateway = DonationInterfaceFactory::createAdapter( 
'globalcollect', $init );
-
-               $gateway->setDummyGatewayResponseCode( 'recurring-declined' );
-
-               $result = $gateway->do_transaction( 'Recurring_Charge' );
-
-               $this->assertRegExp( '/GET_ORDERSTATUS/', 
$result->getRawResponse(),
-                       'Stopped after GET_ORDERSTATUS.' );
-               $this->assertEquals( 2, count( $gateway->curled ),
-                       'Expected 2 API calls' );
-               $this->assertEquals( FinalStatus::FAILED, 
$gateway->getFinalStatus() );
-       }
-
-       /**
-        * Throw errors if the payment is incomplete
-        *
-        * @covers GlobalCollectAdapter::transactionRecurring_Charge
-        */
-       public function testRecurringTimeout() {
-               $init = array(
-                       'contribution_tracking_id' => mt_rand(),
-                       'amount' => '2345',
-                       'effort_id' => 2,
-                       'order_id' => '9998890004',
-                       'currency_code' => 'EUR',
-                       'payment_product' => '',
-               );
-               $gateway = DonationInterfaceFactory::createAdapter( 
'globalcollect', $init );
-
-               $gateway->setDummyGatewayResponseCode( 'recurring-timeout' );
-
-               $result = $gateway->do_transaction( 'Recurring_Charge' );
-
-               $this->assertFalse( $result->getCommunicationStatus() );
-               $this->assertRegExp( '/GET_ORDERSTATUS/', 
$result->getRawResponse() );
-               // FIXME: This is a little funky--the transaction is actually 
pending-poke.
-               $this->assertEquals( FinalStatus::FAILED, 
$gateway->getFinalStatus() );
-       }
-
-       /**
-        * Can resume a recurring payment
-        *
-        * @covers GlobalCollectAdapter::transactionRecurring_Charge
-        */
-       public function testRecurringResume() {
-               $init = array(
-                       'contribution_tracking_id' => mt_rand(),
-                       'amount' => '2345',
-                       'effort_id' => 2,
-                       'order_id' => '9998890004',
-                       'currency_code' => 'EUR',
-                       'payment_product' => '',
-               );
-               $gateway = DonationInterfaceFactory::createAdapter( 
'globalcollect', $init );
-
-               $gateway->setDummyGatewayResponseCode( 'recurring-resume' );
-
-               $result = $gateway->do_transaction( 'Recurring_Charge' );
-
-               $this->assertTrue( $result->getCommunicationStatus() );
-               $this->assertRegExp( '/SET_PAYMENT/', $result->getRawResponse() 
);
-       }
-
-       /**
-        * Recover from missing ct_ids on all associated contributions
-        */
-       public function testBackfillContributionTracking() {
-               $id_list = implode( ',', $this->contributions );
-
-               $dbs = wmf_civicrm_get_dbs();
-               $dbs->push( 'donations' );
-               $query = "DELETE FROM {contribution_tracking} WHERE 
contribution_id IN( $id_list )";
-               db_query( $query );
-               $contribution_tracking_id = 
recurring_get_contribution_tracking_id( array(
-                       'txn_type' => 'subscr_payment',
-                       'subscr_id' => $this->subscriptionId,
-                       'payment_date' => strtotime( "now" ),
-               ) );
-               $this->assertNotEmpty( $contribution_tracking_id );
-       }
-}
->>>>>>> BRANCH (3d77c7 Add index to nick_name field.)

-- 
To view, visit https://gerrit.wikimedia.org/r/335088
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifb3abdb1b0b43f57601ca2c2c4854fb6e9d440eb
Gerrit-PatchSet: 1
Gerrit-Project: wikimedia/fundraising/crm
Gerrit-Branch: deployment
Gerrit-Owner: Eileen <emcnaugh...@wikimedia.org>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to