diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FeedbackTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FeedbackTest.php new file mode 100644 index 0000000000000000000000000000000000000000..292cf57dd88f85ee6b0451014697ac9d19bcc339 --- /dev/null +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FeedbackTest.php @@ -0,0 +1,117 @@ +<?php +/** + * Mink Feedback module test class. + * + * PHP version 5 + * + * Copyright (C) Villanova University 2016. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * @category VuFind + * @package Tests + * @author Demian Katz <demian.katz@villanova.edu> + * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License + * @link https://vufind.org Main Page + */ +namespace VuFindTest\Mink; +use Behat\Mink\Element\Element; + +/** + * Mink Feedback module test class. + * + * @category VuFind + * @package Tests + * @author Demian Katz <demian.katz@villanova.edu> + * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License + * @link https://vufind.org Main Page + */ +class FeedbackTest extends \VuFindTest\Unit\MinkTestCase +{ + /** + * Standard setup method. + * + * @return void + */ + public function setUp() + { + // Give up if we're not running in CI: + if (!$this->continuousIntegrationRunning()) { + return $this->markTestSkipped('Continuous integration not running.'); + } + } + + /** + * Get config.ini override settings for testing feedback. + * + * @return array + */ + public function getConfigIniOverrides() + { + return [ + 'Mail' => [ + 'testOnly' => '1', + ], + 'Feedback' => [ + 'tab_enabled' => '1', + 'recipient_email' => 'fake@fake.com', + ], + ]; + } + + /** + * Set up the page for testing. + * + * @param array $extraConfigs Top-level config.ini overrides + * + * @return Element + */ + protected function setupPage($extraConfigs = []) + { + // Set up configs + $this->changeConfigs( + [ + 'config' => $extraConfigs + $this->getConfigIniOverrides(), + ] + ); + + $session = $this->getMinkSession(); + $session->visit($this->getVuFindUrl()); + $this->snooze(); + return $session->getPage(); + } + + /** + * Test that feedback form can be successfully populated and submitted. + * + * @return void + */ + public function testFeedbackForm() + { + // By default, no OpenURL on record page: + $page = $this->setupPage(); + $this->findCss($page, '#feedbackLink')->click(); + $this->snooze(); + $this->findCss($page, '#modal .form-control[name="name"]')->setValue('Me'); + $this->findCss($page, '#modal .form-control[name="email"]') + ->setValue('test@test.com'); + $this->findCss($page, "#modal #comments")->setValue('test test test'); + $this->findCss($page, '#modal input[type="submit"]')->click(); + $this->snooze(); + $this->assertEquals( + 'Thank you for your feedback.', + $this->findCss($page, '#modal .alert-success')->getText() + ); + } +}