1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
# Copyright 2019-2020 by Christopher C. Little.
# This file is part of Abydos.
#
# Abydos 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 3 of the License, or
# (at your option) any later version.
#
# Abydos 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 Abydos. If not, see <http://www.gnu.org/licenses/>.
"""abydos.tests.util.test_prod.
This module contains unit tests for abydos.util._prod
"""
import shutil
import tempfile
import unittest
from abydos.util._data import (
download_package,
list_available_packages,
list_installed_packages,
package_path,
)
class DataTestCases(unittest.TestCase):
"""Test cases for abydos.util._prod."""
DEFAULT_URL = 'https://raw.githubusercontent.com/chrislit/'
DEFAULT_URL += 'abydos-data/master/index.xml'
@unittest.skip('cannot download in Debian build')
def test_data(self):
"""Test abydos.util._data."""
self.assertTrue(isinstance(list_installed_packages(), list))
self.assertTrue(isinstance(list_available_packages(), tuple))
self.assertTrue(
isinstance(list_available_packages(url=self.DEFAULT_URL), tuple)
)
download_package('all')
self.assertEqual(
package_path('wikitext_qgram')[-14:], 'wikitext_qgram'
)
with self.assertRaises(FileNotFoundError):
package_path('not_a_real_package')
temppath = tempfile.mkdtemp()
download_package('wikitext_qgram', data_path=temppath, force=True)
download_package('wikitext_qgram', data_path=temppath)
shutil.rmtree(temppath)
with self.assertRaises(ValueError):
list_available_packages(url='file:///etc/passwd')
if __name__ == '__main__':
unittest.main()
|