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\Persistence\ServerSalt;
|
|
|
|
use PrivateBin\Vizhash16x16;
|
2016-07-21 23:09:48 +08:00
|
|
|
|
2016-08-09 17:54:42 +08:00
|
|
|
class Vizhash16x16Test extends PHPUnit_Framework_TestCase
|
2015-08-16 00:32:31 +08:00
|
|
|
{
|
|
|
|
private $_file;
|
|
|
|
|
|
|
|
private $_path;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
/* Setup Routine */
|
2016-08-09 17:54:42 +08:00
|
|
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
2016-07-26 14:19:35 +08:00
|
|
|
if (!is_dir($this->_path)) {
|
|
|
|
mkdir($this->_path);
|
|
|
|
}
|
2015-08-28 03:41:21 +08:00
|
|
|
$this->_file = $this->_path . DIRECTORY_SEPARATOR . 'vizhash.png';
|
2016-08-09 17:54:42 +08:00
|
|
|
ServerSalt::setPath($this->_path);
|
2015-08-16 00:32:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
/* Tear Down Routine */
|
2015-08-28 03:41:21 +08:00
|
|
|
chmod($this->_path, 0700);
|
2016-08-09 17:54:42 +08:00
|
|
|
Helper::rmDir($this->_path);
|
2015-08-16 00:32:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testVizhashGeneratesUniquePngsPerIp()
|
|
|
|
{
|
2016-10-29 16:24:08 +08:00
|
|
|
$vz = new Vizhash16x16();
|
2016-08-10 23:41:46 +08:00
|
|
|
$pngdata = $vz->generate(hash('sha512', '127.0.0.1'));
|
2015-08-16 00:32:31 +08:00
|
|
|
file_put_contents($this->_file, $pngdata);
|
|
|
|
$finfo = new finfo(FILEINFO_MIME_TYPE);
|
|
|
|
$this->assertEquals('image/png', $finfo->file($this->_file));
|
2016-08-10 23:41:46 +08:00
|
|
|
$this->assertNotEquals($pngdata, $vz->generate(hash('sha512', '2001:1620:2057:dead:beef::cafe:babe')));
|
|
|
|
$this->assertEquals($pngdata, $vz->generate(hash('sha512', '127.0.0.1')));
|
2015-08-16 00:32:31 +08:00
|
|
|
}
|
|
|
|
}
|