1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
When /^I see and accept the Unsafe Browser start verification$/ do
next if @skip_steps_while_restoring_background
@screen.wait("UnsafeBrowserStartVerification.png", 30)
@screen.type("l", Sikuli::KeyModifier.ALT)
end
Then /^I see the Unsafe Browser start notification and wait for it to close$/ do
next if @skip_steps_while_restoring_background
@screen.wait("UnsafeBrowserStartNotification.png", 30)
@screen.waitVanish("UnsafeBrowserStartNotification.png", 10)
end
Then /^the Unsafe Browser has started$/ do
next if @skip_steps_while_restoring_background
@screen.wait("UnsafeBrowserHomepage.png", 360)
end
Then /^the Unsafe Browser has a red theme$/ do
next if @skip_steps_while_restoring_background
@screen.wait("UnsafeBrowserRedTheme.png", 10)
end
Then /^the Unsafe Browser shows a warning as its start page$/ do
next if @skip_steps_while_restoring_background
@screen.wait("UnsafeBrowserStartPage.png", 10)
end
When /^I start the Unsafe Browser$/ do
next if @skip_steps_while_restoring_background
@screen.wait_and_click("GnomeApplicationsMenu.png", 10)
@screen.wait_and_click("GnomeApplicationsInternet.png", 10)
@screen.wait_and_click("GnomeApplicationsUnsafeBrowser.png", 20)
end
When /^I successfully start the Unsafe Browser$/ do
next if @skip_steps_while_restoring_background
step "I start the Unsafe Browser"
step "I see and accept the Unsafe Browser start verification"
step "I see the Unsafe Browser start notification and wait for it to close"
step "the Unsafe Browser has started"
end
Then /^I see a warning about another instance already running$/ do
next if @skip_steps_while_restoring_background
@screen.wait('UnsafeBrowserWarnAlreadyRunning.png', 10)
end
When /^I close the Unsafe Browser$/ do
next if @skip_steps_while_restoring_background
@screen.type("q", Sikuli::KeyModifier.CTRL)
end
Then /^I see the Unsafe Browser stop notification$/ do
next if @skip_steps_while_restoring_background
@screen.wait('UnsafeBrowserStopNotification.png', 20)
@screen.waitVanish('UnsafeBrowserStopNotification.png', 10)
end
Then /^I can start the Unsafe Browser again$/ do
next if @skip_steps_while_restoring_background
step "I start the Unsafe Browser"
end
When /^I open a new tab in the Unsafe Browser$/ do
next if @skip_steps_while_restoring_background
@screen.wait_and_click("UnsafeBrowserWindow.png", 10)
@screen.type("t", Sikuli::KeyModifier.CTRL)
end
When /^I open the address "([^"]*)" in the Unsafe Browser$/ do |address|
next if @skip_steps_while_restoring_background
step "I open a new tab in the Unsafe Browser"
@screen.type("l", Sikuli::KeyModifier.CTRL)
sleep 0.5
@screen.type(address + Sikuli::Key.ENTER)
end
# Workaround until the TBB shows the menu bar by default
# https://lists.torproject.org/pipermail/tor-qa/2014-October/000478.html
def show_unsafe_browser_menu_bar
try_for(15, :msg => "Failed to show the menu bar") do
@screen.type("h", Sikuli::KeyModifier.ALT)
@screen.find('UnsafeBrowserEditMenu.png')
end
end
Then /^I cannot configure the Unsafe Browser to use any local proxies$/ do
next if @skip_steps_while_restoring_background
@screen.wait_and_click("UnsafeBrowserWindow.png", 10)
# First we open the proxy settings page to prepare it with the
# correct open tabs for the loop below.
show_unsafe_browser_menu_bar
@screen.hover('UnsafeBrowserEditMenu.png')
@screen.wait_and_click('UnsafeBrowserEditPreferences.png', 10)
@screen.wait('UnsafeBrowserPreferencesWindow.png', 10)
@screen.wait_and_click('UnsafeBrowserAdvancedSettings.png', 10)
@screen.wait_and_click('UnsafeBrowserNetworkTab.png', 10)
sleep 0.5
@screen.type(Sikuli::Key.ESC)
# @screen.waitVanish('UnsafeBrowserPreferences.png', 10)
sleep 0.5
http_proxy = 'x' # Alt+x is the shortcut to select http proxy
socks_proxy = 'c' # Alt+c for socks proxy
no_proxy = 'y' # Alt+y for no proxy
# Note: the loop below depends on that http_proxy is done after any
# other proxy types since it will set "Use this proxy server for all
# protocols", which will make the other proxy types unselectable.
proxies = [[socks_proxy, 9050],
[socks_proxy, 9061],
[socks_proxy, 9062],
[socks_proxy, 9150],
[http_proxy, 8118],
[no_proxy, 0]]
proxies.each do |proxy|
proxy_type = proxy[0]
proxy_port = proxy[1]
@screen.hide_cursor
# Open proxy settings and select manual proxy configuration
show_unsafe_browser_menu_bar
@screen.hover('UnsafeBrowserEditMenu.png')
@screen.wait_and_click('UnsafeBrowserEditPreferences.png', 10)
@screen.wait('UnsafeBrowserPreferencesWindow.png', 10)
@screen.type("e", Sikuli::KeyModifier.ALT)
@screen.wait('UnsafeBrowserProxySettings.png', 10)
@screen.type("m", Sikuli::KeyModifier.ALT)
# Configure the proxy
@screen.type(proxy_type, Sikuli::KeyModifier.ALT) # Select correct proxy type
@screen.type("127.0.0.1" + Sikuli::Key.TAB + "#{proxy_port}") if proxy_type != no_proxy
# For http proxy we set "Use this proxy server for all protocols"
@screen.type("s", Sikuli::KeyModifier.ALT) if proxy_type == http_proxy
# Close settings
@screen.type(Sikuli::Key.ENTER)
# @screen.waitVanish('UnsafeBrowserProxySettings.png', 10)
sleep 0.5
@screen.type(Sikuli::Key.ESC)
# @screen.waitVanish('UnsafeBrowserPreferences.png', 10)
sleep 0.5
# Test that the proxy settings work as they should
step "I open the address \"https://check.torproject.org\" in the Unsafe Browser"
if proxy_type == no_proxy
@screen.wait('UnsafeBrowserTorCheckFail.png', 60)
else
@screen.wait('UnsafeBrowserProxyRefused.png', 60)
end
end
end
|