Private
Public Access
1
0

passing all tests

This commit is contained in:
Sander Roosendaal
2019-02-13 22:22:13 +01:00
parent 292e703766
commit e1aea90651
5 changed files with 8 additions and 8 deletions

View File

@@ -271,21 +271,21 @@ class URLTests(TestCase):
html = BeautifulSoup(response.content,'html.parser')
if 'restore' in url:
print html.find_all('a')
urls = [a['href'] for a in html.find_all('a')]
for u in urls:
if u not in tested and 'rowers' in u and 'http' not in u and 'authorize' not in u and 'import' not in u and 'logout' not in u:
response = self.c.get(u)
if response.status_code not in [200,302]:
response2 = self.c.get(u)
if response2.status_code not in [200,302]:
print(len(tested))
print(response.templates[0].name)
print(url)
print(u)
print(response.status_code)
tested.append(u)
self.assertIn(response.status_code,
self.assertIn(response2.status_code,
[200,302])
else:
tested.append(u)

Binary file not shown.