Nosetest和unittest.expectedFailures

时间:2016-05-25 07:55:53

标签: python unit-testing selenium nose

我目前正在使用Selenium,Python和nosetests测试我的网站。对于成功测试,一切都运行良好,我在失败测试中遇到了问题(我从未使用Python / Selenium / Nosetest进行测试......)。 对于以下测试:

 @unittest.expectedFailure
    def test_connection_failure(self):

        # Fill the username with the login only
        self.driver.find_element_by_id('form_identifiant').send_keys(test_login)

        # Send the form
        self.driver.find_element_by_id('form_submit').click()

        # Check the landing URL
        page_url = self.driver.current_url
        self.assertEqual(page_url, page_home)

我正在测试一个非常简单的案例:当您只输入登录信息时,您无法连接到该网站。所以我做的除外,当我比较我当前的页面URL和我应该在的页面,如果登录/密码对是正确的。

我从nosetests提示中收到以下消息:

[root@localhost AppGestion]# nosetests ConnectionTests.py
/usr/lib64/python2.7/unittest/case.py:380: RuntimeWarning: TestResult has no addExpectedFailure method, reporting as passes
  RuntimeWarning)

我只是不明白这个错误。我找到了" addExpectedFailure"在网上的方法,但没有找到如何使用它,在哪里把它...我想,因为测试实际上是由鼻子测试跳过。

任何线索?

1 个答案:

答案 0 :(得分:0)

装有nose来处理预期异常的装饰器是@raises(...)

http://nose.readthedocs.io/en/latest/testing_tools.html

但在你的情况下,你可以在没有装饰者的情况下使用assertNotEqual

def test_connection_failure(self):

    # Fill the username with the login only
    self.driver.find_element_by_id('form_identifiant').send_keys(test_login)

    # Send the form
    self.driver.find_element_by_id('form_submit').click()

    # Check the landing URL
    page_url = self.driver.current_url
    self.assertNotEqual(page_url, page_home)