mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Add Profile screen e2e test
This commit is contained in:
parent
1ac87d1e9d
commit
92da6df5ab
3 changed files with 40 additions and 9 deletions
|
@ -8,12 +8,12 @@
|
||||||
<form @submit.prevent="update">
|
<form @submit.prevent="update">
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="inputProfileName">Name</label>
|
<label for="inputProfileName">Name</label>
|
||||||
<input type="text" id="inputProfileName" v-model="state.current.name">
|
<input type="text" name="name" id="inputProfileName" v-model="state.current.name">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="inputProfileEmail">Email Address</label>
|
<label for="inputProfileEmail">Email Address</label>
|
||||||
<input type="email" id="inputProfileEmail" v-model="state.current.email">
|
<input type="email" name="email" id="inputProfileEmail" v-model="state.current.email">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="change-pwd">
|
<div class="change-pwd">
|
||||||
|
@ -24,30 +24,30 @@
|
||||||
|
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="inputProfilePassword">New Password</label>
|
<label for="inputProfilePassword">New Password</label>
|
||||||
<input v-model="pwd" type="password" id="inputProfilePassword" autocomplete="off">
|
<input v-model="pwd" name="password" type="password" id="inputProfilePassword" autocomplete="off">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="inputProfileConfirmPassword">Confirm Password</label>
|
<label for="inputProfileConfirmPassword">Confirm Password</label>
|
||||||
<input v-model="confirmPwd" type="password" id="inputProfileConfirmPassword" autocomplete="off">
|
<input v-model="confirmPwd" name="confirmPassword" type="password" id="inputProfileConfirmPassword" autocomplete="off">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<button type="submit">Save</button>
|
<button type="submit" class="btn btn-submit">Save</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<div class="preferences">
|
<div class="preferences">
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" v-model="prefs.notify" @change="savePreference">
|
<input type="checkbox" name="notify" v-model="prefs.notify" @change="savePreference">
|
||||||
Show “Now Playing” song notification
|
Show “Now Playing” song notification
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" v-model="prefs.confirmClosing" @change="savePreference">
|
<input type="checkbox" name="confirmClosing" v-model="prefs.confirmClosing" @change="savePreference">
|
||||||
Confirm before closing Koel
|
Confirm before closing Koel
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
33
tests/e2e/ProfileScreenTest.php
Normal file
33
tests/e2e/ProfileScreenTest.php
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace E2E;
|
||||||
|
|
||||||
|
use Facebook\WebDriver\WebDriverExpectedCondition;
|
||||||
|
use Facebook\WebDriver\WebDriverKeys;
|
||||||
|
|
||||||
|
class ProfileScreenTest extends TestCase
|
||||||
|
{
|
||||||
|
public function testProfileScreen()
|
||||||
|
{
|
||||||
|
$this->loginAndWait();
|
||||||
|
$this->click('a.view-profile');
|
||||||
|
$this->see('#profileWrapper');
|
||||||
|
// Now we change some user profile details
|
||||||
|
$this->typeIn('#profileWrapper input[name="name"]', 'Mr Bar');
|
||||||
|
$this->typeIn('#profileWrapper input[name="email"]', 'bar@koel.net');
|
||||||
|
$this->enter();
|
||||||
|
$this->see('.sweet-alert');
|
||||||
|
// Dismiss the alert first
|
||||||
|
$this->press(WebDriverKeys::ESCAPE);
|
||||||
|
$this->notSee('.sweet-alert');
|
||||||
|
|
||||||
|
$avatar = $this->el('a.view-profile img');
|
||||||
|
// Expect the Gravatar to be updated
|
||||||
|
static::assertEquals('https://www.gravatar.com/avatar/36df72b4484fed183fad058f30b55d21?s=256', $avatar->getAttribute('src'));
|
||||||
|
// Check "Confirm Closing" and validate its functionality
|
||||||
|
$this->click('#profileWrapper input[name="confirmClosing"]');
|
||||||
|
$this->refresh();
|
||||||
|
$this->waitUntil(WebDriverExpectedCondition::alertIsPresent());
|
||||||
|
$this->driver->switchTo()->alert()->accept();
|
||||||
|
}
|
||||||
|
}
|
|
@ -133,6 +133,4 @@ trait WebDriverShortcuts
|
||||||
{
|
{
|
||||||
return $this->driver->navigate()->refresh();
|
return $this->driver->navigate()->refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue