forked from webpy/webpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser.py
64 lines (52 loc) · 1.6 KB
/
browser.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import webtest
import web
urls = (
"/", "index",
"/hello/(.*)", "hello",
"/cookie", "cookie",
"/setcookie", "setcookie",
"/redirect", "redirect",
)
app = web.application(urls, globals())
class index:
def GET(self):
return "welcome"
class hello:
def GET(self, name):
name = name or 'world'
return "hello, " + name + '!'
class cookie:
def GET(self):
return ",".join(sorted(web.cookies().keys()))
class setcookie:
def GET(self):
i = web.input()
for k, v in i.items():
web.setcookie(k, v)
return "done"
class redirect:
def GET(self):
i = web.input(url='/')
raise web.seeother(i.url)
class BrowserTest(webtest.TestCase):
def testCookies(self):
b = app.browser()
b.open('http://0.0.0.0/setcookie?x=1&y=2')
b.open('http://0.0.0.0/cookie')
self.assertEquals(b.data, 'x,y')
def testNotfound(self):
b = app.browser()
b.open('http://0.0.0.0/notfound')
self.assertEquals(b.status, 404)
def testRedirect(self):
b = app.browser()
b.open('http://0.0.0.0:8080/redirect')
self.assertEquals(b.url, 'http://0.0.0.0:8080/')
b.open('http://0.0.0.0:8080/redirect?url=/hello/foo')
self.assertEquals(b.url, 'http://0.0.0.0:8080/hello/foo')
b.open('https://0.0.0.0:8080/redirect')
self.assertEquals(b.url, 'https://0.0.0.0:8080/')
b.open('https://0.0.0.0:8080/redirect?url=/hello/foo')
self.assertEquals(b.url, 'https://0.0.0.0:8080/hello/foo')
if __name__ == "__main__":
webtest.main()