-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathverify_framework.py
180 lines (160 loc) · 6.09 KB
/
verify_framework.py
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
""" SeleniumBase Verification """
if __name__ == "__main__":
from pytest import main
main([__file__, "-v", "-s"])
def test_simple_cases(pytester):
"""Verify a simple passing test and a simple failing test.
The failing test is marked as xfail to have it skipped."""
pytester.makepyfile(
"""
import pytest
from seleniumbase import BaseCase
class MyTestCase(BaseCase):
def test_passing(self):
self.assert_equal('yes', 'yes')
@pytest.mark.xfail
def test_failing(self):
self.assert_equal('yes', 'no')
"""
)
result = pytester.inline_run("--headless", "--rs", "-v")
assert result.matchreport("test_passing").passed
assert result.matchreport("test_failing").skipped
def test_basecase(pytester):
pytester.makepyfile(
"""
from seleniumbase import BaseCase
class MyTest(BaseCase):
def test_basecase(self):
self.open("data:text/html,<p>Hello<br><input></p>")
self.assert_element("html > body") # selector
self.assert_text("Hello", "body p") # text, selector
self.type("input", "Goodbye") # selector, text
self.click("body p") # selector
"""
)
result = pytester.inline_run("--headless", "-v")
assert result.matchreport("test_basecase").passed
def test_run_with_dashboard(pytester):
pytester.makepyfile(
"""
from seleniumbase import BaseCase
class MyTestCase(BaseCase):
def test_1_passing(self):
self.assert_equal('yes', 'yes')
def test_2_failing(self):
self.assert_equal('yes', 'no')
def test_3_skipped(self):
self.skip("Skip!")
"""
)
result = pytester.inline_run("--headless", "--rs", "--dashboard", "-v")
assert result.matchreport("test_1_passing").passed
assert result.matchreport("test_2_failing").failed
assert result.matchreport("test_3_skipped").skipped
def test_sb_fixture(pytester):
pytester.makepyfile(
"""
def test_sb_fixture(sb):
sb.open("data:text/html,<p>Hello<br><input></p>")
sb.assert_element("html > body") # selector
sb.assert_text("Hello", "body p") # text, selector
sb.type("input", "Goodbye") # selector, text
sb.click("body p") # selector
"""
)
result = pytester.inline_run("--headless", "-v")
assert result.matchreport("test_sb_fixture").passed
def test_request_sb_fixture(pytester):
pytester.makepyfile(
"""
def test_request_sb_fixture(request):
sb = request.getfixturevalue('sb')
sb.open("data:text/html,<p>Hello<br><input></p>")
sb.assert_element("html > body") # selector
sb.assert_text("Hello", "body p") # text, selector
sb.type("input", "Goodbye") # selector, text
sb.click("body p") # selector
sb.tearDown()
"""
)
result = pytester.inline_run("--headless", "-v")
assert result.matchreport("test_request_sb_fixture").passed
def check_outcome_field(outcomes, field_name, expected_value):
field_value = outcomes.get(field_name, 0)
assert field_value == expected_value, (
"outcomes.%s has an unexpected value! "
'Expected "%s" but got "%s"!'
% (field_name, expected_value, field_value)
)
def assert_outcomes(
result,
passed=1,
skipped=0,
failed=0,
xfailed=0,
xpassed=0,
rerun=0,
):
outcomes = result.parseoutcomes()
check_outcome_field(outcomes, "passed", passed)
check_outcome_field(outcomes, "skipped", skipped)
check_outcome_field(outcomes, "failed", failed)
check_outcome_field(outcomes, "xfailed", xfailed)
check_outcome_field(outcomes, "xpassed", xpassed)
check_outcome_field(outcomes, "rerun", rerun)
def test_rerun_failures(pytester):
pytester.makepyfile(
"""
from seleniumbase import BaseCase
class MyTestCase(BaseCase):
def test_passing(self):
self.assert_equal('yes', 'yes')
def test_failing(self):
self.assert_equal('yes', 'no')
"""
)
result = pytester.runpytest("--headless", "--reruns=1", "--rs", "-v")
assert_outcomes(result, passed=1, failed=1, rerun=1)
def test_browser_launcher(pytester):
pytester.makepyfile(
"""
from seleniumbase import get_driver
def test_browser_launcher():
success = False
try:
driver = get_driver("chrome", headless=True)
driver.get("data:text/html,<p>Data URL</p>")
source = driver.page_source
assert "Data URL" in source
success = True # No errors
finally:
driver.quit()
assert success
"""
)
result = pytester.inline_run("--headless", "-v")
assert result.matchreport("test_browser_launcher").passed
def test_framework_components(pytester):
pytester.makepyfile(
"""
from seleniumbase import get_driver
from seleniumbase import js_utils
from seleniumbase import page_actions
def test_framework_components():
success = False
try:
driver = get_driver("chrome", headless=True)
driver.get('data:text/html,<h1 class="top">Data URL</h2>')
source = driver.page_source
assert "Data URL" in source
assert page_actions.is_element_visible(driver, "h1.top")
js_utils.highlight_with_js(driver, "h1.top", 2, "")
success = True # No errors
finally:
driver.quit()
assert success
"""
)
result = pytester.inline_run("--headless", "-v", "-s")
assert result.matchreport("test_framework_components").passed