133 lines
4.4 KiB
PHP
133 lines
4.4 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
|
|
* Website: http://www.espocrm.com
|
|
*
|
|
* EspoCRM is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* EspoCRM is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
|
************************************************************************/
|
|
|
|
namespace tests\unit\Espo\Core\Htmlizer;
|
|
|
|
class HtmlizerTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
protected $htmlizer;
|
|
|
|
protected $fileManager;
|
|
|
|
protected $config;
|
|
|
|
protected $dateTime;
|
|
|
|
protected $number;
|
|
|
|
protected function setUp()
|
|
{
|
|
date_default_timezone_set('UTC');
|
|
|
|
$obj = new \StdClass();
|
|
|
|
$this->fileManager = $this->getMockBuilder('\\Espo\\Core\\Utils\\File\\Manager')->disableOriginalConstructor()->getMock();
|
|
$this->fileManager
|
|
->expects($this->any())
|
|
->method('putContents')
|
|
->will($this->returnCallback(function($fileName, $contents) use ($obj) {
|
|
$obj->contents = $contents;
|
|
}));
|
|
|
|
$this->fileManager
|
|
->expects($this->any())
|
|
->method('getPhpContents')
|
|
->will($this->returnCallback(function($fileName) use ($obj) {
|
|
$data = eval('?>' . $obj->contents . '<?php');
|
|
return $data;
|
|
}));
|
|
|
|
|
|
$this->fileManager
|
|
->expects($this->any())
|
|
->method('unlink');
|
|
|
|
|
|
$this->dateTime = new \Espo\Core\Utils\DateTime('MM/DD/YYYY', 'hh:mm A', 'Europe/Kiev');
|
|
$this->number = new \Espo\Core\Utils\NumberUtil('.', ',');
|
|
|
|
$this->htmlizer = new \Espo\Core\Htmlizer\Htmlizer($this->fileManager, $this->dateTime, $this->number);
|
|
}
|
|
|
|
protected function tearDown()
|
|
{
|
|
unset($this->htmlizer);
|
|
unset($this->fileManager);
|
|
unset($this->dateTime);
|
|
unset($this->number);
|
|
}
|
|
|
|
public function testRender()
|
|
{
|
|
$entity = new \tests\unit\testData\Entities\Test();
|
|
$entity->set('name', 'test');
|
|
$entity->set('date', '2015-09-15');
|
|
$entity->set('dateTime', '2015-09-15 10:00:00');
|
|
$entity->set('int', 3);
|
|
$entity->set('float', 3.5);
|
|
|
|
$item1 = new \StdClass();
|
|
$item1->value = 1;
|
|
|
|
$item2 = new \StdClass();
|
|
$item2->value = 2000.5;
|
|
|
|
$list = [$item1, $item2];
|
|
$entity->set('list', $list);
|
|
|
|
$template = "{{name}} test {{date}} {{dateTime}} {{#each list}}{{value}} {{/each}}{{int}} {{float}}";
|
|
$html = $this->htmlizer->render($entity, $template);
|
|
$this->assertEquals('test test 09/15/2015 09/15/2015 01:00 PM 1 2,000.50 3 3.50', $html);
|
|
|
|
|
|
$template = "{{float}}";
|
|
$entity->set('float', 3);
|
|
$html = $this->htmlizer->render($entity, $template);
|
|
$this->assertEquals('3', $html);
|
|
|
|
|
|
$template = "{{float}}";
|
|
$entity->set('float', 3);
|
|
$html = $this->htmlizer->render($entity, $template);
|
|
$this->assertEquals('3', $html);
|
|
|
|
$template = "{{float}}";
|
|
$entity->set('float', 10000.50);
|
|
$html = $this->htmlizer->render($entity, $template);
|
|
$this->assertEquals('10,000.50', $html);
|
|
|
|
$template = "{{int}}";
|
|
$entity->set('int', 3000);
|
|
$html = $this->htmlizer->render($entity, $template);
|
|
$this->assertEquals('3,000', $html);
|
|
|
|
}
|
|
}
|
|
|