Page MenuHomec4science

test_refextract_api.py
No OneTemporary

File Metadata

Created
Fri, Sep 13, 13:27

test_refextract_api.py

# -*- coding: utf-8 -*-
##
## This file is part of Invenio.
## Copyright (C) 2010, 2011, 2013 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.
"""
The Refextract task tests suite for tasks
It requires a fully functional invenio installation.
"""
from invenio.testsuite import make_test_suite, run_test_suite, InvenioTestCase
class RefextractApiTest(InvenioTestCase):
def test_no_fulltext(self):
from invenio.refextract_api import FullTextNotAvailable, \
update_references
try:
update_references(1000000000000)
self.fail()
except FullTextNotAvailable:
# As expected
pass
def test_no_overwrite(self):
from invenio.refextract_api import RecordHasReferences, \
update_references
try:
update_references(92, overwrite=False)
self.fail()
except RecordHasReferences:
# As expected
pass
TEST_SUITE = make_test_suite(RefextractApiTest)
if __name__ == '__main__':
run_test_suite(TEST_SUITE)

Event Timeline