diff --git a/tests/_data/eml/bounced_01.eml b/tests/_data/eml/bounced_01.eml new file mode 100644 index 000000000..002779d2c --- /dev/null +++ b/tests/_data/eml/bounced_01.eml @@ -0,0 +1,37 @@ +Return-path: +Received: from e107 by secure.awscloudservices.net with local (Exim 4.91) + (envelope-from ) + id 1hG9qV-0002Ux-RO + for bounce-newsletter@e107.org; Mon, 15 Apr 2019 15:12:59 -0700 +To: Bounce handler +Subject: Test Bounce +X-PHP-Script: www.e107.org/e107_admin/mailout.php for 98.160.237.154 +X-PHP-Originating-Script: 1010:class.phpmailer.php +Date: Mon, 15 Apr 2019 16:12:59 -0600 +From: "e107.org" +Message-ID: +X-Mailer: PHPMailer 5.2.27 (https://github.com/PHPMailer/PHPMailer) +X-e107-id: 99999999 +X-Bounce-Test: true +MIME-Version: 1.0 +Content-Type: multipart/alternative; + boundary="b1_b32e962004f61de78186edcc7a1c7e2e" +Content-Transfer-Encoding: 8bit + +This is a multi-part message in MIME format. + +--b1_b32e962004f61de78186edcc7a1c7e2e +Content-Type: text/plain; charset=us-ascii + +Test Bounce Email address + + +--b1_b32e962004f61de78186edcc7a1c7e2e +Content-Type: text/html; charset=us-ascii + +Test Bounce Email address + + + +--b1_b32e962004f61de78186edcc7a1c7e2e-- + diff --git a/tests/unit/e107BounceTest.php b/tests/unit/e107BounceTest.php new file mode 100644 index 000000000..cce9d0f86 --- /dev/null +++ b/tests/unit/e107BounceTest.php @@ -0,0 +1,70 @@ +bnc = $this->make('e107Bounce'); + } + catch(Exception $e) + { + $this->assertTrue(false, "Couldn't load e107Bounce object"); + } + + } + + public function testProcess() + { + $path = $icon = codecept_data_dir()."eml/bounced_01.eml"; + + $this->bnc->setSource($path); + $result = $this->bnc->process(false); + $this->assertEquals("99999999", $result); + } + + public function testSetUser_Bounced() + { + + } + + public function test__construct() + { + + } + + public function testGetHeader() + { + + } + + public function testMailRead() + { + + } + + + + + }