113 lines
3.4 KiB
PHP
113 lines
3.4 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Unit;
|
||
|
|
||
|
use Tests\TestCase;
|
||
|
use GuzzleHttp\Client;
|
||
|
use GuzzleHttp\HandlerStack;
|
||
|
use GuzzleHttp\Psr7\Response;
|
||
|
use App\Jobs\DownloadWebMention;
|
||
|
use GuzzleHttp\Handler\MockHandler;
|
||
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||
|
|
||
|
class DownloadWebMentionJobTest extends TestCase
|
||
|
{
|
||
|
public function tearDown()
|
||
|
{
|
||
|
$this->delTree(storage_path('HTML/https'));
|
||
|
parent::tearDown();
|
||
|
}
|
||
|
|
||
|
public function test_the_job_saves_html()
|
||
|
{
|
||
|
$this->assertFileNotExists(storage_path('HTML/https'));
|
||
|
$source = 'https://example.org/reply/1';
|
||
|
$html = <<<HTML
|
||
|
<div class="h-entry">
|
||
|
<a class="u-like-of" href=""></a>
|
||
|
</div>
|
||
|
HTML;
|
||
|
$html = str_replace('href=""', 'href="' . config('app.url') . '/notes/A"', $html);
|
||
|
$mock = new MockHandler([
|
||
|
new Response(200, ['X-Foo' => 'Bar'], $html),
|
||
|
new Response(200, ['X-Foo' => 'Bar'], $html),
|
||
|
]);
|
||
|
$handler = HandlerStack::create($mock);
|
||
|
$client = new Client(['handler' => $handler]);
|
||
|
|
||
|
$job = new DownloadWebMention($source);
|
||
|
$job->handle($client);
|
||
|
|
||
|
$this->assertFileExists(storage_path('HTML/https'));
|
||
|
|
||
|
$job->handle($client);
|
||
|
|
||
|
$this->assertFileNotExists(storage_path('HTML/https/example.org/reply') . '/1.' . date('Y-m-d') . '.backup');
|
||
|
}
|
||
|
|
||
|
public function test_the_job_saves_html_and_backup()
|
||
|
{
|
||
|
$this->assertFileNotExists(storage_path('HTML/https'));
|
||
|
$source = 'https://example.org/reply/1';
|
||
|
$html = <<<HTML
|
||
|
<div class="h-entry">
|
||
|
<a class="u-like-of" href=""></a>
|
||
|
</div>
|
||
|
HTML;
|
||
|
$html2 = <<<HTML
|
||
|
<div class="h-entry">
|
||
|
<a class="u-like-of" href=""></a>
|
||
|
<a class="u-repost-of" href=""></a>
|
||
|
</div>
|
||
|
HTML;
|
||
|
$html = str_replace('href=""', 'href="' . config('app.url') . '/notes/A"', $html);
|
||
|
$html2 = str_replace('href=""', 'href="' . config('app.url') . '/notes/A"', $html2);
|
||
|
$mock = new MockHandler([
|
||
|
new Response(200, ['X-Foo' => 'Bar'], $html),
|
||
|
new Response(200, ['X-Foo' => 'Bar'], $html2),
|
||
|
]);
|
||
|
$handler = HandlerStack::create($mock);
|
||
|
$client = new Client(['handler' => $handler]);
|
||
|
|
||
|
$job = new DownloadWebMention($source);
|
||
|
$job->handle($client);
|
||
|
|
||
|
$this->assertFileExists(storage_path('HTML/https'));
|
||
|
|
||
|
$job->handle($client);
|
||
|
|
||
|
$this->assertFileExists(storage_path('HTML/https/example.org/reply') . '/1.' . date('Y-m-d') . '.backup');
|
||
|
}
|
||
|
|
||
|
public function test_an_index_html_file()
|
||
|
{
|
||
|
$this->assertFileNotExists(storage_path('HTML/https'));
|
||
|
$source = 'https://example.org/reply-one/';
|
||
|
$html = <<<HTML
|
||
|
<div class="h-entry">
|
||
|
<a class="u-like-of" href=""></a>
|
||
|
</div>
|
||
|
HTML;
|
||
|
$html = str_replace('href=""', 'href="' . config('app.url') . '/notes/A"', $html);
|
||
|
$mock = new MockHandler([
|
||
|
new Response(200, ['X-Foo' => 'Bar'], $html),
|
||
|
]);
|
||
|
$handler = HandlerStack::create($mock);
|
||
|
$client = new Client(['handler' => $handler]);
|
||
|
|
||
|
$job = new DownloadWebMention($source);
|
||
|
$job->handle($client);
|
||
|
|
||
|
$this->assertFileExists(storage_path('HTML/https/example.org/reply-one/index.html'));
|
||
|
}
|
||
|
|
||
|
private function delTree($dir) {
|
||
|
$files = array_diff(scandir($dir), array('.','..'));
|
||
|
foreach ($files as $file) {
|
||
|
(is_dir("$dir/$file")) ? $this->delTree("$dir/$file") : unlink("$dir/$file");
|
||
|
}
|
||
|
|
||
|
return rmdir($dir);
|
||
|
}
|
||
|
}
|