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.
utils: new get_default_endpoint_for()
* NEW Introduces new get_default_endpoint_for() helper to obtain the default endpoint-prefix to be used to build endpoints for a given `pid_type`. (closes inveniosoftware#101) * NEW Introduces new `default_endpoint_prefix` prefix to explicitly declare which `endpoint-prefix` to use in case of ambiguity. Signed-off-by: Samuele Kaplun <[email protected]>
- Loading branch information
Showing
6 changed files
with
169 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
# -*- 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 | ||
|
||
from pytest import raises | ||
|
||
from invenio_records_rest.utils import get_default_endpoint_for | ||
|
||
|
||
def test_get_default_endpoint_for(): | ||
"""Test get_default_endpoint_for().""" | ||
assert get_default_endpoint_for('recid', { | ||
'recid': { | ||
'pid_type': 'recid', | ||
}}) == 'recid' | ||
|
||
assert get_default_endpoint_for('recid', { | ||
'recid': { | ||
'pid_type': 'recid', | ||
'default_endpoint_prefix': True, | ||
}}) == 'recid' | ||
|
||
assert get_default_endpoint_for('recid', { | ||
'recid': { | ||
'pid_type': 'recid', | ||
}, | ||
'recid2': { | ||
'pid_type': 'recid', | ||
}}) == 'recid' | ||
|
||
assert get_default_endpoint_for('recid', { | ||
'recid': { | ||
'pid_type': 'recid', | ||
'default_endpoint_prefix': True, | ||
}, | ||
'recid2': { | ||
'pid_type': 'recid', | ||
}}) == 'recid' | ||
|
||
assert get_default_endpoint_for('recid', { | ||
'recid': { | ||
'pid_type': 'recid', | ||
}, | ||
'recid2': { | ||
'pid_type': 'recid', | ||
'default_endpoint_prefix': True, | ||
}}) == 'recid2' | ||
|
||
with 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 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 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) |