1
0
Fork 0
mirror of https://codeberg.org/demostf/api.git synced 2026-06-03 18:04:08 +02:00

upload and tests

This commit is contained in:
Robin Appelman 2017-04-10 00:58:50 +02:00
commit 03d3acebf5
21 changed files with 1026 additions and 152 deletions

View file

@ -1,6 +1,6 @@
<?php declare(strict_types=1);
namespace Demostf\API\Test\Data;
namespace Demostf\API\Test\Demo;
use Demostf\API\Demo\DemoStore;
use Demostf\API\Test\TestCase;
@ -16,17 +16,16 @@ class DemoStoreTest extends TestCase {
$file = tempnam(sys_get_temp_dir(), 'dummy_');
file_put_contents($file, 'foobar');
$url = $demoStore->store($file, 'foodemo.dem');
$storedDemo = $demoStore->store($file, 'foodemo.dem');
$this->assertStringEndsWith('/foodemo.dem', $url);
$this->assertStringStartsWith('https://static.example.com/', $url);
$this->assertStringEndsWith('/foodemo.dem', $storedDemo->getUrl());
$this->assertStringStartsWith('https://static.example.com/', $storedDemo->getUrl());
$this->assertEquals('static', $storedDemo->getBackend());
$subPath = str_replace('https://static.example.com/', '', $url);
$this->assertStringEqualsFile($targetDir . '/' . $subPath, 'foobar');
unlink($targetDir . '/' . $subPath);
rmdir(dirname($targetDir . '/' . $subPath));
rmdir(dirname($targetDir . '/' . $subPath, 2));
$this->assertStringEqualsFile($storedDemo->getPath(), 'foobar');
unlink($storedDemo->getPath());
rmdir(dirname($storedDemo->getPath()));
rmdir(dirname($storedDemo->getPath(), 2));
rmdir($targetDir);
}
}