Created
June 14, 2012 17:35
-
-
Save dkuebric/2931652 to your computer and use it in GitHub Desktop.
selenium test output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(venv)dan@dev1:~/code/tracelons/tracelytics/selenium[master]$ time SELENIUM_INI=../selenium-prod.ini SELENIUM_DOMAIN=tracelytics.com SELENIUM_CUSTOMER=internal ./run.py test_onboarding.py | |
Test load for step one. ... ok | |
Test load for welcome page. ... ok | |
Test load for step three. ... ok | |
Test load and ajax for onboarding step 1, no hosts. ... FAIL | |
Test load for step two. ... ok | |
Test load and ajax for onboarding step 2, no layers ... FAIL | |
Test load and ajax for onboarding step 2, with layers. ... FAIL | |
Test load and ajax for onboarding step 1, with hosts. ... FAIL | |
Test load and ajax for onboarding step 3, with fewer than 5 traces. ... FAIL | |
Test load and ajax for onboarding step 3, with 5 traces. ... FAIL | |
====================================================================== | |
FAIL: Test load and ajax for onboarding step 1, no hosts. | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/home/dan/code/tracelons/tracelytics/selenium/test_onboarding.py", line 38, in test_step1 | |
self.assertEquals(o.get_num_found_hosts(), 0) | |
AssertionError: 22 != 0 | |
====================================================================== | |
FAIL: Test load and ajax for onboarding step 2, no layers | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/home/dan/code/tracelons/tracelytics/selenium/test_onboarding.py", line 50, in test_step2 | |
self.assertEquals(o.get_num_found_layers(), 0) | |
AssertionError: 54 != 0 | |
====================================================================== | |
FAIL: Test load and ajax for onboarding step 2, with layers. | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/home/dan/code/tracelons/tracelytics/selenium/test_onboarding.py", line 56, in test_step2_with_layers | |
self.assertEquals(o.get_num_found_layers(), 1) | |
AssertionError: 54 != 1 | |
====================================================================== | |
FAIL: Test load and ajax for onboarding step 1, with hosts. | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/home/dan/code/tracelons/tracelytics/selenium/test_onboarding.py", line 44, in test_step1_with_hosts | |
self.assertEquals(o.get_num_found_hosts(), 1) | |
AssertionError: 22 != 1 | |
====================================================================== | |
FAIL: Test load and ajax for onboarding step 3, with fewer than 5 traces. | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/home/dan/code/tracelons/tracelytics/selenium/test_onboarding.py", line 62, in test_step3 | |
self.assertEquals(o.get_success_num_text(), '2 / 5') | |
AssertionError: u'0 / 5' != '2 / 5' | |
====================================================================== | |
FAIL: Test load and ajax for onboarding step 3, with 5 traces. | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/home/dan/code/tracelons/tracelytics/selenium/test_onboarding.py", line 69, in test_step3_success | |
self.assertEquals(o.get_success_num_text(), '5 / 5') | |
AssertionError: u'0 / 5' != '5 / 5' | |
---------------------------------------------------------------------- | |
Ran 10 tests in 89.477s | |
FAILED (failures=6) | |
real 1m30.460s | |
user 0m0.668s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment