2015-10-11 18:50:48 +02:00
|
|
|
<?php
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2018-07-29 16:15:52 +02:00
|
|
|
use PrivateBin\Controller;
|
2016-08-09 11:54:42 +02:00
|
|
|
use PrivateBin\Data\Filesystem;
|
2016-10-29 10:24:08 +02:00
|
|
|
use PrivateBin\Persistence\ServerSalt;
|
2016-08-09 11:54:42 +02:00
|
|
|
use PrivateBin\Request;
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2016-08-09 11:54:42 +02:00
|
|
|
class JsonApiTest extends PHPUnit_Framework_TestCase
|
2015-10-11 18:50:48 +02:00
|
|
|
{
|
|
|
|
protected $_model;
|
|
|
|
|
2016-08-09 11:54:42 +02:00
|
|
|
protected $_path;
|
|
|
|
|
2015-10-11 18:50:48 +02:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
/* Setup Routine */
|
2016-10-29 10:24:08 +02:00
|
|
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->_model = Filesystem::getInstance(array('dir' => $this->_path));
|
2021-06-08 22:01:29 +02:00
|
|
|
ServerSalt::setStore($this->_model);
|
2015-10-11 18:50:48 +02:00
|
|
|
|
2016-10-29 10:24:08 +02:00
|
|
|
$_POST = array();
|
|
|
|
$_GET = array();
|
2015-10-11 18:50:48 +02:00
|
|
|
$_SERVER = array();
|
2016-08-09 11:54:42 +02:00
|
|
|
if ($this->_model->exists(Helper::getPasteId())) {
|
|
|
|
$this->_model->delete(Helper::getPasteId());
|
2016-07-26 08:19:35 +02:00
|
|
|
}
|
2017-10-08 11:03:17 +02:00
|
|
|
$options = parse_ini_file(CONF_SAMPLE, true);
|
2016-08-09 11:54:42 +02:00
|
|
|
$options['model_options']['dir'] = $this->_path;
|
|
|
|
Helper::confBackup();
|
|
|
|
Helper::createIniFile(CONF, $options);
|
2015-10-11 18:50:48 +02:00
|
|
|
}
|
|
|
|
|
2017-10-08 11:03:17 +02:00
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
/* Tear Down Routine */
|
|
|
|
unlink(CONF);
|
|
|
|
Helper::confRestore();
|
|
|
|
Helper::rmDir($this->_path);
|
|
|
|
}
|
|
|
|
|
2015-10-11 18:50:48 +02:00
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
*/
|
|
|
|
public function testCreate()
|
|
|
|
{
|
2016-10-29 10:24:08 +02:00
|
|
|
$options = parse_ini_file(CONF, true);
|
2015-10-11 18:50:48 +02:00
|
|
|
$options['traffic']['limit'] = 0;
|
2016-08-09 11:54:42 +02:00
|
|
|
Helper::createIniFile(CONF, $options);
|
2019-05-13 22:31:52 +02:00
|
|
|
$paste = Helper::getPasteJson();
|
|
|
|
$file = tempnam(sys_get_temp_dir(), 'FOO');
|
|
|
|
file_put_contents($file, $paste);
|
|
|
|
Request::setInputStream($file);
|
2015-10-11 18:50:48 +02:00
|
|
|
$_SERVER['HTTP_X_REQUESTED_WITH'] = 'JSONHttpRequest';
|
2016-10-29 10:24:08 +02:00
|
|
|
$_SERVER['REQUEST_METHOD'] = 'POST';
|
|
|
|
$_SERVER['REMOTE_ADDR'] = '::1';
|
2019-05-11 22:18:35 +02:00
|
|
|
$_SERVER['REQUEST_URI'] = '/';
|
2015-10-11 18:50:48 +02:00
|
|
|
ob_start();
|
2018-07-29 15:17:35 +02:00
|
|
|
new Controller;
|
2015-10-11 18:50:48 +02:00
|
|
|
$content = ob_get_contents();
|
2016-08-02 10:29:25 +02:00
|
|
|
ob_end_clean();
|
2015-10-11 18:50:48 +02:00
|
|
|
$response = json_decode($content, true);
|
|
|
|
$this->assertEquals(0, $response['status'], 'outputs status');
|
2016-07-06 11:37:13 +02:00
|
|
|
$this->assertStringEndsWith('?' . $response['id'], $response['url'], 'returned URL points to new paste');
|
|
|
|
$this->assertTrue($this->_model->exists($response['id']), 'paste exists after posting data');
|
|
|
|
$paste = $this->_model->read($response['id']);
|
2015-10-11 18:50:48 +02:00
|
|
|
$this->assertEquals(
|
2019-05-08 22:11:21 +02:00
|
|
|
hash_hmac('sha256', $response['id'], $paste['meta']['salt']),
|
2015-10-11 18:50:48 +02:00
|
|
|
$response['deletetoken'],
|
|
|
|
'outputs valid delete token'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
*/
|
|
|
|
public function testPut()
|
|
|
|
{
|
2016-10-29 10:24:08 +02:00
|
|
|
$options = parse_ini_file(CONF, true);
|
2015-10-11 18:50:48 +02:00
|
|
|
$options['traffic']['limit'] = 0;
|
2016-08-09 11:54:42 +02:00
|
|
|
Helper::createIniFile(CONF, $options);
|
2019-05-13 22:31:52 +02:00
|
|
|
$paste = Helper::getPasteJson();
|
2019-05-10 21:45:34 +02:00
|
|
|
$file = tempnam(sys_get_temp_dir(), 'FOO');
|
2019-05-13 22:31:52 +02:00
|
|
|
file_put_contents($file, $paste);
|
2016-08-09 11:54:42 +02:00
|
|
|
Request::setInputStream($file);
|
2016-10-29 10:24:08 +02:00
|
|
|
$_SERVER['QUERY_STRING'] = Helper::getPasteId();
|
2019-01-21 23:49:33 +01:00
|
|
|
$_GET[Helper::getPasteId()] = '';
|
2015-10-11 18:50:48 +02:00
|
|
|
$_SERVER['HTTP_X_REQUESTED_WITH'] = 'JSONHttpRequest';
|
2016-10-29 10:24:08 +02:00
|
|
|
$_SERVER['REQUEST_METHOD'] = 'PUT';
|
|
|
|
$_SERVER['REMOTE_ADDR'] = '::1';
|
2015-10-11 18:50:48 +02:00
|
|
|
ob_start();
|
2018-07-29 15:17:35 +02:00
|
|
|
new Controller;
|
2015-10-11 18:50:48 +02:00
|
|
|
$content = ob_get_contents();
|
2016-08-02 10:29:25 +02:00
|
|
|
ob_end_clean();
|
2017-03-24 23:42:11 +01:00
|
|
|
unlink($file);
|
2015-10-11 18:50:48 +02:00
|
|
|
$response = json_decode($content, true);
|
|
|
|
$this->assertEquals(0, $response['status'], 'outputs status');
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->assertEquals(Helper::getPasteId(), $response['id'], 'outputted paste ID matches input');
|
2016-07-06 11:37:13 +02:00
|
|
|
$this->assertStringEndsWith('?' . $response['id'], $response['url'], 'returned URL points to new paste');
|
|
|
|
$this->assertTrue($this->_model->exists($response['id']), 'paste exists after posting data');
|
|
|
|
$paste = $this->_model->read($response['id']);
|
2015-10-11 18:50:48 +02:00
|
|
|
$this->assertEquals(
|
2019-05-08 22:11:21 +02:00
|
|
|
hash_hmac('sha256', $response['id'], $paste['meta']['salt']),
|
2015-10-11 18:50:48 +02:00
|
|
|
$response['deletetoken'],
|
|
|
|
'outputs valid delete token'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-10-11 21:22:00 +02:00
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
*/
|
|
|
|
public function testDelete()
|
|
|
|
{
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->_model->create(Helper::getPasteId(), Helper::getPaste());
|
|
|
|
$this->assertTrue($this->_model->exists(Helper::getPasteId()), 'paste exists before deleting data');
|
|
|
|
$paste = $this->_model->read(Helper::getPasteId());
|
2016-10-29 10:24:08 +02:00
|
|
|
$file = tempnam(sys_get_temp_dir(), 'FOO');
|
2019-05-13 22:31:52 +02:00
|
|
|
file_put_contents($file, json_encode(array(
|
2019-05-08 22:11:21 +02:00
|
|
|
'deletetoken' => hash_hmac('sha256', Helper::getPasteId(), $paste['meta']['salt']),
|
2015-10-11 21:22:00 +02:00
|
|
|
)));
|
2016-08-09 11:54:42 +02:00
|
|
|
Request::setInputStream($file);
|
2016-10-29 10:24:08 +02:00
|
|
|
$_SERVER['QUERY_STRING'] = Helper::getPasteId();
|
2019-01-21 23:49:33 +01:00
|
|
|
$_GET[Helper::getPasteId()] = '';
|
2015-10-11 21:22:00 +02:00
|
|
|
$_SERVER['HTTP_X_REQUESTED_WITH'] = 'JSONHttpRequest';
|
2016-10-29 10:24:08 +02:00
|
|
|
$_SERVER['REQUEST_METHOD'] = 'DELETE';
|
2015-10-11 21:22:00 +02:00
|
|
|
ob_start();
|
2018-07-29 15:17:35 +02:00
|
|
|
new Controller;
|
2015-10-11 21:22:00 +02:00
|
|
|
$content = ob_get_contents();
|
2016-08-02 10:29:25 +02:00
|
|
|
ob_end_clean();
|
2017-03-24 23:42:11 +01:00
|
|
|
unlink($file);
|
2015-10-11 21:22:00 +02:00
|
|
|
$response = json_decode($content, true);
|
|
|
|
$this->assertEquals(0, $response['status'], 'outputs status');
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->assertFalse($this->_model->exists(Helper::getPasteId()), 'paste successfully deleted');
|
2015-10-11 21:22:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
*/
|
|
|
|
public function testDeleteWithPost()
|
|
|
|
{
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->_model->create(Helper::getPasteId(), Helper::getPaste());
|
|
|
|
$this->assertTrue($this->_model->exists(Helper::getPasteId()), 'paste exists before deleting data');
|
|
|
|
$paste = $this->_model->read(Helper::getPasteId());
|
2019-05-13 22:31:52 +02:00
|
|
|
$file = tempnam(sys_get_temp_dir(), 'FOO');
|
|
|
|
file_put_contents($file, json_encode(array(
|
2017-02-22 21:42:14 +01:00
|
|
|
'pasteid' => Helper::getPasteId(),
|
2019-05-08 22:11:21 +02:00
|
|
|
'deletetoken' => hash_hmac('sha256', Helper::getPasteId(), $paste['meta']['salt']),
|
2019-05-13 22:31:52 +02:00
|
|
|
)));
|
|
|
|
Request::setInputStream($file);
|
2015-10-11 21:22:00 +02:00
|
|
|
$_SERVER['HTTP_X_REQUESTED_WITH'] = 'JSONHttpRequest';
|
2016-10-29 10:24:08 +02:00
|
|
|
$_SERVER['REQUEST_METHOD'] = 'POST';
|
2015-10-11 21:22:00 +02:00
|
|
|
ob_start();
|
2018-07-29 15:17:35 +02:00
|
|
|
new Controller;
|
2015-10-11 21:22:00 +02:00
|
|
|
$content = ob_get_contents();
|
2016-08-02 10:29:25 +02:00
|
|
|
ob_end_clean();
|
2015-10-11 21:22:00 +02:00
|
|
|
$response = json_decode($content, true);
|
|
|
|
$this->assertEquals(0, $response['status'], 'outputs status');
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->assertFalse($this->_model->exists(Helper::getPasteId()), 'paste successfully deleted');
|
2015-10-11 21:22:00 +02:00
|
|
|
}
|
|
|
|
|
2015-10-15 22:04:57 +02:00
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
*/
|
|
|
|
public function testRead()
|
|
|
|
{
|
2019-05-08 22:11:21 +02:00
|
|
|
$paste = Helper::getPaste();
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->_model->create(Helper::getPasteId(), $paste);
|
2016-10-29 10:24:08 +02:00
|
|
|
$_SERVER['QUERY_STRING'] = Helper::getPasteId();
|
2019-01-21 23:49:33 +01:00
|
|
|
$_GET[Helper::getPasteId()] = '';
|
2015-10-15 22:04:57 +02:00
|
|
|
$_SERVER['HTTP_X_REQUESTED_WITH'] = 'JSONHttpRequest';
|
|
|
|
ob_start();
|
2018-07-29 15:17:35 +02:00
|
|
|
new Controller;
|
2015-10-15 22:04:57 +02:00
|
|
|
$content = ob_get_contents();
|
2016-08-02 10:29:25 +02:00
|
|
|
ob_end_clean();
|
2015-10-15 22:04:57 +02:00
|
|
|
$response = json_decode($content, true);
|
|
|
|
$this->assertEquals(0, $response['status'], 'outputs success status');
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->assertEquals(Helper::getPasteId(), $response['id'], 'outputs data correctly');
|
2015-10-18 11:08:28 +02:00
|
|
|
$this->assertStringEndsWith('?' . $response['id'], $response['url'], 'returned URL points to new paste');
|
2019-05-08 22:11:21 +02:00
|
|
|
$this->assertEquals($paste['ct'], $response['ct'], 'outputs data correctly');
|
|
|
|
$this->assertEquals($paste['meta']['created'], $response['meta']['created'], 'outputs postdate correctly');
|
2015-10-18 11:08:28 +02:00
|
|
|
$this->assertEquals(0, $response['comment_count'], 'outputs comment_count correctly');
|
|
|
|
$this->assertEquals(0, $response['comment_offset'], 'outputs comment_offset correctly');
|
2015-10-15 22:04:57 +02:00
|
|
|
}
|
|
|
|
|
2015-10-18 14:37:58 +02:00
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
*/
|
|
|
|
public function testJsonLdPaste()
|
|
|
|
{
|
2019-05-08 22:11:21 +02:00
|
|
|
$paste = Helper::getPaste();
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->_model->create(Helper::getPasteId(), $paste);
|
2015-10-18 14:37:58 +02:00
|
|
|
$_GET['jsonld'] = 'paste';
|
|
|
|
ob_start();
|
2018-07-29 15:17:35 +02:00
|
|
|
new Controller;
|
2015-10-18 14:37:58 +02:00
|
|
|
$content = ob_get_contents();
|
2016-08-02 10:29:25 +02:00
|
|
|
ob_end_clean();
|
2015-10-18 14:46:07 +02:00
|
|
|
$this->assertEquals(str_replace(
|
|
|
|
'?jsonld=',
|
|
|
|
'/?jsonld=',
|
|
|
|
file_get_contents(PUBLIC_PATH . '/js/paste.jsonld')
|
|
|
|
), $content, 'outputs data correctly');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
*/
|
|
|
|
public function testJsonLdComment()
|
|
|
|
{
|
2019-05-08 22:11:21 +02:00
|
|
|
$paste = Helper::getPaste();
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->_model->create(Helper::getPasteId(), $paste);
|
2015-10-18 14:46:07 +02:00
|
|
|
$_GET['jsonld'] = 'comment';
|
|
|
|
ob_start();
|
2018-07-29 15:17:35 +02:00
|
|
|
new Controller;
|
2015-10-18 14:46:07 +02:00
|
|
|
$content = ob_get_contents();
|
2016-08-02 10:29:25 +02:00
|
|
|
ob_end_clean();
|
2015-10-18 14:46:07 +02:00
|
|
|
$this->assertEquals(str_replace(
|
|
|
|
'?jsonld=',
|
|
|
|
'/?jsonld=',
|
|
|
|
file_get_contents(PUBLIC_PATH . '/js/comment.jsonld')
|
|
|
|
), $content, 'outputs data correctly');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
*/
|
|
|
|
public function testJsonLdPasteMeta()
|
|
|
|
{
|
2019-05-08 22:11:21 +02:00
|
|
|
$paste = Helper::getPaste();
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->_model->create(Helper::getPasteId(), $paste);
|
2015-10-18 14:46:07 +02:00
|
|
|
$_GET['jsonld'] = 'pastemeta';
|
|
|
|
ob_start();
|
2018-07-29 15:17:35 +02:00
|
|
|
new Controller;
|
2015-10-18 14:46:07 +02:00
|
|
|
$content = ob_get_contents();
|
2016-08-02 10:29:25 +02:00
|
|
|
ob_end_clean();
|
2015-10-18 14:46:07 +02:00
|
|
|
$this->assertEquals(str_replace(
|
|
|
|
'?jsonld=',
|
|
|
|
'/?jsonld=',
|
|
|
|
file_get_contents(PUBLIC_PATH . '/js/pastemeta.jsonld')
|
|
|
|
), $content, 'outputs data correctly');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
*/
|
|
|
|
public function testJsonLdCommentMeta()
|
|
|
|
{
|
2019-05-08 22:11:21 +02:00
|
|
|
$paste = Helper::getPaste();
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->_model->create(Helper::getPasteId(), $paste);
|
2015-10-18 14:46:07 +02:00
|
|
|
$_GET['jsonld'] = 'commentmeta';
|
|
|
|
ob_start();
|
2018-07-29 15:17:35 +02:00
|
|
|
new Controller;
|
2015-10-18 14:46:07 +02:00
|
|
|
$content = ob_get_contents();
|
2016-08-02 10:29:25 +02:00
|
|
|
ob_end_clean();
|
2015-10-18 14:46:07 +02:00
|
|
|
$this->assertEquals(str_replace(
|
|
|
|
'?jsonld=',
|
|
|
|
'/?jsonld=',
|
|
|
|
file_get_contents(PUBLIC_PATH . '/js/commentmeta.jsonld')
|
|
|
|
), $content, 'outputs data correctly');
|
2015-10-18 14:37:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
*/
|
|
|
|
public function testJsonLdInvalid()
|
|
|
|
{
|
2019-05-08 22:11:21 +02:00
|
|
|
$paste = Helper::getPaste();
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->_model->create(Helper::getPasteId(), $paste);
|
2017-09-29 18:59:02 +02:00
|
|
|
$_GET['jsonld'] = CONF;
|
2015-10-18 14:37:58 +02:00
|
|
|
ob_start();
|
2018-07-29 15:17:35 +02:00
|
|
|
new Controller;
|
2015-10-18 14:37:58 +02:00
|
|
|
$content = ob_get_contents();
|
2016-08-02 10:29:25 +02:00
|
|
|
ob_end_clean();
|
2015-10-18 14:37:58 +02:00
|
|
|
$this->assertEquals('{}', $content, 'does not output nasty data');
|
|
|
|
}
|
2016-07-06 11:37:13 +02:00
|
|
|
}
|