From 416117af51592b2a60b317427dc034544347b435 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Thu, 21 Jun 2018 18:22:12 -0700 Subject: implement webface lookups (by url; no search form) --- python/tests/routes.py | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'python/tests') diff --git a/python/tests/routes.py b/python/tests/routes.py index d0af67c9..b2cfd058 100644 --- a/python/tests/routes.py +++ b/python/tests/routes.py @@ -24,22 +24,40 @@ def test_all_views(app): rv = app.get('/{}/f1f046a3-45c9-ffff-ffff-ffffffffffff'.format(route)) assert rv.status_code == 404 - rv = app.get('/container/00000000-0000-0000-1111-000000000002'.format(route)) + rv = app.get('/container/00000000-0000-0000-1111-000000000002') assert rv.status_code == 200 rv = app.get('/container/create') assert rv.status_code == 200 - rv = app.get('/creator/00000000-0000-0000-2222-000000000002'.format(route)) + rv = app.get('/container/lookup') + assert rv.status_code == 400 + + rv = app.get('/container/lookup?issnl=9999-9999') + assert rv.status_code == 404 + + rv = app.get('/container/lookup?issnl=1234-5678') + assert rv.status_code == 302 + + rv = app.get('/creator/00000000-0000-0000-2222-000000000002') assert rv.status_code == 200 - rv = app.get('/file/00000000-0000-0000-3333-000000000002'.format(route)) + rv = app.get('/creator/lookup?orcid=0000-0003-2088-7465') + assert rv.status_code == 302 + + rv = app.get('/file/00000000-0000-0000-3333-000000000002') + assert rv.status_code == 200 + + rv = app.get('/file/lookup?sha1=7d97e98f8af710c7e7fe703abc8f639e0ee507c4') + assert rv.status_code == 302 + + rv = app.get('/release/00000000-0000-0000-4444-000000000002') assert rv.status_code == 200 rv = app.get('/release/00000000-0000-0000-4444-000000000002'.format(route)) assert rv.status_code == 200 - rv = app.get('/work/00000000-0000-0000-5555-000000000002'.format(route)) + rv = app.get('/work/00000000-0000-0000-5555-000000000002') assert rv.status_code == 200 rv = app.get('/work/create') -- cgit v1.2.3