From cf956b0e83a1aabc6ef68d72592fe6662f03c076 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Mon, 19 Oct 2015 14:21:25 -0400 Subject: [PATCH] Export test. --- .../src/VuFindTest/Mink/CartTest.php | 42 ++++++++++++++++++- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php index b33c1ed39fc..777f6ee01e2 100644 --- a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php @@ -292,7 +292,7 @@ class CartTest extends \VuFindTest\Unit\MinkTestCase $this->selectAllItemsInCart($page); $button->click(); $title = $page->find('css', '#modalTitle'); - $this->assertEquals($title->getText(), 'Email Selected Book Bag Items'); + $this->assertEquals('Email Selected Book Bag Items', $title->getText()); $this->checkForLoginMessage($page); // TODO: test actually logging in, etc. @@ -320,11 +320,49 @@ class CartTest extends \VuFindTest\Unit\MinkTestCase $this->selectAllItemsInCart($page); $button->click(); $title = $page->find('css', '#modalTitle'); - $this->assertEquals($title->getText(), 'Save Selected Book Bag Items'); + $this->assertEquals('Save Selected Book Bag Items', $title->getText()); $this->checkForLoginMessage($page); // TODO: test actually logging in, etc. $session->stop(); } + + /** + * Test that the export control works. + * + * @return void + */ + public function testCartExport() + { + $session = $this->getMinkSession(); + $session->start(); + $page = $this->setUpGenericCartTest($session); + $button = $page->find('css', '.cart-controls button[name=export]'); + + // First try clicking without selecting anything: + $button->click(); + $this->checkForNonSelectedMessage($page); + + // Now do it for real -- we should get an export option list: + $this->selectAllItemsInCart($page); + $button->click(); + $title = $page->find('css', '#modalTitle'); + $this->assertEquals('Export Selected Book Bag Items', $title->getText()); + + // Select EndNote option + $select = $page->find('css', '#format'); + $this->assertTrue(is_object($select)); + $select->selectOption('EndNote'); + + // Do the export: + $submit = $page->find('css', '.modal-body input[name=submit]'); + $this->assertTrue(is_object($submit)); + $submit->click(); + $result = $page->find('css', '.modal-body .alert .text-center .btn'); + $this->assertTrue(is_object($result)); + $this->assertEquals('Download File', $result->getText()); + + $session->stop(); + } } -- GitLab