Selaa lähdekoodia

Single user test passes, Multi user test fails, currently

david 5 vuotta sitten
vanhempi
commit
b0c4d8f687
4 muutettua tiedostoa jossa 69 lisäystä ja 12 poistoa
  1. 17 0
      README.md
  2. 5 0
      SCRATCHPAD.txt
  3. 46 11
      functional_tests/tests.py
  4. 1 1
      superlists/settings.py

+ 17 - 0
README.md

@@ -2,6 +2,8 @@
 
 [TOC](https://www.obeythetestinggoat.com/book/toc.html)
 
+[GitHub Repo](https://github.com/hjwp/Book-TDD-Web-Dev-Python)
+
 [Last At](https://www.obeythetestinggoat.com/book/chapter_explicit_waits_1.html) (Chapter 6)
 
 ### TDD Order Of Operations:
@@ -13,3 +15,18 @@
 5. Rewrite code smaller/better, Refactor, DRY, etc.
 6. Run test and ensure it PASSES!
 7. Commit to a Git repo!
+
+### Upgrading Selenium, Geckodriver, and Chromedriver:
+
+1. ```pip install --upgrade selenium```,
+2. Download new Geckodriver, (Google "Geckodriver")
+3. Extract Geckodriver into virtenv/bin, (Python Virtual Environment)
+4. Download new Chromedriver, (Google "Chromedriver")
+5. Extract Chromedriver into virtenv/bin,
+
+Done.
+
+# ISSUE FOUND:
+Location: 6.3
+Where: Refactoring check_for_row_in_list_table()
+What: Why use ```return``` instead of ```break```?

+ 5 - 0
SCRATCHPAD.txt

@@ -4,3 +4,8 @@
 + Clean up after FT runs
 + Remove time.sleeps
 + Support more than 1 list!
+
++ Adjust model so that items are associated with different lists
++ Add unique URLs for each list
++ Add a URL for creating a new list via POST
++ Add URLs for adding a new item to an existing list via POST

+ 46 - 11
functional_tests/tests.py

@@ -1,8 +1,11 @@
 from django.test import LiveServerTestCase
 from selenium import webdriver
 from selenium.webdriver.common.keys import Keys
+from selenium.common.exceptions import WebDriverException
 import time
 
+MAX_WAIT = 10
+
 class NewVisitorTest(LiveServerTestCase):
 
     def setUp(self):
@@ -12,12 +15,20 @@ class NewVisitorTest(LiveServerTestCase):
     def tearDown(self):
         self.browser.quit()
 
-    def check_for_row_in_list_table(self, row_text):
-        table = self.browser.find_element_by_id('id_list_table')
-        rows = table.find_elements_by_tag_name('tr')
-        self.assertIn(row_text, [row.text for row in rows])
+    def wait_for_row_in_list_table(self, row_text):
+        start_time = time.time()
+        while True:
+            try:
+                table = self.browser.find_element_by_id('id_list_table')
+                rows = table.find_elements_by_tag_name('tr')
+                self.assertIn(row_text, [row.text for row in rows])
+                return
+            except (AssertionError, WebDriverException) as e:
+                if (time.time() - start_time) > MAX_WAIT:
+                    raise e
+                time.sleep(0.1)
 
-    def test_can_start_a_list_and_retrieve_it_later(self):
+    def test_can_start_a_list_for_one_user(self):
         self.browser.get(self.live_server_url)
         self.assertIn('To-Do', self.browser.title)
         header_text = self.browser.find_element_by_tag_name('h1').text
@@ -30,14 +41,38 @@ class NewVisitorTest(LiveServerTestCase):
         # ITEM 1
         inputbox.send_keys('Buy rubber ducks')
         inputbox.send_keys(Keys.ENTER)
-        time.sleep(1)
-        self.check_for_row_in_list_table('1: Buy rubber ducks')
+        self.wait_for_row_in_list_table('1: Buy rubber ducks')
         # ITEM 2
         inputbox = self.browser.find_element_by_id('id_new_item')
         inputbox.send_keys('Buy squirrel suits')
         inputbox.send_keys(Keys.ENTER)
-        time.sleep(1)
-        self.check_for_row_in_list_table('1: Buy rubber ducks')
-        self.check_for_row_in_list_table('2: Buy squirrel suits')
+        self.wait_for_row_in_list_table('1: Buy rubber ducks')
+        self.wait_for_row_in_list_table('2: Buy squirrel suits')
         # Done?
-        self.fail('Finish the test!')
+        #self.fail('Finish the test!')
+
+    def test_multi_users_can_start_list_diff_urls(self):
+        self.browser.get(self.live_server_url)
+        ib = self.browser.find_element_by_id('id_new_item')
+        ib.send_keys('Buy super bugz outfit')
+        ib.send_keys(Keys.ENTER)
+        self.wait_for_row_in_list_table('1: Buy super bugz outfit')
+        list_url = self.browser.current_url
+        self.assertRegex(list_url, '/lists/.+')
+        # NEW USER
+        self.browser.quit()
+        self.browser = webdriver.Chrome()
+        self.browser.get(self.live_server_url)
+        page_text = self.browser.find_element_by_tag_name('body').text
+        self.assertNotIn('Buy peacock feathers', page_text)
+        self.assertNotIn('make a fly', page_text)
+        inputbox = self.browser.find_element_by_id('id_new_item')
+        inputbox.send_keys('Buy milk')
+        inputbox.send_keys(Keys.ENTER)
+        self.wait_for_row_in_list_table('1: Buy milk')
+        francis_list_url = self.browser.current_url
+        self.assertRegex(francis_list_url, '/lists/.+')
+        self.assertNotEqual(francis_list_url, list_url)
+        page_text = self.browser.find_element_by_tag_name('body').text
+        self.assertNotIn('Buy peacock feathers', page_text)
+        self.assertIn('Buy milk', page_text)

+ 1 - 1
superlists/settings.py

@@ -25,7 +25,7 @@ SECRET_KEY = 'c83dcw6o=36bapl-#2jo^y1ca9!4!9sn8ut3mx97fq)(j)o)6l'
 # SECURITY WARNING: don't run with debug turned on in production!
 DEBUG = True
 
-ALLOWED_HOSTS = []
+ALLOWED_HOSTS = ['127.0.0.1']
 
 
 # Application definition