mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
31 lines
941 B
PHP
31 lines
941 B
PHP
<?php
|
|
|
|
namespace E2E;
|
|
|
|
class KoelTest extends TestCase
|
|
{
|
|
public function testDefaults()
|
|
{
|
|
static::assertContains('Koel', $this->driver->getTitle());
|
|
|
|
$formSelector = '#app > div.login-wrapper > form';
|
|
|
|
// Our login form should be there.
|
|
static::assertCount(1, $this->els($formSelector));
|
|
|
|
// We submit rubbish and expect an error class on the form.
|
|
$this->login('foo@bar.com', 'ThisIsWongOnSoManyLevels')
|
|
->see("$formSelector.error");
|
|
|
|
// Now we submit good stuff and make sure we're in.
|
|
$this->login()
|
|
->seeText('Koel Admin', '#userBadge > a.view-profile.control > span');
|
|
|
|
// Default URL must be Home
|
|
static::assertEquals($this->url.'/#!/home', $this->driver->getCurrentURL());
|
|
|
|
// While we're at this, test logging out as well.
|
|
$this->click('#userBadge > a.logout');
|
|
$this->see($formSelector);
|
|
}
|
|
}
|