Selaa lähdekoodia

new URL, view and template to display lists

david 5 vuotta sitten
vanhempi
commit
a85e73e97a
6 muutettua tiedostoa jossa 19 lisäystä ja 15 poistoa
  1. 1 1
      functional_tests/tests.py
  2. 2 7
      lists/templates/home.html
  3. 10 4
      lists/tests.py
  4. 4 2
      lists/views.py
  5. 1 1
      superlists/settings.py
  6. 1 0
      superlists/urls.py

+ 1 - 1
functional_tests/tests.py

@@ -64,7 +64,7 @@ class NewVisitorTest(LiveServerTestCase):
         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('Buy super bugz outfit', page_text)
         self.assertNotIn('make a fly', page_text)
         inputbox = self.browser.find_element_by_id('id_new_item')
         inputbox.send_keys('Buy milk')

+ 2 - 7
lists/templates/home.html

@@ -3,15 +3,10 @@
         <title>To-Do lists</title>
     </head>
     <body>
-        <h1>Your To-Do list</h1>
-        <form method="POST">
+        <h1>Start a new To-Do list</h1>
+        <form method="POST" action="/">
             <input name="item_text" id="id_new_item" placeholder="Enter a to-do item"/>
             {% csrf_token %}
         </form>
-        <table id="id_list_table">
-            {% for item in items %}
-                <tr><td>{{forloop.counter}}: {{ item.text }}</td></tr>
-            {% endfor %}
-        </table>
     </body>
 </html>

+ 10 - 4
lists/tests.py

@@ -34,20 +34,26 @@ class HomePageTest(TestCase):
     def test_redirects_after_POST(self):
         response = self.client.post('/', data={'item_text': 'A new list item'})
         self.assertEqual(response.status_code, 302)
-        self.assertEqual(response['location'], '/')
+        self.assertEqual(response['location'], '/lists/the-only-list/')
 
     def test_only_saves_items_when_needed(self):
         self.client.get('/')
         self.assertEqual(Item.objects.count(), 0)
 
+class ListViewTest(TestCase):
+
+    def test_uses_list_template(self):
+        response = self.client.get('/lists/the-only-list/')
+        self.assertTemplateUsed(response, 'list.html')
+
     def test_displays_all_items(self):
         Item.objects.create(text='itemey 1')
         Item.objects.create(text='itemey 2')
 
-        response = self.client.get('/')
+        response = self.client.get('/lists/the-only-list/')
 
-        self.assertIn('itemey 1', response.content.decode())
-        self.assertIn('itemey 2', response.content.decode())
+        self.assertContains(response, 'itemey 1')
+        self.assertContains(response, 'itemey 2')
 
 class ItemModelTest(TestCase):
 

+ 4 - 2
lists/views.py

@@ -5,7 +5,9 @@ from lists.models import Item
 def home_page(request):
     if request.method == 'POST':
         Item.objects.create(text=request.POST['item_text'])
-        return redirect('/')
+        return redirect('/lists/the-only-list/')
+    return render(request, 'home.html')
 
+def view_list(request):
     items = Item.objects.all()
-    return render(request, 'home.html', {'items': items})
+    return render(request, 'list.html', {'items': items})

+ 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 = ['127.0.0.1']
+ALLOWED_HOSTS = ['localhost']
 
 
 # Application definition

+ 1 - 0
superlists/urls.py

@@ -18,4 +18,5 @@ from lists import views
 
 urlpatterns = [
     url(r'^$', views.home_page, name='home'),
+    url(r'^lists/the-only-list/$', views.view_list,  name='view_list'),
 ]