From 0e35b4deec15e12fc4b554b13d8f9637e9f37e77 Mon Sep 17 00:00:00 2001 From: Yves Hoppe Date: Sun, 31 May 2015 21:24:08 +0200 Subject: [PATCH] Added weblink category unpublishing test --- .../AdministratorCategoriesCest.php | 51 ++++++++++++++++++- 1 file changed, 49 insertions(+), 2 deletions(-) diff --git a/tests/acceptance/AdministratorCategoriesCest.php b/tests/acceptance/AdministratorCategoriesCest.php index 70b6626..035d7ce 100644 --- a/tests/acceptance/AdministratorCategoriesCest.php +++ b/tests/acceptance/AdministratorCategoriesCest.php @@ -56,7 +56,7 @@ class AdministratorCategoriesCest public function administratorPublishWeblink(AcceptanceTester $I) { $I->am('Administrator'); - $I->wantToTest('Category creation in /administrator/'); + $I->wantToTest('Category publishing in /administrator/'); $I->doAdministratorLogin(); @@ -85,7 +85,54 @@ class AdministratorCategoriesCest $I->amGoingTo('try to publish a weblink category'); $I->click(['xpath'=> "//button[@onclick=\"if (document.adminForm.boxchecked.value==0){alert('Please first make a selection from the list');}else{ Joomla.submitbutton('categories.publish')}\"]"]); $I->waitForText('Category Manager: Weblinks','5',['css' => 'h1']); - $I->expectTo('see a success message after saving the category'); + $I->expectTo('see a success message after publishing the category'); $I->see('1 category successfully published.',['id' => 'system-message-container']); } + + public function administratorUnpublishWeblink(AcceptanceTester $I) + { + $I->am('Administrator'); + $I->wantToTest('Category unpublishing in /administrator/'); + + $I->doAdministratorLogin(); + + $I->amGoingTo('Navigate to Categories page in /administrator/'); + $I->amOnPage('administrator/index.php?option=com_categories&extension=com_weblinks'); + $I->waitForText('Category Manager: Weblinks','5',['css' => 'h1']); + $I->expectTo('see categories page'); + $I->checkForPhpNoticesOrWarnings(); + + $I->amGoingTo('try to save a category with a filled title'); + $I->click(['xpath'=> "//button[@onclick=\"Joomla.submitbutton('category.add')\"]"]); + $I->waitForText('Category Manager: Add A New Weblinks Category','5',['css' => 'h1']); + $I->fillField(['id' => 'jform_title'],'automated testing unpub' . rand(1,100)); + $I->click(['xpath'=> "//button[@onclick=\"Joomla.submitbutton('category.save')\"]"]); + + $I->expectTo('see a success message after saving the category'); + $I->see('Category successfully saved',['id' => 'system-message-container']); + + $I->amGoingTo('Search for automated testing'); + $I->fillField(['xpath'=> "//input[@id=\"filter_search\"]"], "automated testing unpub" . "\n"); + + $I->waitForText('Category Manager: Weblinks','5',['css' => 'h1']); + $I->amGoingTo('Select the first weblink'); + $I->click(['xpath'=> "//input[@id=\"cb0\"]"]); + + $I->amGoingTo('Try to publish a weblink category'); + $I->click(['xpath'=> "//button[@onclick=\"if (document.adminForm.boxchecked.value==0){alert('Please first make a selection from the list');}else{ Joomla.submitbutton('categories.publish')}\"]"]); + $I->waitForText('Category Manager: Weblinks','5',['css' => 'h1']); + $I->expectTo('See a success message after publishing the category'); + $I->see('1 category successfully published.',['id' => 'system-message-container']); + + // Unpublish it again + $I->waitForText('Category Manager: Weblinks','5',['css' => 'h1']); + $I->amGoingTo('Select the first weblink'); + $I->click(['xpath'=> "//input[@id=\"cb0\"]"]); + + $I->amGoingTo('Try to unpublish a weblink category'); + $I->click(['xpath'=> "//button[@onclick=\"if (document.adminForm.boxchecked.value==0){alert('Please first make a selection from the list');}else{ Joomla.submitbutton('categories.unpublish')}\"]"]); + $I->waitForText('Category Manager: Weblinks','5',['css' => 'h1']); + $I->expectTo('See a success message after unpublishing the category'); + $I->see('1 category successfully unpublished',['id' => 'system-message-container']); + } } \ No newline at end of file