diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-31 00:52:21 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-31 12:13:06 -0700 |
commit | 701062f94d2cebede755d4f2c43e516b698341b1 (patch) | |
tree | b347912948527303c910024f351f01b926e72871 /python/tests/web_editing.py | |
parent | b7aed96075187af72b510c55e762d1e13c0a5306 (diff) | |
download | fatcat-701062f94d2cebede755d4f2c43e516b698341b1.tar.gz fatcat-701062f94d2cebede755d4f2c43e516b698341b1.zip |
fix typo bug resulting in lost/bad ext_id web edits
Diffstat (limited to 'python/tests/web_editing.py')
-rw-r--r-- | python/tests/web_editing.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/python/tests/web_editing.py b/python/tests/web_editing.py index 8386badb..fb8b3f93 100644 --- a/python/tests/web_editing.py +++ b/python/tests/web_editing.py @@ -24,6 +24,18 @@ def test_web_release_create_accept(app_admin, api): #assert b'badmojo' in rv.data assert b'Not a valid choice' in rv.data + # bad wikidata QID + rv = app_admin.post('/release/create', + data={ + 'editgroup_id': eg.editgroup_id, + 'release_type': 'article-journal', + 'release_stage': 'published', + 'title': 'something bogus', + 'wikidata_qid': '884', + }, + follow_redirects=True) + assert rv.status_code == 400 + # ok/valid submit rv = app_admin.post('/release/create', data={ @@ -31,9 +43,11 @@ def test_web_release_create_accept(app_admin, api): 'release_type': 'article-journal', 'release_stage': 'published', 'title': 'something bogus', + 'doi': '10.1234/999999', }, follow_redirects=True) assert rv.status_code == 200 + assert b'10.1234/999999' in rv.data rv = app_admin.get('/editgroup/{}'.format(eg.editgroup_id)) assert rv.status_code == 200 |