From 9b6ec1f545da1cc4088ddf9cc117747954e58e65 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Fri, 26 Feb 2016 17:57:55 +0000 Subject: Bug 1069799 - move the QA repository into the main repository r=LpSolit --- xt/selenium/show_all_products.t | 56 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 xt/selenium/show_all_products.t (limited to 'xt/selenium/show_all_products.t') diff --git a/xt/selenium/show_all_products.t b/xt/selenium/show_all_products.t new file mode 100644 index 000000000..894554665 --- /dev/null +++ b/xt/selenium/show_all_products.t @@ -0,0 +1,56 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This Source Code Form is "Incompatible With Secondary Licenses", as +# defined by the Mozilla Public License, v. 2.0. + +use 5.10.1; +use strict; +use warnings; + +use FindBin qw($RealBin); +use lib "$RealBin/../lib"; + +use Test::More "no_plan"; + +use QA::Util; + +my ($sel, $config) = get_selenium(); + +log_in($sel, $config, 'admin'); +set_parameters($sel, { "Bug Fields" => {"useclassification-on" => undef} }); + +# Do not use file_bug_in_product() because our goal here is not to file +# a bug but to check what is present in the UI, and also to make sure +# that we get exactly the right page with the right information. +# +# The admin is not a member of the "QA‑Selenium‑TEST" group, and so +# cannot see the "QA‑Selenium‑TEST" product. + +$sel->click_ok("link=New"); +$sel->wait_for_page_to_load_ok(WAIT_TIME); +$sel->is_text_present_ok("Select Classification"); +my $full_text = trim($sel->get_body_text()); +ok($full_text =~ /All: Show all products/, "The 'All' link is displayed"); +$sel->click_ok("link=All"); +$sel->wait_for_page_to_load_ok(WAIT_TIME); +$sel->is_text_present_ok("Select Product"); +ok(!$sel->is_text_present("QA-Selenium-TEST"), "The QA-Selenium-TEST product is not displayed"); +logout($sel); + +# Same steps, but for a member of the "QA‑Selenium‑TEST" group. +# The "QA‑Selenium‑TEST" product must be visible to him. + +log_in($sel, $config, 'QA_Selenium_TEST'); +$sel->click_ok("link=New"); +$sel->wait_for_page_to_load_ok(WAIT_TIME); +$sel->is_text_present_ok("Select Classification"); +$sel->click_ok("link=All"); +$sel->wait_for_page_to_load_ok(WAIT_TIME); +$sel->is_text_present_ok("Select Product"); +$sel->is_text_present_ok("QA-Selenium-TEST"); +$sel->click_ok('//a[contains(@href, "product=QA-Selenium-TEST")]'); +$sel->wait_for_page_to_load_ok(WAIT_TIME); +$sel->title_is("Enter Bug: QA-Selenium-TEST"); +logout($sel); -- cgit v1.2.3-24-g4f1b