summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Hands <phil@hands.com>2016-06-01 22:57:00 +0200
committerPhilip Hands <phil@hands.com>2016-06-02 00:20:25 +0200
commitabe5307ee1eca23144fc14f5ed2863123641aaef (patch)
treef8e856bfc006c2f5b8ec19e1fc14ece25f1b720e
parent755ebbdd386c156dd53d33ece89170684eadf115 (diff)
downloadjenkins.debian.net-abe5307ee1eca23144fc14f5ed2863123641aaef.tar.xz
lvc: discard the sleeps that were inserted in debugging
-rw-r--r--cucumber/features/step_definitions/common_steps.rb24
1 files changed, 6 insertions, 18 deletions
diff --git a/cucumber/features/step_definitions/common_steps.rb b/cucumber/features/step_definitions/common_steps.rb
index 7c16e871..0d474b3a 100644
--- a/cucumber/features/step_definitions/common_steps.rb
+++ b/cucumber/features/step_definitions/common_steps.rb
@@ -346,15 +346,12 @@ end
Given /^I select full-disk, single-filesystem partitioning$/ do
@screen.wait(diui_png("PartitioningMethod"), 60 * PATIENCE)
- sleep(10 * PATIENCE)
- @screen.wait(diui_png("PartitioningMethod"), 10 * PATIENCE)
@screen.type(Sikuli::Key.ENTER)
@screen.wait(diui_png("SelectDiskToPartition"), 10 * PATIENCE)
@screen.type(Sikuli::Key.ENTER)
@screen.wait(diui_png("PartitioningScheme"), 10 * PATIENCE)
@screen.type(Sikuli::Key.ENTER)
@screen.wait(diui_png("FinishPartitioning"), 10 * PATIENCE)
- sleep(5 * PATIENCE) # FIXME -- why do we need this? It's weird that the wait is not enough
@screen.type(Sikuli::Key.ENTER)
# prompt about Writing Partitions to disk:
@screen.wait(diui_png("No"), 10 * PATIENCE)
@@ -419,10 +416,6 @@ end
Given /^I select the non-GUI task$/ do
@screen.wait(diui_png("DesktopTask_Yes"), 2 * 60 * PATIENCE)
- # deal with post-snapshot screen flicker FIXME -- check if we really need this
- sleep(5 * PATIENCE)
- @screen.wait(diui_png("DesktopTask_Yes"), 10 * PATIENCE)
-
@screen.type(Sikuli::Key.SPACE)
@screen.waitVanish(diui_png("DesktopTask_Yes"), 10 * PATIENCE)
@@ -437,10 +430,6 @@ end
Given /^I select the minimal task$/ do
@screen.wait(diui_png("DesktopTask_Yes"), 2 * 60 * PATIENCE)
- # deal with post-snapshot screen flicker FIXME -- check if we really need this
- sleep(5 * PATIENCE)
- @screen.wait(diui_png("DesktopTask_Yes"), 10 * PATIENCE)
-
@screen.type(Sikuli::Key.SPACE)
8.times do
@screen.type(Sikuli::Key.DOWN)
@@ -458,20 +447,21 @@ end
Given /^I select the ([A-Z][[:alpha:]]*) task$/ do |desktop|
@screen.wait(diui_png("DesktopTask_Yes"), 2 * 60 * PATIENCE)
-
- # deal with post-snapshot screen flicker -- FIXME this needs to be fixed via looking to see if the remote login is working before we look at the screen
- debug_log("debug: Found DesktopTask_Yes, pausing for 20s", :color => :blue)
- sleep(20 * PATIENCE)
+ debug_log("debug: Found DesktopTask_Yes", :color => :blue)
menu = [ '_', 'Gnome', 'XFCE', 'KDE', 'Cinamon', 'MATE', 'LXDE' ]
+
menu.index(desktop).times do
+ info_log("PGH: DOWN (#{desktop})")
@screen.type(Sikuli::Key.DOWN)
end
@screen.type(Sikuli::Key.SPACE)
expected_result = "Desktop+" + desktop
@screen.wait(diui_png(expected_result), 10 * PATIENCE)
+ sleep(20)
+
if "gui" == @ui_mode
@screen.wait(diui_png("CONTINUEunselected"), 10 * PATIENCE)
@screen.type(Sikuli::Key.TAB)
@@ -518,9 +508,7 @@ end
Given /^I install GRUB$/ do
@screen.wait(diui_png("InstallGRUB"), 2 * 60 * PATIENCE)
debug_log("debug: Found InstallGRUB", :color => :blue)
- sleep(10 * PATIENCE) # FIXME -- this is a kludge to deal with the snapshot coming back -- should be done via the remote shell check instead
- @screen.wait(diui_png("InstallGRUB"), 10 * PATIENCE)
- debug_log("debug: Found InstallGRUB (again)", :color => :blue)
+
if "gui" == @ui_mode
debug_log("debug: We're in GUI mode", :color => :blue)
@screen.wait(diui_png("CONTINUEunselected"), 10 * PATIENCE)