mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-24 06:59:52 +01:00
60 lines
1.9 KiB
Python
60 lines
1.9 KiB
Python
import webtest
|
|
from pywb.webapp.pywb_init import create_wb_router
|
|
from pywb.framework.wsgi_wrappers import init_app
|
|
|
|
from memento_fixture import *
|
|
|
|
class TestMementoFrameInverse(MementoMixin):
|
|
TEST_CONFIG = 'tests/test_config_frames.yaml'
|
|
|
|
def setup(self):
|
|
self.app = init_app(create_wb_router,
|
|
load_yaml=True,
|
|
config_file=self.TEST_CONFIG)
|
|
|
|
self.testapp = webtest.TestApp(self.app)
|
|
|
|
def test_top_frame_replay(self):
|
|
resp = self.testapp.get('/pywb/20140127171238/http://www.iana.org/')
|
|
|
|
# Memento Headers
|
|
# no vary header
|
|
assert VARY not in resp.headers
|
|
assert MEMENTO_DATETIME in resp.headers
|
|
|
|
# memento link
|
|
dt = 'Mon, 27 Jan 2014 17:12:38 GMT'
|
|
|
|
links = self.get_links(resp)
|
|
assert self.make_memento_link('http://www.iana.org/', '20140127171238mp_', dt) in links
|
|
|
|
#timegate link
|
|
assert '<http://localhost:80/pywb/mp_/http://www.iana.org/>; rel="timegate"' in links
|
|
|
|
# Body
|
|
assert '<iframe ' in resp.body
|
|
assert '/pywb/20140127171238mp_/http://www.iana.org/' in resp.body, resp.body
|
|
|
|
def test_inner_replay(self):
|
|
resp = self.testapp.get('/pywb/20140127171238mp_/http://www.iana.org/')
|
|
|
|
# Memento Headers
|
|
# no vary header
|
|
assert VARY not in resp.headers
|
|
assert MEMENTO_DATETIME in resp.headers
|
|
|
|
# memento link
|
|
dt = 'Mon, 27 Jan 2014 17:12:38 GMT'
|
|
|
|
links = self.get_links(resp)
|
|
assert self.make_memento_link('http://www.iana.org/', '20140127171238mp_', dt) in links
|
|
|
|
# timegate link
|
|
assert '<http://localhost:80/pywb/mp_/http://www.iana.org/>; rel="timegate"' in links
|
|
|
|
# Body
|
|
assert '"20140127171238"' in resp.body
|
|
assert 'wb.js' in resp.body
|
|
assert 'new _WBWombat' in resp.body, resp.body
|
|
assert '/pywb/20140127171238mp_/http://www.iana.org/time-zones"' in resp.body
|