djangoのtestを初めて行います。
http://127.0.0.1:8000/community/はログインユーザーしかアクセスできないようになっているので以下のコードではtestが失敗してしまいます。
python
1#community/tests.py 2from django.test import TestCase 3from django.test import LiveServerTestCase 4from django.urls.base import reverse 5from selenium.webdriver.chrome.webdriver import WebDriver 6from django.urls import reverse_lazy 7 8#投稿する 9class TestPost(LiveServerTestCase): 10 #テストの開始 11 @classmethod 12 def setUpClass(cls): 13 super().setUpClass() 14 cls.selenium = WebDriver(executable_path='/usr/local/bin/chromedriver') 15 16 #テストの終了 17 @classmethod 18 def tearDownClass(cls): 19 cls.selenium.quit() 20 21 def test_post(self): 22 self.selenium.get("http://127.0.0.1:8000/community/") 23 self.selenium.find_element_by_name("post").click() 24 title = self.selenium.find_element_by_name("title") 25 title.send_keys("これはテストです") 26 topic = self.selenium.find_element_by_name("topic") 27 topic.select_by_index(0) 28 message = self.selenium.find_element_by_name("message") 29 message.send_keys("これはテストです") 30 self.selenium.find_element_by_name("createPost").click()
accountsアプリケーションの方のtests.pyに以下のようなログインテストを記述しているのですが、ログインユーザーしかアクセスできないページのテストは毎回test_loginのような関数を書かなければならないのでしょうか。
python
1#accounts/tests.py 2from django.test import TestCase 3from django.test import LiveServerTestCase 4from django.urls.base import reverse 5from selenium.webdriver.chrome.webdriver import WebDriver 6from django.urls import reverse_lazy 7 8#ログインテスト 9class TestLogin(LiveServerTestCase): 10 #テストの開始 11 @classmethod 12 def setUpClass(cls): 13 super().setUpClass() 14 cls.selenium = WebDriver(executable_path='/usr/local/bin/chromedriver') 15 16 #テストの終了 17 @classmethod 18 def tearDownClass(cls): 19 cls.selenium.quit() 20 21 def test_login(self): 22 self.selenium.get("http://127.0.0.1:8000/accounts/login/") 23 username_input = self.selenium.find_element_by_name("login") 24 username_input.send_keys("seyu0930@icloud.com") 25 password_input = self.selenium.find_element_by_name("password") 26 password_input.send_keys("Yusei0930") 27 self.selenium.find_element_by_xpath("/html/body/form/button").click()
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。