1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-14 02:24:08 +02:00

Test fixes. Email arraySet() test added.

This commit is contained in:
Cameron
2020-08-11 08:30:00 -07:00
parent 0f02e9a9a2
commit 370fdb13f6
6 changed files with 156 additions and 10 deletions

View File

@@ -0,0 +1,135 @@
<?php
/**
* e107 website system
*
* Copyright (C) 2008-2020 e107.org
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
class e107EmailTest extends \Codeception\Test\Unit
{
/** @var e107Email */
protected $eml;
protected function _before()
{
try
{
$this->eml = $this->make('e107Email');
}
catch(Exception $e)
{
$this->assertTrue(false, "Couldn't load e107Email object");
}
$this->eml->__construct();
}
/*
public function testAllSent()
{
}
public function testProcessShortcodes()
{
}
*/
public function testArraySet()
{
$eml = array(
'subject' => "[URGENT EXAMPLE]",
'sender_email' => "noreply@test.com",
'sender_name' => "Test Person",
'replyto' => "",
'html' => true,
'priority' => 1,
'template' => 'default',
'body' => "This is the body text",
'cc' => ''
);
$this->eml->arraySet($eml);
$this->assertStringContainsString("noreply@test.com", $this->eml->From);
$this->assertStringContainsString("Test Person", $this->eml->FromName);
$this->assertStringContainsString("e107: [URGENT EXAMPLE] ", $this->eml->Subject);
$this->assertStringContainsString("This is the body text", $this->eml->Body);
$this->assertStringContainsString("<h4 class='sitename'><a href='", $this->eml->Body);
$this->assertStringNotContainsString('{MEDIA1}', $this->eml->Body);
}
/*
public function testMakePrintableAddress()
{
}
public function testPreview()
{
}
public function testAddInlineImages()
{
}
public function testMsgHTML()
{
}
public function testSendEmail()
{
$eml = array(
'subject' => "[URGENT EXAMPLE] ",
'sender_email' => "noreply@test.com",
'sender_name' => "Test",
'replyto' => "",
'html' => true,
'priority' => 1,
'template' => 'default',
'body' => "This is the body text",
'cc' => ''
);
$this->eml->sendEmail('test@nowhere.com',"This is the subject", $eml);
}
public function testSetDebug()
{
}
public function testAddAddressList()
{
}
public function testAttach()
{
}
public function testMakeBody()
{
}
*/
}

View File

@@ -298,6 +298,13 @@
public function testIsValidAddonMarkup()
{
$content = '<?php
';
$result = $this->ep->isValidAddonMarkup($content);
$this->assertTrue($result);
$content = ' <?php ';
$result = $this->ep->isValidAddonMarkup($content);
$this->assertFalse($result);