jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/333823 )

Change subject: Merge branch 'master' into deployment
......................................................................


Merge branch 'master' into deployment

e93f367 Parse Express Checkout charge

Change-Id: Icb3bb3f4486b509ace163a6b933abbb5bec3f893
---
D PaymentProviders/PayPal/Tests/phpunit/CaptureIncomingMessageTest.php
1 file changed, 0 insertions(+), 197 deletions(-)

Approvals:
  jenkins-bot: Verified
  Ejegg: Looks good to me, approved



diff --git 
a/PaymentProviders/PayPal/Tests/phpunit/CaptureIncomingMessageTest.php 
b/PaymentProviders/PayPal/Tests/phpunit/CaptureIncomingMessageTest.php
deleted file mode 100644
index 42eeb73..0000000
--- a/PaymentProviders/PayPal/Tests/phpunit/CaptureIncomingMessageTest.php
+++ /dev/null
@@ -1,197 +0,0 @@
-<<<<<<< HEAD   (03880c Fix insecure uncaught exception logging)
-=======
-<?php
-namespace SmashPig\PaymentProviders\PayPal\Tests;
-
-use SmashPig\Core\Configuration;
-use SmashPig\Core\Context;
-use SmashPig\PaymentProviders\PayPal\Listener;
-use SmashPig\Tests\BaseSmashPigUnitTestCase;
-use SmashPig\Core\Http\Response;
-use SmashPig\Core\Http\Request;
-use SmashPig\Core\DataStores\KeyedOpaqueStorableObject;
-
-/**
- * Test the IPN listener which receives messages, stores and processes them.
- * @group PayPal
- */
-class CaptureIncomingMessageTest extends BaseSmashPigUnitTestCase {
-
-       /**
-        * @var Configuration
-        */
-       public $config;
-
-       static $fail_verification = false;
-       static $paypal_is_broken = false;
-
-       // filename and the queue it should get dropped in
-       static $message_data = array(
-               'web_accept.json' => 'verified',
-               'express_checkout.json' => 'verified',
-               'subscr_signup.json' => 'recurring',
-               'subscr_payment.json' => 'recurring',
-               'refund.json' => 'refund',
-               'chargeback_settlement.json' => 'refund',
-               // this should not actually get written to
-               // TODO 'new_case.json' => 'no-op',
-       );
-
-       static $messages = array();
-
-       public function setUp() {
-               parent::setUp();
-               $this->config = PayPalTestConfiguration::get();
-
-               // php-queue\PDO complains about pop() from non-existent table
-               $this->config->object( 'data-store/jobs-paypal' )
-                       ->createTable( 'jobs-paypal' );
-
-               Context::initWithLogger( $this->config );
-               foreach ( self::$message_data as $file => $type ) {
-                       self::$messages[] = array(
-                               'type' => $type,
-                               'payload' => json_decode(
-                                       file_get_contents( __DIR__ . 
'/../Data/' . $file ),
-                                       true
-                               )
-                       );
-               }
-       }
-
-       public function tearDown() {
-               self::$fail_verification = false;
-               self::$paypal_is_broken = false;
-               parent::tearDown();
-       }
-
-       private function capture( $msg ) {
-               $request = new Request( $msg );
-               $response = new Response;
-               $listener = new Listener;
-               return $listener->execute( $request, $response );
-       }
-
-       public function testCapture() {
-               foreach ( self::$messages as $msg ) {
-
-                       $this->capture( $msg['payload'] );
-
-                       $jobQueue = $this->config->object( 
'data-store/jobs-paypal' );
-                       $jobMessage = $jobQueue->pop();
-
-                       $this->assertEquals( $jobMessage['php-message-class'],
-                               'SmashPig\PaymentProviders\PayPal\Job' );
-
-                       $this->assertEquals( $jobMessage['payload'], 
$msg['payload'] );
-               }
-       }
-
-       public function testBlankMessage() {
-               $this->capture( array() );
-               $jobQueue = $this->config->object( 'data-store/jobs-paypal' );
-               $this->assertNull( $jobQueue->pop() );
-       }
-
-       public function testConsume() {
-               foreach ( self::$messages as $msg ) {
-                       $this->capture( $msg['payload'] );
-
-                       $jobQueue = $this->config->object( 
'data-store/jobs-paypal' );
-                       $jobMessage = $jobQueue->pop();
-
-                       $job = KeyedOpaqueStorableObject::fromJsonProxy(
-                               $jobMessage['php-message-class'],
-                               json_encode( $jobMessage )
-                       );
-
-                       $job->execute();
-
-                       $queue = $this->config->object( 'data-store/' . 
$msg['type'] );
-                       $queue->createTable( $msg['type'] );
-                       $message = $queue->pop();
-
-                       if ( $job->is_reject() ) {
-                               $this->assertEmpty( $message );
-                       } else {
-                               $this->assertNotEmpty( $message );
-                               if ( isset( 
$message['contribution_tracking_id'] ) ) {
-                                       $this->assertEquals( 
$message['contribution_tracking_id'], $message['order_id'] );
-                               }
-
-                               if ( isset( $message['supplemental_address_1'] 
) ) {
-                                       $this->assertNotEquals(
-                                               
$message['supplemental_address_1'],
-                                               "{$message['first_name']} 
{$message['last_name']}"
-                                       );
-                               }
-                       }
-
-               }
-       }
-
-       public function testFailedVerification() {
-               self::$fail_verification = true;
-               $jobMessage = array( 'txn_type' => 'fail' );
-               $this->assertFalse( $this->capture( $jobMessage ) );
-       }
-
-       // FIXME: not really testing anything. Would like to verify that it 
tried
-       // N times. Bubble that information up somehow.
-       public function testPayPalIsBroken() {
-               self::$paypal_is_broken = true;
-               $jobMessage = array( 'txn_type' => 'fail' );
-               $this->assertFalse( $this->capture( $jobMessage ) );
-       }
-
-       public function testConsumeExpressCheckout() {
-               $message = json_decode( file_get_contents( __DIR__ . 
'/../Data/express_checkout.json' ), true );
-
-               $this->capture( $message );
-
-               $jobQueue = $this->config->object( 'data-store/jobs-paypal' );
-               $jobMessage = $jobQueue->pop();
-
-               $job = KeyedOpaqueStorableObject::fromJsonProxy(
-                       $jobMessage['php-message-class'],
-                       json_encode( $jobMessage )
-               );
-
-               $job->execute();
-
-               $queue = $this->config->object( 'data-store/verified' );
-               $queue->createTable( 'verified' );
-               $message = $queue->pop();
-
-               $this->assertNotEmpty( $message );
-
-               $expected = array(
-                 'correlationId' => '',
-                 'date' => 1481144318,
-                 'txn_type' => 'express_checkout',
-                 'gateway_txn_id' => '3N2616476S0123456',
-                 'currency' => 'JPY',
-                 'contribution_tracking_id' => '123456',
-                 'email' => 'nob...@wikimedia.org',
-                 'first_name' => 'Fowl',
-                 'last_name' => 'Pond',
-                 'gross' => '150',
-                 'fee' => '43',
-                 'order_id' => '123456',
-                 'gateway' => 'paypal_ec',
-                 'source_name' => 'SmashPig',
-                 'source_type' => 'listener',
-                 #'source_host' => 'rust',
-                 #'source_run_id' => 26345,
-                 'source_version' => 'unknown',
-                 #'source_enqueued_time' => 1481145747,
-               );
-
-               unset( $message['source_host'] );
-               unset( $message['source_run_id'] );
-               unset( $message['source_enqueued_time'] );
-
-               $this->assertEquals( $expected, $message );
-       }
-}
->>>>>>> BRANCH (e93f36 Parse Express Checkout charge)

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Icb3bb3f4486b509ace163a6b933abbb5bec3f893
Gerrit-PatchSet: 1
Gerrit-Project: wikimedia/fundraising/SmashPig
Gerrit-Branch: deployment
Gerrit-Owner: Ejegg <eeggles...@wikimedia.org>
Gerrit-Reviewer: Ejegg <eeggles...@wikimedia.org>
Gerrit-Reviewer: jenkins-bot <>

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

Reply via email to