0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 10:02:14 +02:00
PHPMailer/test/phpmailerLangTest.php

75 lines
2.2 KiB
PHP
Raw Normal View History

<?php
/**
* PHPMailer - language file tests
2013-12-16 14:28:57 +01:00
*
2016-04-07 11:04:03 +02:00
* PHP version 5.5
* @package PHPMailer
2013-12-16 14:28:57 +01:00
* @author Marcus Bointon <phpmailer@synchromedia.co.uk>
2015-11-10 14:44:16 +01:00
* @author Andy Prevost
2016-04-07 11:04:03 +02:00
* @copyright 2010 - 2016 Marcus Bointon
* @copyright 2004 - 2009 Andy Prevost
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
*/
2015-11-09 19:09:13 +01:00
namespace PHPMailer\PHPMailer;
/**
* PHPMailer - PHP email transport unit test class
* Performs authentication tests
*/
2015-11-09 19:09:13 +01:00
class PHPMailerLangTest extends \PHPUnit_Framework_TestCase
{
/**
2015-11-09 19:09:13 +01:00
* Holds a PHPMailer instance.
* @private
* @var PHPMailer
*/
public $Mail;
/**
* @var string Default include path
*/
public $INCLUDE_DIR = '../';
/**
* Run before each test is started.
*/
public function setUp()
{
$this->Mail = new PHPMailer;
}
/**
* Test language files for missing and excess translations
* All languages are compared with English
2013-12-16 14:28:57 +01:00
* @group languages
*/
public function testTranslations()
{
$this->Mail->setLanguage('en');
$definedStrings = $this->Mail->getTranslations();
$err = '';
2015-11-09 19:09:13 +01:00
foreach (new \DirectoryIterator('../language') as $fileInfo) {
if ($fileInfo->isDot()) {
continue;
}
2015-11-10 13:45:13 +01:00
$matches = [];
//Only look at language files, ignore anything else in there
if (preg_match('/^phpmailer\.lang-([a-z_]{2,})\.php$/', $fileInfo->getFilename(), $matches)) {
$lang = $matches[1]; //Extract language code
2015-11-10 13:45:13 +01:00
$PHPMAILER_LANG = []; //Language strings get put in here
include $fileInfo->getPathname(); //Get language strings
$missing = array_diff(array_keys($definedStrings), array_keys($PHPMAILER_LANG));
$extra = array_diff(array_keys($PHPMAILER_LANG), array_keys($definedStrings));
if (!empty($missing)) {
$err .= "\nMissing translations in $lang: " . implode(', ', $missing);
}
if (!empty($extra)) {
$err .= "\nExtra translations in $lang: " . implode(', ', $extra);
}
}
}
$this->assertEmpty($err, $err);
}
}