Selaa lähdekoodia

FT now correctly tests 1 item, but more than that fails.

david 5 vuotta sitten
vanhempi
commit
ba498eb99f
4 muutettua tiedostoa jossa 28 lisäystä ja 10 poistoa
  1. 13 6
      functional_tests.py
  2. 5 1
      lists/templates/home.html
  3. 6 2
      lists/tests.py
  4. 4 1
      lists/views.py

+ 13 - 6
functional_tests.py

@@ -22,15 +22,22 @@ class NewVisitorTest(unittest.TestCase):
             inputbox.get_attribute('placeholder'),
             'Enter a to-do item'
         )
-        inputbox.send_keys('Buy peacock feathers')
+        # ITEM 1
+        inputbox.send_keys('Buy rubber ducks')
         inputbox.send_keys(Keys.ENTER)
-        time.sleep(1)
+        time.sleep(3) # When in doubt, increase it / add a wait!
         table = self.browser.find_element_by_id('id_list_table')
         rows = table.find_elements_by_tag_name('tr')
-        self.assertTrue(
-            any(row.text == '1: Buy peacock feathers' for row in rows),
-            "New to-do item did not show up in table!"
-        )
+        self.assertIn('1: Buy rubber ducks', [row.text for row in rows])
+        # 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(3) # When in doubt, increase it / add a wait!
+        table = self.browser.find_element_by_id('id_list_table')
+        rows = table.find_elements_by_tag_name('tr')
+        self.assertIn('2: Buy squirrel suits', [row.text for row in rows])
+        # Done?
         self.fail('Finish the test!')
 
 if __name__ == '__main__':

+ 5 - 1
lists/templates/home.html

@@ -4,8 +4,12 @@
     </head>
     <body>
         <h1>Your To-Do list</h1>
-        <input id="id_new_item" placeholder="Enter a to-do item"/>
+        <form method="POST">
+            <input name="item_text" id="id_new_item" placeholder="Enter a to-do item"/>
+            {% csrf_token %}
+        </form>
         <table id="id_list_table">
+            <tr><td>1: {{ new_item_text }}</td></tr>
         </table>
     </body>
 </html>

+ 6 - 2
lists/tests.py

@@ -12,8 +12,7 @@ class HomePageTest(TestCase):
         found = resolve('/')
         self.assertEqual(found.func, home_page)
 
-
-    def test_home_page_returns_correct_html(self):
+    def test_uses_home_template(self):
         response = self.client.get('/')
 
         # The Manual Way of doing it:
@@ -24,3 +23,8 @@ class HomePageTest(TestCase):
 
         # Using Django's Builtin Testing Client:
         self.assertTemplateUsed(response, 'home.html')
+
+    def test_can_save_POST_request(self):
+        response = self.client.post('/', data={'item_text': 'A new list item'})
+        self.assertIn('A new list item', response.content.decode())
+        self.assertTemplateUsed(response, 'home.html')

+ 4 - 1
lists/views.py

@@ -1,4 +1,7 @@
 from django.shortcuts import render
+#from django.http import HttpResponse
 
 def home_page(request):
-    return render(request, 'home.html')
+    return render(request, 'home.html', {
+        'new_item_text': request.POST.get('item_text', ''),
+    })