Fix issues with travis and setting up an indieweb user we don’t need anymore

This commit is contained in:
Jonny Barnes 2017-10-19 13:59:18 +01:00
parent 08cdfe1e44
commit 2151d5658b
3 changed files with 0 additions and 101 deletions

View file

@ -1,39 +0,0 @@
<?php
namespace Tests\Browser;
use Tests\DuskTestCase;
use Illuminate\Foundation\Testing\DatabaseMigrations;
class MicropubClientTest extends DuskTestCase
{
/**
* Test the client is shown for an unauthorised request.
*
* @return void
*/
public function test_client_page_see_authenticated()
{
$this->browse(function ($browser) {
$browser->visit(route('micropub-client'))
->assertSee('You are authenticated as');
});
}
public function test_client_page_creates_new_note()
{
\Artisan::call('token:generate');
$faker = \Faker\Factory::create();
$note = 'Fake note from #LaravelDusk: ' . $faker->text;
$this->browse(function ($browser) use ($note) {
$response = $browser->visit(route('micropub-client'))
->assertSeeLink('log out')
->type('content', $note);
$response->element('form')->submit();
});
sleep(2);
$this->assertDatabaseHas('notes', ['note' => $note]);
$newNote = \App\Note::where('note', $note)->first();
$newNote->forceDelete();
}
}