88 lines
2.5 KiB
PHP
88 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* @license Copyright 2011-2015 BitPay Inc., MIT License
|
|
* see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
|
|
*/
|
|
|
|
namespace Bitpay\Storage;
|
|
|
|
use org\bovigo\vfs\vfsStream;
|
|
|
|
class EncryptedFilesystemStorageTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
private $root;
|
|
private $pubkeyStream;
|
|
private $pubkeyName;
|
|
private $storage;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->pubkeyName = 'tmp/public.key';
|
|
$this->root = vfsStream::setup('tmp');
|
|
$this->pubkeyStream = vfsStream::url($this->pubkeyName);
|
|
$this->storage = new EncryptedFilesystemStorage('satoshi');
|
|
}
|
|
|
|
public function testPersist()
|
|
{
|
|
$this->storage->persist(new \Bitpay\PublicKey($this->pubkeyStream));
|
|
$this->assertTrue($this->root->hasChild($this->pubkeyName));
|
|
}
|
|
|
|
public function testLoad()
|
|
{
|
|
vfsStream::newFile('public.key')
|
|
->at($this->root)
|
|
->setContent('8bc03b8e4272d47ea81d63c6571b8172072ed03203ff7cd3fd434c03f7994b5721363d0dda3cec833f6f263bde0ececa06b79f68d5616be18b8e9311c486223e18c7424daaa59991f4b10db9f2fb8b4c42896c50d216010b403d562738ef5a96');
|
|
|
|
$key = $this->storage->load($this->pubkeyStream);
|
|
$this->assertInstanceOf('Bitpay\PublicKey', $key);
|
|
}
|
|
|
|
/**
|
|
* @expectedException Exception
|
|
*/
|
|
public function testNotFileException()
|
|
{
|
|
$this->storage->load($this->pubkeyStream);
|
|
}
|
|
|
|
/**
|
|
* @expectedException Exception
|
|
*/
|
|
public function testLoadNotReadableException()
|
|
{
|
|
vfsStream::newFile('badpublic.key', 0600)
|
|
->at($this->root)
|
|
->setContent('')
|
|
->chown(vfsStream::OWNER_ROOT)
|
|
->chgrp(vfsStream::GROUP_ROOT);
|
|
|
|
$this->storage->load(vfsStream::url('tmp/badpublic.key'));
|
|
}
|
|
|
|
/**
|
|
* @expectedException Exception
|
|
*/
|
|
public function testLoadCouldNotDecode()
|
|
{
|
|
vfsStream::newFile('badpublic.key')
|
|
->at($this->root)
|
|
->setContent('00');
|
|
|
|
$key = $this->storage->load(vfsStream::url('tmp/badpublic.key'));
|
|
$this->assertInstanceOf('Bitpay\PublicKey', $key);
|
|
}
|
|
|
|
public function testPersistAndLoadWithoutPassword()
|
|
{
|
|
$storage = new EncryptedFilesystemStorage(null);
|
|
|
|
$storage->persist(new \Bitpay\PublicKey($this->pubkeyStream));
|
|
$this->assertTrue($this->root->hasChild($this->pubkeyName));
|
|
|
|
$key = $storage->load($this->pubkeyStream);
|
|
$this->assertInstanceOf('Bitpay\PublicKey', $key);
|
|
}
|
|
}
|