mirror of
https://github.com/koel/koel
synced 2024-12-22 10:33:16 +00:00
49 lines
1.6 KiB
PHP
49 lines
1.6 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace E2E;
|
||
|
|
||
|
/**
|
||
|
* Class PlaybackControlsTest
|
||
|
*
|
||
|
* Tests the playback controls (the footer buttons).
|
||
|
*
|
||
|
* @package E2E
|
||
|
*/
|
||
|
class PlaybackControlsTest extends TestCase
|
||
|
{
|
||
|
public function testPlaybackControls()
|
||
|
{
|
||
|
$this->loginAndWait();
|
||
|
|
||
|
// Show and hide the extra panel
|
||
|
$this->click('#mainFooter .control.info');
|
||
|
$this->notSee('#extra');
|
||
|
$this->click('#mainFooter .control.info');
|
||
|
$this->see('#extra');
|
||
|
|
||
|
// Show and hide the Presets
|
||
|
$this->click('#mainFooter .control.equalizer');
|
||
|
$this->see('#equalizer');
|
||
|
// clicking anywhere else should close the equalizer
|
||
|
$this->click('#extra');
|
||
|
$this->notSee('#equalizer');
|
||
|
|
||
|
// Circle around the repeat state
|
||
|
$this->click('#mainFooter .control.repeat');
|
||
|
$this->see('#mainFooter .control.repeat.REPEAT_ALL');
|
||
|
$this->click('#mainFooter .control.repeat');
|
||
|
$this->see('#mainFooter .control.repeat.REPEAT_ONE');
|
||
|
$this->click('#mainFooter .control.repeat');
|
||
|
$this->see('#mainFooter .control.repeat.NO_REPEAT');
|
||
|
|
||
|
// Mute/unmute
|
||
|
$currentValue = $this->el('#volumeRange')->getAttribute('value');
|
||
|
$this->click('#volume .fa-volume-up');
|
||
|
$this->see('#mainFooter .fa-volume-off');
|
||
|
static::assertEquals(0, $this->el('#volumeRange')->getAttribute('value'));
|
||
|
$this->click('#volume .fa-volume-off');
|
||
|
$this->see('#mainFooter .fa-volume-up');
|
||
|
static::assertEquals($currentValue, $this->el('#volumeRange')->getAttribute('value'));
|
||
|
}
|
||
|
}
|