Prepare the code to test properly sendtomail.php

This commit is contained in:
Sébastien Lucas 2014-02-21 08:15:24 +01:00
parent 15fe0401bc
commit 9753938a2e
3 changed files with 92 additions and 12 deletions

View file

@ -1,4 +1,11 @@
<?php
require_once (dirname(__FILE__) . "/../config_default.php");
$config['calibre_directory'] = dirname(__FILE__) . "/BaseWithSomeBooks/";
$config['calibre_directory'] = dirname(__FILE__) . "/BaseWithSomeBooks/";
$config['cops_mail_configuration'] = array( "smtp.host" => "smtp.free.fr",
"smtp.username" => "",
"smtp.password" => "",
"smtp.secure" => "",
"address.from" => "cops@slucas.fr"
);

56
test/mailTest.php Normal file
View file

@ -0,0 +1,56 @@
<?php
/**
* COPS (Calibre OPDS PHP Server) test file
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Sébastien Lucas <sebastien@slucas.fr>
*/
require_once (dirname(__FILE__) . "/config_test.php");
require_once (dirname(__FILE__) . "/../book.php");
require_once (dirname(__FILE__) . "/../sendtomail.php");
class MailTest extends PHPUnit_Framework_TestCase
{
public function testCheckConfiguration () {
global $config;
$this->assertFalse(checkConfiguration ());
}
public function testCheckConfigurationNull () {
global $config;
$config['cops_mail_configuration'] = NULL;
$this->assertStringStartsWith("NOK", checkConfiguration ());
}
public function testCheckConfigurationNotArray () {
global $config;
$config['cops_mail_configuration'] = "Test";
$this->assertStringStartsWith("NOK", checkConfiguration ());
}
public function testCheckConfigurationSmtpEmpty () {
global $config;
$config['cops_mail_configuration']["smtp.host"] = "";
$this->assertStringStartsWith("NOK", checkConfiguration ());
}
public function testCheckConfigurationEmailEmpty () {
global $config;
$config['cops_mail_configuration']["address.from"] = "";
$this->assertStringStartsWith("NOK", checkConfiguration ());
}
public function testCheckConfigurationEmailNotValid () {
global $config;
$config['cops_mail_configuration']["address.from"] = "a";
$this->markTestIncomplete();
}
}