前提・実現したいこと
Pythonで単純に「hello world」とprintで標準出力する
ソースコードをunittestしたいのですが、
書き方がわかりません。
書き方がわかる方がいらっしゃいましたら、
ご教授頂けると幸いです。
該当のソースコード
テストしたいコードは、ただ「hello world」をprint出力するだけです。
hoge.py
Python
1print('hello world')
このコードに対し、「hello world」が出力されたことを
確認するテストコードを書きたいです。
次のサイトの内容を参考にして
テストコードを書いてみました。
参考にしたソースのURL
[Dd]enzow(ill)? with DB and Python
Pythonのunittestで標準出力のテストを作る
うまくいかなかったテストコード
test_hoge.py
Python
1import unittest 2import sys 3from io import StringIO 4import hoge 5 6class MogeTest(unittest.TestCase): 7 def setUp(self): 8 self.org_stdout, sys.stdout = sys.stdout, StringIO() 9 10 def tearDown(self): 11 sys.stdout = self.org_stdout 12 13 def test_hello(self): 14 hoge #ここで「hello world」が呼び出される 15 expected = 'hello world\n' 16 self.assertEqual(expected, sys.stdout.getvalue())
上記のテストコードを実行すると、失敗します。
python -m unittest -v tests.test_hoge
hello world ←ここに標準出力がでてしまう test_hello (tests.test_hoge.MogeTest) ... FAIL ====================================================================== FAIL: test_hello (tests.test_hoge.MogeTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "C:XXX\tests\test_hoge.py", line 16, in test_hello self.assertEqual(expected, sys.stdout.getvalue()) AssertionError: 'hello world\n' != '' ←hogeの結果がセットされず空白になっている - hello world ---------------------------------------------------------------------- Ran 1 test in 0.001s FAILED (failures=1)
試したこと
呼び出された関数内でprintが使われている場合は、
うまくテストできました。
テストしたいソース
moge.py
Python
1def hello(): 2 print('hello world')
対応するunittest
test_moge.py
Python
1import unittest 2import sys 3from io import StringIO 4import moge 5 6class MogeTest(unittest.TestCase): 7 def setUp(self): 8 self.org_stdout, sys.stdout = sys.stdout, StringIO() 9 10 def tearDown(self): 11 sys.stdout = self.org_stdout 12 13 def test_hello(self): 14 moge.hello() 15 expected = 'hello world\n' 16 self.assertEqual(expected, sys.stdout.getvalue())
テスト結果
python -m unittest -v tests.test_moge test_hello (tests.test_moge.MogeTest) ... ok ---------------------------------------------------------------------- Ran 1 test in 0.000s OK
ご教授のほど、よろしくお願いいたします。
回答4件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。