Commit 3fe4146a authored by cianlaguesma's avatar cianlaguesma

edited htmls and heroes.html file, and finalized functin tests

parent feb84c71
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
</head> </head>
<body> <body>
<img src="./cloud.png" style="width: 10vw;" /> <img src="./cloud.png" style="width: 10vw;" />
<h1>Detail - Cloud</h1> <h1 id="cloud_detail">Detail - Cloud</h1>
<dl> <dl>
<dt>Health Points</dt> <dt>Health Points</dt>
<dd>600</dd> <dd>600</dd>
...@@ -16,5 +16,6 @@ ...@@ -16,5 +16,6 @@
<dt>Lore</dt> <dt>Lore</dt>
<dd>I am a cloud. When I pee you call it 'rain'.</dd> <dd>I am a cloud. When I pee you call it 'rain'.</dd>
</dl> </dl>
<button><a href="/heroes">Back to Heroes List</a></button>
</body> </body>
</html> </html>
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
</head> </head>
<body> <body>
<img src="./jester.png" style="width: 10vw;" /> <img src="./jester.png" style="width: 10vw;" />
<h1>Detail - Jester</h1> <h1 id="jester_detail">Detail - Jester</h1>
<dl> <dl>
<dt>Health Points</dt> <dt>Health Points</dt>
<dd>660</dd> <dd>660</dd>
...@@ -16,5 +16,6 @@ ...@@ -16,5 +16,6 @@
<dt>Lore</dt> <dt>Lore</dt>
<dd>I do it for the LOLs.</dd> <dd>I do it for the LOLs.</dd>
</dl> </dl>
<button><a href="/heroes">Back to Heroes List</a></button>
</body> </body>
</html> </html>
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
</head> </head>
<body> <body>
<img src="./sunflowey.png" style="width: 10vw;" /> <img src="./sunflowey.png" style="width: 10vw;" />
<h1>Detail - Sunflowey</h1> <h1 id="sunflowey_detail">Detail - Sunflowey</h1>
<dl> <dl>
<dt>Health Points</dt> <dt>Health Points</dt>
<dd>650</dd> <dd>650</dd>
...@@ -16,5 +16,6 @@ ...@@ -16,5 +16,6 @@
<dt>Lore</dt> <dt>Lore</dt>
<dd>I am Sunflowey. Sometimes a sun, sometimes a flower.</dd> <dd>I am Sunflowey. Sometimes a sun, sometimes a flower.</dd>
</dl> </dl>
<button><a href="/heroes">Back to Heroes List</a></button>
</body> </body>
</html> </html>
<html> <html>
<head> <head>
<h1>The Will of the Wisps Wiki</h1> <title>The Will of the Wisps Wiki</title>
</head> </head>
<body>
<h1 id="wiki">The Will of the Wisps</h1>
<h1 id="cloud"><a href="/hero/cloud">Cloud</a></h1>
<h1>Detail - Cloud</h1>
<dl>
<dt id="health_cloud">Health Points</dt>
<dd>600</dd>
<dt id="attack_cloud">Base Attack Damage</dt>
<dd>57</dd>
</dl>
<h1 id="jester"><a href="/hero/jester">Jester</a></h1>
<h1>Detail - Jester</h1>
<dl>
<dt id="health_jester">Health Points</dt>
<dd>660</dd>
<dt id="attack_jester">Base Attack Damage</dt>
<dd>64</dd>
</dl>
<h1 id="sunflowey"><a href="/hero/sunflowey">Sunflowey</a></h1>
<h1>Detail - Sunflowey</h1>
<dl>
<dt id="health_sunflowey">Health Points</dt>
<dd>650</dd>
<dt id="attack_sunflowey">Base Attack Damage</dt>
<dd>43</dd>
</dl>
</body>
</html> </html>
...@@ -12,22 +12,39 @@ class NewVisitorTest(unittest.TestCase): ...@@ -12,22 +12,39 @@ class NewVisitorTest(unittest.TestCase):
def test_can_display_a_heroes_list_and_more_information_per_hero(self): def test_can_display_a_heroes_list_and_more_information_per_hero(self):
# Widget has heard about a new wiki app for the game called The Will of the Wisps. # Widget has heard about a new wiki app for the game called The Will of the Wisps.
# She goes to check out its homepage # She goes to check out its homepage
browser.get('http://localhost:8000/heroes') self.browser.get('http://localhost:8000/heroes')
# She notices the page title and header mention # She notices the page title and header mention
# 'The Will of the Wisps Wiki' # 'The Will of the Wisps Wiki'
self.assertIn('The Will of the Wisps Wiki', self.browser.title) self.assertIn('The Will of the Wisps Wiki', self.browser.title)
self.assertTrue(self.browser.find_element_by_id("wiki"))
# She sees a list containing three heroes with their corresponding # She sees a list containing three heroes with their corresponding
# names, health points, and damage # names, health points, and damage
self.assertIn('') self.assertTrue(self.browser.find_element_by_id("cloud"))
self.assertTrue(self.browser.find_element_by_id("health_cloud"))
self.assertTrue(self.browser.find_element_by_id("attack_cloud"))
self.assertTrue(self.browser.find_element_by_id("jester"))
self.assertTrue(self.browser.find_element_by_id("health_jester"))
self.assertTrue(self.browser.find_element_by_id("attack_jester"))
self.assertTrue(self.browser.find_element_by_id("sunflowey"))
self.assertTrue(self.browser.find_element_by_id("health_sunflowey"))
self.assertTrue(self.browser.find_element_by_id("attack_sunflowey"))
# When she selects one of the heroes, she is sent to another page # When she selects one of the heroes, she is sent to another page
# containing more information about the hero (additional stats, lore, image). # containing more information about the hero (additional stats, lore, image).
self.browser.get('http://localhost:8000/hero/cloud')
# She spots the page title and header mentions the name of the hero she selected. # She spots the page title and header mentions the name of the hero she selected.
self.assertIn("Detail - Cloud", self.browser.title)
self.assertTrue(self.browser.find_element_by_id("cloud_detail"))
# While she is in a specific hero's page, she sees a button labeled "Back to Heroes List". # While she is in a specific hero's page, she sees a button labeled "Back to Heroes List".
self.assertTrue(self.browser.find_elements_by_tag_name("button"))
# She clicks this and she is redirected back to the wiki's homepage. # She clicks this and she is redirected back to the wiki's homepage.
self.browser.get("http://localhost:8000/heroes")
self.fail('Finish the test!') self.fail('Finish the test!')
if __name__ == '__main__':
unittest.main(warnings='ignore')
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment