80 lines
2.7 KiB
PHP
80 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2014 BitPay, Inc.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
namespace Bitpay\Storage;
|
|
|
|
use org\bovigo\vfs\vfsStream;
|
|
|
|
class FilesystemStorageTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
$this->root = vfsStream::setup('tmp');
|
|
}
|
|
|
|
public function testPersist()
|
|
{
|
|
$storage = new FilesystemStorage();
|
|
$storage->persist(new \Bitpay\PublicKey(vfsStream::url('tmp/public.key')));
|
|
$this->assertTrue($this->root->hasChild('tmp/public.key'));
|
|
}
|
|
|
|
public function testLoad()
|
|
{
|
|
$storage = new FilesystemStorage();
|
|
|
|
vfsStream::newFile('public.key')
|
|
->at($this->root)
|
|
->setContent('C:16:"Bitpay\PublicKey":62:{a:5:{i:0;s:20:"vfs://tmp/public.key";i:1;N;i:2;N;i:3;N;i:4;N;}}');
|
|
|
|
$key = $storage->load(vfsStream::url('tmp/public.key'));
|
|
$this->assertInstanceOf('Bitpay\PublicKey', $key);
|
|
}
|
|
|
|
/**
|
|
* @expectedException Exception
|
|
*/
|
|
public function testNotFileException()
|
|
{
|
|
$storage = new FilesystemStorage();
|
|
$storage->load(vfsStream::url('tmp/public.key'));
|
|
}
|
|
|
|
/**
|
|
* @expectedException Exception
|
|
*/
|
|
public function testLoadNotReadableException()
|
|
{
|
|
$storage = new FilesystemStorage();
|
|
vfsStream::newFile('public.key', 0600)
|
|
->at($this->root)
|
|
->setContent('C:16:"Bitpay\PublicKey":62:{a:5:{i:0;s:20:"vfs://tmp/public.key";i:1;N;i:2;N;i:3;N;i:4;N;}}')
|
|
->chown(vfsStream::OWNER_ROOT)
|
|
->chgrp(vfsStream::GROUP_ROOT);
|
|
$storage->load(vfsStream::url('tmp/public.key'));
|
|
}
|
|
}
|