2015-08-15 18:32:31 +02:00
|
|
|
<?php
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2016-08-09 11:54:42 +02:00
|
|
|
use PrivateBin\I18n;
|
|
|
|
use PrivateBin\View;
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2016-08-09 11:54:42 +02:00
|
|
|
class ViewTest extends PHPUnit_Framework_TestCase
|
2015-08-15 18:32:31 +02:00
|
|
|
{
|
|
|
|
private static $error = 'foo bar';
|
|
|
|
|
|
|
|
private static $status = '!*#@?$+';
|
|
|
|
|
2016-07-19 14:02:26 +02:00
|
|
|
private static $formatters = array(
|
2016-10-29 10:24:08 +02:00
|
|
|
'plaintext' => 'Plain Text',
|
2016-07-19 14:02:26 +02:00
|
|
|
'syntaxhighlighting' => 'Source Code',
|
2016-10-29 10:24:08 +02:00
|
|
|
'markdown' => 'Markdown',
|
2016-07-19 14:02:26 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
private static $formatter_default = 'plaintext';
|
|
|
|
|
2015-08-15 18:32:31 +02:00
|
|
|
private static $expire = array(
|
2016-10-29 10:24:08 +02:00
|
|
|
'5min' => '5 minutes',
|
2015-08-15 18:32:31 +02:00
|
|
|
'1hour' => '1 hour',
|
|
|
|
'never' => 'Never',
|
|
|
|
);
|
|
|
|
|
|
|
|
private static $expire_default = '1hour';
|
|
|
|
|
|
|
|
private static $version = 'Version 1.2.3';
|
|
|
|
|
2017-01-08 08:28:05 +01:00
|
|
|
private $_content = array();
|
2015-08-15 18:32:31 +02:00
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
/* Setup Routine */
|
2016-08-09 11:54:42 +02:00
|
|
|
$page = new View;
|
2017-01-01 16:33:11 +01:00
|
|
|
$page->assign('NAME', 'PrivateBinTest');
|
2020-07-03 21:00:42 +02:00
|
|
|
$page->assign('BASEPATH', '');
|
2015-08-15 18:32:31 +02:00
|
|
|
$page->assign('ERROR', self::$error);
|
|
|
|
$page->assign('STATUS', self::$status);
|
|
|
|
$page->assign('VERSION', self::$version);
|
2015-08-31 00:01:35 +02:00
|
|
|
$page->assign('DISCUSSION', true);
|
|
|
|
$page->assign('OPENDISCUSSION', true);
|
2015-09-12 17:33:16 +02:00
|
|
|
$page->assign('MARKDOWN', true);
|
2015-08-15 18:32:31 +02:00
|
|
|
$page->assign('SYNTAXHIGHLIGHTING', true);
|
2015-08-17 23:18:33 +02:00
|
|
|
$page->assign('SYNTAXHIGHLIGHTINGTHEME', 'sons-of-obsidian');
|
2016-07-19 14:02:26 +02:00
|
|
|
$page->assign('FORMATTER', self::$formatters);
|
|
|
|
$page->assign('FORMATTERDEFAULT', self::$formatter_default);
|
2015-08-31 00:01:35 +02:00
|
|
|
$page->assign('BURNAFTERREADINGSELECTED', false);
|
|
|
|
$page->assign('PASSWORD', true);
|
2015-09-16 22:51:48 +02:00
|
|
|
$page->assign('FILEUPLOAD', false);
|
2016-08-16 11:11:03 +02:00
|
|
|
$page->assign('ZEROBINCOMPATIBILITY', false);
|
2020-10-13 07:28:35 +02:00
|
|
|
$page->assign('INFO', 'example');
|
2015-08-17 23:18:33 +02:00
|
|
|
$page->assign('NOTICE', 'example');
|
2015-09-19 17:23:10 +02:00
|
|
|
$page->assign('LANGUAGESELECTION', '');
|
2017-01-01 16:33:11 +01:00
|
|
|
$page->assign('LANGUAGES', I18n::getLanguageLabels(I18n::getAvailableLanguages()));
|
2015-08-15 18:32:31 +02:00
|
|
|
$page->assign('EXPIRE', self::$expire);
|
|
|
|
$page->assign('EXPIREDEFAULT', self::$expire_default);
|
2016-01-31 09:56:06 +01:00
|
|
|
$page->assign('URLSHORTENER', '');
|
2018-01-02 07:56:46 +01:00
|
|
|
$page->assign('QRCODE', true);
|
2019-06-17 21:40:37 +02:00
|
|
|
$page->assign('HTTPWARNING', true);
|
2019-09-19 19:14:48 +02:00
|
|
|
$page->assign('HTTPSLINK', 'https://example.com/');
|
2019-06-23 19:45:40 +02:00
|
|
|
$page->assign('COMPRESSION', 'zlib');
|
2017-01-08 08:28:05 +01: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 10:02:07 +01: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-15 18:32:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
/* Tear Down Routine */
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testTemplateRendersCorrectly()
|
|
|
|
{
|
2017-01-08 08:28:05 +01:00
|
|
|
foreach ($this->_content as $template => $content) {
|
|
|
|
$this->assertRegExp(
|
2017-03-12 14:16:08 +01:00
|
|
|
'#<div[^>]+id="errormessage"[^>]*>.*' . self::$error . '#s',
|
2017-01-08 08:28:05 +01: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 09:35:55 +01:00
|
|
|
'#<[^>]+id="opendiscussionoption"[^>]*>#',
|
2017-01-08 08:28:05 +01: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-15 18:32:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-07-19 14:02:26 +02:00
|
|
|
* @expectedException Exception
|
|
|
|
* @expectedExceptionCode 80
|
2015-08-15 18:32:31 +02:00
|
|
|
*/
|
|
|
|
public function testMissingTemplate()
|
|
|
|
{
|
2016-08-09 11:54:42 +02:00
|
|
|
$test = new View;
|
2015-08-15 18:32:31 +02:00
|
|
|
$test->draw('123456789 does not exist!');
|
|
|
|
}
|
|
|
|
}
|