def test404(self): content = Content() content.route = 'there_is_a_route_for_this' content.save() rsp = self.app.get('/there_is_no_route_for_this') eq_(rsp.status_code, 404)
def testContentIsMarkdown(self): content = Content() content.route = 'route' content.content = '#should be a heading 1#' content.save() rsp = self.app.get('/route') eq_(rsp.status_code, 200) e = etree.HTML(rsp.data) eq_(e.find(".//div[@id='content']/h1").text, 'should be a heading 1')
def testOtherRoute(self): content = Content() content.route = 'other' content.content = 'other content' content.save() rsp = self.app.get('/other') eq_(rsp.status_code, 200) e = etree.HTML(rsp.data) eq_(e.find(".//div[@id='content']/p").text, 'other content')
def testIndexRoute(self): content = Content() content.route = '/' content.title = 'Test Title' content.short_description = 'Test Description' content.content = 'Test Content' content.show_in_navigation = True content.save() NavigationOrder.add('/') rsp = self.app.get('/') eq_(rsp.status_code, 200) e = etree.HTML(rsp.data) eq_(e.find('./head/title').text, 'Test Title') eq_(e.find(".//div[@id='content']/p").text, 'Test Content') eq_(e.find(".//ul[@id='navigation']//a[@href='/']").text, 'Test Title')
def testMultipleHits(self): content1 = Content() content1.route = '/' content1.title = 'home' content1.content = 'thing' content1.show_in_navigation = True content1.save() content2 = Content() content2.route = 'thing' content2.title = 'thing' content2.content = 'thing2' content2.show_in_navigation = True content2.save() response_1 = self.app.get('/') eq_(response_1.status_code, 200) response_2 = self.app.get('thing') eq_(response_2.status_code, 200)