20

私は初めてでpytest、いくつかの機能テスト スクリプトを でうまく動作するものに変換しようとしていpytestます。with pytest.raises() as excinfoモジュールにカスタム エラー タイプがあり、そのメソッドを使用しようとしています。これは科学的/数値的なパッケージであり、特定のメソッドが呼び出されたときに一貫していることをテストする必要があるため、下位レベルのものにドリルダウンすることはできません。

4

1 に答える 1

40

特定の例外をインポートしてwith pytest.raisesステートメントで使用するのを妨げているのは何ですか? なぜこれが機能しないのですか?どのような問題に直面しているかを詳しく教えていただけるとより助かります。

# your code

class CustomError(Exception):
    pass


def foo():
    raise ValueError('everything is broken')

def bar():
    raise CustomError('still broken')    

#############    
# your test

import pytest
# import your module, or functions from it, incl. exception class    

def test_fooErrorHandling():
    with pytest.raises(ValueError) as excinfo:
        foo()
    assert excinfo.value.message == 'everything is broken'

def test_barSimpleErrorHandling():
    # don't care about the specific message
    with pytest.raises(CustomError):
        bar()

def test_barSpecificErrorHandling():
    # check the specific error message
    with pytest.raises(MyErr) as excinfo:
        bar()
    assert excinfo.value.message == 'oh no!'

def test_barWithoutImportingExceptionClass():
    # if for some reason you can't import the specific exception class,
    # catch it as generic and verify it's in the str(excinfo)
    with pytest.raises(Exception) as excinfo:
        bar()
    assert 'MyErr:' in str(excinfo)
于 2013-03-01T06:58:32.833 に答える