Skip to content
Snippets Groups Projects
Commit 0d94f59f authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Completed record action tests.

parent c291ba0c
No related merge requests found
...@@ -96,29 +96,29 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase ...@@ -96,29 +96,29 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
// Click add comment without logging in // Click add comment without logging in
// TODO Rewrite for comment and login coming // TODO Rewrite for comment and login coming
$page->findById('usercomments')->click(); $page->findById('usercomments')->click();
$this->assertNotNull($page->find('css', '#comment[disabled]')); $this->assertNotNull($page->find('css', '#comment[disabled]'));
$page->find('css', 'form.comment .btn-primary')->click(); $page->find('css', 'form.comment .btn-primary')->click();
$this->assertNotNull($page->find('css', '.modal.in')); // Lightbox open $this->assertNotNull($page->find('css', '.modal.in')); // Lightbox open
$this->assertNotNull($page->find('css', '.modal [name="username"]')); $this->assertNotNull($page->find('css', '.modal [name="username"]'));
// Create new account // Create new account
$page->find('css', '.modal-body .createAccountLink')->click(); $page->find('css', '.modal-body .createAccountLink')->click();
$this->fillInAccountForm($page); $this->fillInAccountForm($page);
$page->find('css', '.modal-body .btn.btn-primary')->click(); $page->find('css', '.modal-body .btn.btn-primary')->click();
// Make sure page updated for login // Make sure page updated for login
$this->assertNull($page->find('css', '#comment[disabled]')); // Can Comment? $this->assertNull($page->find('css', '#comment[disabled]')); // Can Comment?
$this->assertNull($page->find('css', '.comment.row')); $this->assertNull($page->find('css', '.comment.row'));
// Add comment // Add comment
$page->findById('comment')->setValue('one'); $page->findById('comment')->setValue('one');
$page->find('css', 'form.comment .btn-primary')->click(); $page->find('css', 'form.comment .btn-primary')->click();
$this->assertNotNull($page->find('css', '.comment.row')); $this->assertNotNull($page->find('css', '.comment.row'));
// "Add" empty comment // "Add" empty comment
$page->find('css', 'form.comment .btn-primary')->click(); $page->find('css', 'form.comment .btn-primary')->click();
$this->assertNotNull($page->find('css', '.comment.row')); $this->assertNotNull($page->find('css', '.comment.row'));
// Remove comment // Remove comment
$page->find('css', '.comment.row .delete')->click(); $page->find('css', '.comment.row .delete')->click();
$this->assertNull($page->find('css', '.comment.row')); $this->assertNull($page->find('css', '.comment.row'));
// Logout // Logout
$page->find('css', '.logoutOptions a[title="Log Out"]')->click(); $page->find('css', '.logoutOptions a[title="Log Out"]')->click();
$session->stop(); $session->stop();
} }
...@@ -135,12 +135,12 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase ...@@ -135,12 +135,12 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
); );
$session = $this->getMinkSession(); $session = $this->getMinkSession();
$session->start(); $session->start();
// Go to a record view // Go to a record view
$page = $this->gotoRecord($session); $page = $this->gotoRecord($session);
// Click to add tag // Click to add tag
$page->findByid('tagRecord')->click(); $page->findByid('tagRecord')->click();
// Lightbox login open? // Lightbox login open?
$this->assertNotNull($page->find('css', '.modal.in [name="username"]')); $this->assertNotNull($page->find('css', '.modal.in [name="username"]'));
// Make account // Make account
$page->find('css', '.modal-body .createAccountLink')->click(); $page->find('css', '.modal-body .createAccountLink')->click();
...@@ -150,7 +150,7 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase ...@@ -150,7 +150,7 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
$page->find('css', '.modal-body .btn.btn-primary')->click(); $page->find('css', '.modal-body .btn.btn-primary')->click();
$this->assertNotNull($page->find('css', '.modal #addtag_tag')); $this->assertNotNull($page->find('css', '.modal #addtag_tag'));
$page->find('css', '.modal .close')->click(); $page->find('css', '.modal .close')->click();
$page->find('css', '.logoutOptions a[title="Log Out"]')->click(); $page->find('css', '.logoutOptions a[title="Log Out"]')->click();
// Login // Login
$page = $this->gotoRecord($session); // redirects to search home??? $page = $this->gotoRecord($session); // redirects to search home???
$page->findByid('tagRecord')->click(); $page->findByid('tagRecord')->click();
...@@ -208,6 +208,8 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase ...@@ -208,6 +208,8 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
$page->find('css', '#tagList .tag button')->click(); $page->find('css', '#tagList .tag button')->click();
// Check selected == 0 // Check selected == 0
$this->assertNull($page->find('css', '#tagList .tag.selected')); $this->assertNull($page->find('css', '#tagList .tag.selected'));
$page->find('css', '.logoutOptions a[title="Log Out"]')->click();
$session->stop();
} }
/** /**
...@@ -215,7 +217,7 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase ...@@ -215,7 +217,7 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
* *
* @return void * @return void
*/ */
public function asdftestEmail() public function testEmail()
{ {
// Change the theme: // Change the theme:
$this->changeConfigs( $this->changeConfigs(
...@@ -227,16 +229,42 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase ...@@ -227,16 +229,42 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
$session->start(); $session->start();
// Go to a record view // Go to a record view
$page = $this->gotoRecord($session);
// Click email record without logging in // Click email record without logging in
$page->findByid('mail-record')->click();
$this->assertNotNull($page->find('css', '.modal.in [name="username"]'));
// Login in Lightbox // Login in Lightbox
$this->fillInLoginForm($page, 'username1', 'test');
$this->submitLoginForm($page);
// Make sure Lightbox redirects to email view // Make sure Lightbox redirects to email view
$this->assertNotNull($page->find('css', '.modal #email_to'));
// Close lightbox // Close lightbox
$page->find('css', '.modal .close')->click();
// Click email // Click email
$page = $this->gotoRecord($session);
$page->findByid('mail-record')->click();
$this->assertNotNull($page->find('css', '.modal #email_to'));
// Type invalid email // Type invalid email
$page->find('css', '.modal #email_to')->setValue('blargarsaurus');
$page->find('css', '.modal #email_from')->setValue('asdf@asdf.com');
$page->find('css', '.modal #email_message')->setValue('message');
// Make sure form cannot submit // Make sure form cannot submit
/* TODO: Not working with validator
$session->executeScript('$(".modal form").validator();');
$forms = $page->findAll('css', '.modal-body .form-group');
foreach ($forms as $f) {
var_dump($f->getHtml());
}
$this->assertNotNull($page->find('css', '.modal .disabled'));
*/
// Send text to false email // Send text to false email
$page->find('css', '.modal #email_to')->setValue('asdf@vufind.org');
$page->find('css', '.modal-body .btn.btn-primary')->click();
// Check for confirmation message // Check for confirmation message
$this->assertNotNull($page->find('css', '.modal .alert-info'));
// Logout // Logout
$page->find('css', '.logoutOptions a[title="Log Out"]')->click();
$session->stop();
} }
/** /**
...@@ -244,7 +272,7 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase ...@@ -244,7 +272,7 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
* *
* @return void * @return void
*/ */
public function asdftestSMS() public function testSMS()
{ {
// Change the theme: // Change the theme:
$this->changeConfigs( $this->changeConfigs(
...@@ -256,11 +284,45 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase ...@@ -256,11 +284,45 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
$session->start(); $session->start();
// Go to a record view // Go to a record view
$page = $this->gotoRecord($session);
// Click SMS // Click SMS
// Make sure Lightbox redirects to SMS view $page->findByid('sms-record')->click();
// TODO: Validator $this->assertNotNull($page->find('css', '.modal #sms_to'));
// Type invalid phone numbers
// - too empty
$page->find('css', '.modal #sms_to')->setValue('');
$page->find('css', '.modal-body .btn.btn-primary')->click();
$this->assertNotNull($page->find('css', '.modal .sms-error'));
// - too short
$page->find('css', '.modal #sms_to')->setValue('123');
$page->find('css', '.modal-body .btn.btn-primary')->click();
$this->assertNotNull($page->find('css', '.modal .sms-error'));
// - too long
$page->find('css', '.modal #sms_to')->setValue('12345678912345678912345679');
$page->find('css', '.modal-body .btn.btn-primary')->click();
$this->assertNotNull($page->find('css', '.modal .sms-error'));
// - too lettery
$page->find('css', '.modal #sms_to')->setValue('123abc');
$page->find('css', '.modal-body .btn.btn-primary')->click();
$this->assertNotNull($page->find('css', '.modal .sms-error'));
// - just right
$page->find('css', '.modal #sms_to')->setValue('8005555555');
$page->find('css', '.modal-body .btn.btn-primary')->click();
$this->assertNull($page->find('css', '.modal .sms-error'));
// - pretty just right
$page->find('css', '.modal #sms_to')->setValue('(800) 555-5555');
$page->find('css', '.modal-body .btn.btn-primary')->click();
$this->assertNull($page->find('css', '.modal .sms-error'));
// Send text to false number // Send text to false number
$optionElement = $page->find('css', '.modal #sms_provider option');
$page->selectFieldOption('sms_provider', 'verizon');
$page->find('css', '.modal-body .btn.btn-primary')->click();
// Check for confirmation message // Check for confirmation message
var_dump($page->find('css', '.modal-body')->getHtml());
$this->assertNotNull($page->find('css', '.modal .alert-info'));
// Logout
$page->find('css', '.logoutOptions a[title="Log Out"]')->click();
$session->stop();
} }
/** /**
...@@ -272,4 +334,4 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase ...@@ -272,4 +334,4 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
{ {
static::removeUsers(['username1', 'username2']); static::removeUsers(['username1', 'username2']);
} }
} }
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment