2015-08-16 00:32:31 +08:00
|
|
|
<?php
|
2016-07-21 23:09:48 +08:00
|
|
|
|
2016-08-09 17:54:42 +08:00
|
|
|
use PrivateBin\I18n;
|
|
|
|
use PrivateBin\View;
|
2016-07-21 23:09:48 +08:00
|
|
|
|
2016-08-09 17:54:42 +08:00
|
|
|
class ViewTest extends PHPUnit_Framework_TestCase
|
2015-08-16 00:32:31 +08:00
|
|
|
{
|
|
|
|
private static $error = 'foo bar';
|
|
|
|
|
|
|
|
private static $status = '!*#@?$+';
|
|
|
|
|
2016-07-19 20:02:26 +08:00
|
|
|
private static $formatters = array(
|
2016-10-29 16:24:08 +08:00
|
|
|
'plaintext' => 'Plain Text',
|
2016-07-19 20:02:26 +08:00
|
|
|
'syntaxhighlighting' => 'Source Code',
|
2016-10-29 16:24:08 +08:00
|
|
|
'markdown' => 'Markdown',
|
2016-07-19 20:02:26 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
private static $formatter_default = 'plaintext';
|
|
|
|
|
2015-08-16 00:32:31 +08:00
|
|
|
private static $expire = array(
|
2016-10-29 16:24:08 +08:00
|
|
|
'5min' => '5 minutes',
|
2015-08-16 00:32:31 +08:00
|
|
|
'1hour' => '1 hour',
|
|
|
|
'never' => 'Never',
|
|
|
|
);
|
|
|
|
|
|
|
|
private static $expire_default = '1hour';
|
|
|
|
|
|
|
|
private static $version = 'Version 1.2.3';
|
|
|
|
|
2017-01-08 15:28:05 +08:00
|
|
|
private $_content = array();
|
2015-08-16 00:32:31 +08:00
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
/* Setup Routine */
|
2016-08-09 17:54:42 +08:00
|
|
|
$page = new View;
|
2017-01-01 23:33:11 +08:00
|
|
|
$page->assign('NAME', 'PrivateBinTest');
|
2020-07-04 03:00:42 +08:00
|
|
|
$page->assign('BASEPATH', '');
|
2015-08-16 00:32:31 +08:00
|
|
|
$page->assign('ERROR', self::$error);
|
|
|
|
$page->assign('STATUS', self::$status);
|
|
|
|
$page->assign('VERSION', self::$version);
|
2015-08-31 06:01:35 +08:00
|
|
|
$page->assign('DISCUSSION', true);
|
|
|
|
$page->assign('OPENDISCUSSION', true);
|
2015-09-12 23:33:16 +08:00
|
|
|
$page->assign('MARKDOWN', true);
|
2015-08-16 00:32:31 +08:00
|
|
|
$page->assign('SYNTAXHIGHLIGHTING', true);
|
2015-08-18 05:18:33 +08:00
|
|
|
$page->assign('SYNTAXHIGHLIGHTINGTHEME', 'sons-of-obsidian');
|
2016-07-19 20:02:26 +08:00
|
|
|
$page->assign('FORMATTER', self::$formatters);
|
|
|
|
$page->assign('FORMATTERDEFAULT', self::$formatter_default);
|
2015-08-31 06:01:35 +08:00
|
|
|
$page->assign('BURNAFTERREADINGSELECTED', false);
|
|
|
|
$page->assign('PASSWORD', true);
|
2015-09-17 04:51:48 +08:00
|
|
|
$page->assign('FILEUPLOAD', false);
|
2016-08-16 17:11:03 +08:00
|
|
|
$page->assign('ZEROBINCOMPATIBILITY', false);
|
2020-10-13 13:28:35 +08:00
|
|
|
$page->assign('INFO', 'example');
|
2015-08-18 05:18:33 +08:00
|
|
|
$page->assign('NOTICE', 'example');
|
2015-09-19 23:23:10 +08:00
|
|
|
$page->assign('LANGUAGESELECTION', '');
|
2017-01-01 23:33:11 +08:00
|
|
|
$page->assign('LANGUAGES', I18n::getLanguageLabels(I18n::getAvailableLanguages()));
|
2015-08-16 00:32:31 +08:00
|
|
|
$page->assign('EXPIRE', self::$expire);
|
|
|
|
$page->assign('EXPIREDEFAULT', self::$expire_default);
|
2016-01-31 16:56:06 +08:00
|
|
|
$page->assign('URLSHORTENER', '');
|
2018-01-02 14:56:46 +08:00
|
|
|
$page->assign('QRCODE', true);
|
2019-06-18 03:40:37 +08:00
|
|
|
$page->assign('HTTPWARNING', true);
|
2019-09-20 01:14:48 +08:00
|
|
|
$page->assign('HTTPSLINK', 'https://example.com/');
|
2019-06-24 01:45:40 +08:00
|
|
|
$page->assign('COMPRESSION', 'zlib');
|
2017-01-08 15:28:05 +08:00
|
|
|
|
|
|
|
$dir = dir(PATH . 'tpl');
|
|
|
|
while (false !== ($file = $dir->read())) {
|
|
|
|
if (substr($file, -4) === '.php') {
|
|
|
|
$template = substr($file, 0, -4);
|
|
|
|
ob_start();
|
|
|
|
$page->draw($template);
|
|
|
|
$this->_content[$template] = ob_get_contents();
|
|
|
|
ob_end_clean();
|
|
|
|
}
|
|
|
|
}
|
2017-01-08 17:02:07 +08:00
|
|
|
// check bootstrap variants
|
|
|
|
$template = 'bootstrap-page';
|
|
|
|
ob_start();
|
|
|
|
$page->draw($template);
|
|
|
|
$this->_content[$template] = ob_get_contents();
|
|
|
|
ob_end_clean();
|
|
|
|
foreach (array('-dark', '-compact') as $suffix) {
|
|
|
|
$template = 'bootstrap' . $suffix;
|
|
|
|
ob_start();
|
|
|
|
$page->draw($template);
|
|
|
|
$this->_content[$template] = ob_get_contents();
|
|
|
|
ob_end_clean();
|
|
|
|
|
|
|
|
$template .= '-page';
|
|
|
|
ob_start();
|
|
|
|
$page->draw($template);
|
|
|
|
$this->_content[$template] = ob_get_contents();
|
|
|
|
ob_end_clean();
|
|
|
|
}
|
2015-08-16 00:32:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
/* Tear Down Routine */
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testTemplateRendersCorrectly()
|
|
|
|
{
|
2017-01-08 15:28:05 +08:00
|
|
|
foreach ($this->_content as $template => $content) {
|
|
|
|
$this->assertRegExp(
|
2017-03-12 21:16:08 +08:00
|
|
|
'#<div[^>]+id="errormessage"[^>]*>.*' . self::$error . '#s',
|
2017-01-08 15:28:05 +08:00
|
|
|
$content,
|
|
|
|
$template . ': outputs error correctly'
|
|
|
|
);
|
|
|
|
$this->assertRegExp(
|
|
|
|
'#<[^>]+id="password"[^>]*>#',
|
|
|
|
$content,
|
|
|
|
$template . ': password available if configured'
|
|
|
|
);
|
|
|
|
$this->assertRegExp(
|
|
|
|
'#<input[^>]+id="opendiscussion"[^>]*checked="checked"[^>]*>#',
|
|
|
|
$content,
|
|
|
|
$template . ': checked discussion if configured'
|
|
|
|
);
|
|
|
|
$this->assertRegExp(
|
2017-02-25 16:35:55 +08:00
|
|
|
'#<[^>]+id="opendiscussionoption"[^>]*>#',
|
2017-01-08 15:28:05 +08:00
|
|
|
$content,
|
|
|
|
$template . ': discussions available if configured'
|
|
|
|
);
|
|
|
|
// testing version number in JS address, since other instances may not be present in different templates
|
|
|
|
$this->assertRegExp(
|
|
|
|
'#<script[^>]+src="js/privatebin.js\\?' . rawurlencode(self::$version) . '"[^>]*>#',
|
|
|
|
$content,
|
|
|
|
$template . ': outputs version correctly'
|
|
|
|
);
|
|
|
|
}
|
2015-08-16 00:32:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-07-19 20:02:26 +08:00
|
|
|
* @expectedException Exception
|
|
|
|
* @expectedExceptionCode 80
|
2015-08-16 00:32:31 +08:00
|
|
|
*/
|
|
|
|
public function testMissingTemplate()
|
|
|
|
{
|
2016-08-09 17:54:42 +08:00
|
|
|
$test = new View;
|
2015-08-16 00:32:31 +08:00
|
|
|
$test->draw('123456789 does not exist!');
|
|
|
|
}
|
|
|
|
}
|