39 lines
1,022 B
PHP
39 lines
1,022 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Unit;
|
||
|
|
||
|
use App\Bookmark;
|
||
|
use Tests\TestCase;
|
||
|
use GuzzleHttp\Client;
|
||
|
use GuzzleHttp\HandlerStack;
|
||
|
use GuzzleHttp\Psr7\Response;
|
||
|
use GuzzleHttp\Handler\MockHandler;
|
||
|
use App\Jobs\SyndicateBookmarkToTwitter;
|
||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||
|
|
||
|
class SyndicateBookmarkToTwitterJobTest extends TestCase
|
||
|
{
|
||
|
use DatabaseTransactions;
|
||
|
|
||
|
public function test_the_job()
|
||
|
{
|
||
|
$json = json_encode([
|
||
|
'url' => 'https://twitter.com/123'
|
||
|
]);
|
||
|
$mock = new MockHandler([
|
||
|
new Response(201, ['Content-Type' => 'application/json'], $json),
|
||
|
]);
|
||
|
$handler = HandlerStack::create($mock);
|
||
|
$client = new Client(['handler' => $handler]);
|
||
|
|
||
|
$bookmark = Bookmark::find(1);
|
||
|
$job = new SyndicateBookmarkToTwitter($bookmark);
|
||
|
$job->handle($client);
|
||
|
|
||
|
$this->assertDatabaseHas('bookmarks', [
|
||
|
'id' => 1,
|
||
|
'syndicates' => '{"twitter": "https://twitter.com/123"}',
|
||
|
]);
|
||
|
}
|
||
|
}
|