forked from inveniosoftware/invenio-records-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* NEW Introduces new cached property on extension state called `default_endpoint_prefixes` that maps `pid_type` to an `endpoint-prefix` used to build endpoints. (closes inveniosoftware#101) Reviewed-by: Jiri Kuncar <[email protected]> Signed-off-by: Samuele Kaplun <[email protected]>
- Loading branch information
1 parent
3fad849
commit c79ce2e
Showing
7 changed files
with
236 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# This file is part of Invenio. | ||
# Copyright (C) 2016 CERN. | ||
# | ||
# Invenio is free software; you can redistribute it | ||
# and/or modify it under the terms of the GNU General Public License as | ||
# published by the Free Software Foundation; either version 2 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# Invenio is distributed in the hope that it will be | ||
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with Invenio; if not, write to the | ||
# Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, | ||
# MA 02111-1307, USA. | ||
# | ||
# In applying this license, CERN does not | ||
# waive the privileges and immunities granted to it by virtue of its status | ||
# as an Intergovernmental Organization or submit itself to any jurisdiction. | ||
|
||
|
||
"""Utils tests.""" | ||
|
||
from __future__ import absolute_import, print_function | ||
|
||
import pytest | ||
|
||
from invenio_records_rest.proxies import current_records_rest | ||
from invenio_records_rest.utils import get_default_endpoint_for | ||
|
||
|
||
@pytest.mark.parametrize('app', [dict( | ||
records_rest_endpoints=dict( | ||
recid=dict( | ||
pid_type='recid', | ||
default_endpoint_prefix=False, | ||
) | ||
))], indirect=['app']) | ||
def test_build_default_endpoint_prefixes_simple(app): | ||
with app.test_client(): | ||
assert current_records_rest.default_endpoint_prefixes['recid'] == \ | ||
'recid' | ||
|
||
|
||
@pytest.mark.parametrize('app', [dict( | ||
records_rest_endpoints=dict( | ||
recid=dict( | ||
pid_type='recid', | ||
default_endpoint_prefix=True, | ||
) | ||
))], indirect=['app']) | ||
def test_build_default_endpoint_prefixes_simple_with_default(app): | ||
with app.test_client(): | ||
assert current_records_rest.default_endpoint_prefixes['recid'] == \ | ||
'recid' | ||
|
||
|
||
@pytest.mark.parametrize('app', [dict( | ||
records_rest_endpoints=dict( | ||
recid=dict( | ||
pid_type='recid', | ||
default_endpoint_prefix=False, | ||
), | ||
recid2=dict( | ||
pid_type='recid', | ||
default_endpoint_prefix=False, | ||
) | ||
))], indirect=['app']) | ||
def test_build_default_endpoint_prefixes_two_simple_endpoints(app): | ||
with app.test_client(): | ||
assert current_records_rest.default_endpoint_prefixes['recid'] == \ | ||
'recid' | ||
|
||
|
||
@pytest.mark.parametrize('app', [dict( | ||
records_rest_endpoints=dict( | ||
recid=dict( | ||
pid_type='recid', | ||
default_endpoint_prefix=True, | ||
), | ||
recid2=dict( | ||
pid_type='recid', | ||
default_endpoint_prefix=False, | ||
) | ||
))], indirect=['app']) | ||
def test_build_default_endpoint_prefixes_redundant_default(app): | ||
with app.test_client(): | ||
assert current_records_rest.default_endpoint_prefixes['recid'] == \ | ||
'recid' | ||
|
||
|
||
@pytest.mark.parametrize('app', [dict( | ||
records_rest_endpoints=dict( | ||
recid=dict( | ||
pid_type='recid', | ||
default_endpoint_prefix=False, | ||
), | ||
recid2=dict( | ||
pid_type='recid', | ||
default_endpoint_prefix=True, | ||
) | ||
))], indirect=['app']) | ||
def test_build_default_endpoint_prefixes_two_endpoints_with_default(app): | ||
with app.test_client(): | ||
assert current_records_rest.default_endpoint_prefixes['recid'] == \ | ||
'recid2' | ||
|
||
|
||
def test_get_default_endpoint_for_inconsistent(app): | ||
with pytest.raises(ValueError) as excinfo: | ||
get_default_endpoint_for('recid', { | ||
'recid1': { | ||
'pid_type': 'recid', | ||
'default_endpoint_prefix': True, | ||
}, | ||
'recid2': { | ||
'pid_type': 'recid', | ||
'default_endpoint_prefix': True, | ||
}}) | ||
assert 'More than one' in str(excinfo.value) | ||
|
||
with pytest.raises(ValueError) as excinfo: | ||
get_default_endpoint_for('recid', { | ||
'recid1': { | ||
'pid_type': 'recid', | ||
}, | ||
'recid2': { | ||
'pid_type': 'recid', | ||
}}) | ||
assert 'No endpoint-prefix' in str(excinfo.value) | ||
|
||
with pytest.raises(ValueError) as excinfo: | ||
get_default_endpoint_for('foo', { | ||
'recid1': { | ||
'pid_type': 'recid', | ||
}, | ||
'recid2': { | ||
'pid_type': 'recid', | ||
}}) | ||
assert 'No endpoint-prefix' in str(excinfo.value) |