1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

tests: use httpbin for redirect tests

This commit is contained in:
Ilya Kreymer 2014-10-29 09:47:32 -07:00
parent 61ce53a0e0
commit f14f37d5b1
2 changed files with 4 additions and 4 deletions

View File

@ -105,10 +105,10 @@ def test_example_1():
assert '/pywb/20131226101010/http://www.iana.org/domains/example' in buff, buff
def test_example_2_redirect():
status_headers, buff = get_rewritten('http://facebook.com/', urlrewriter)
status_headers, buff = get_rewritten('http://httpbin.org/redirect-to?url=http://example.com/', urlrewriter)
# redirect, no content
assert status_headers.get_statuscode() == '301'
assert status_headers.get_statuscode() == '302'
assert len(buff) == 0

View File

@ -14,8 +14,8 @@ class TestLiveRewriter:
assert resp.status_int == 200
def test_live_rewrite_redirect_2(self):
resp = self.testapp.get('/rewrite/http://facebook.com/')
assert resp.status_int == 301
resp = self.testapp.get('/rewrite/http://httpbin.org/redirect-to?url=http://example.com/')
assert resp.status_int == 302
def test_live_rewrite_post(self):
resp = self.testapp.post('/rewrite/httpbin.org/post', {'foo': 'bar', 'test': 'abc'})