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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
# Copyright (C) 2020, Sam Thursfield <sam@afuera.me.uk>
#
# This program 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.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
#
"""
Test `tracker` commandline tool
"""
import unittest
import configuration
import fixtures
import random
class TestCli(fixtures.TrackerCommandLineTestCase):
def test_version(self):
"""Check we're testing the correct version of the CLI"""
output = self.run_cli(
['tracker3', '--version'])
version_line = output.splitlines()[0]
expected_version_line = 'Tracker %s' % configuration.tracker_version()
self.assertEqual(version_line, expected_version_line)
def test_create_local_database(self):
"""Create a database using `tracker3 endpoint` for local testing"""
with self.tmpdir() as tmpdir:
ontology_path = configuration.ontologies_dir()
# Create the database
self.run_cli(
['tracker3', 'endpoint', '--database', tmpdir,
'--ontology-path', ontology_path])
# Sanity check that it works.
self.run_cli(
['tracker3', 'sparql', '--database', tmpdir,
'--query', 'ASK { ?u a rdfs:Resource }'])
def test_export(self):
"""Export contents of a Tracker database."""
with self.tmpdir() as tmpdir:
ontology_path = configuration.ontologies_dir()
# Create a database and export it as Turtle.
# We don't validate the output in this test, but we should.
self.run_cli(
['tracker3', 'endpoint', '--database', tmpdir,
'--ontology-path', ontology_path])
self.run_cli(
['tracker3', 'export', '--database', tmpdir]);
self.run_cli(
['tracker3', 'export', '--database', tmpdir, '--show-graphs']);
def test_import(self):
"""Import a Turtle file into a Tracker database."""
testdata = str(self.data_path('test-movie.ttl'))
with self.tmpdir() as tmpdir:
ontology_path = configuration.ontologies_dir()
self.run_cli(
['tracker3', 'endpoint', '--database', tmpdir,
'--ontology-path', ontology_path])
self.run_cli(
['tracker3', 'import', '--database', tmpdir, testdata]);
def test_http_endpoint(self):
"""Create a HTTP endpoint for local testing"""
with self.tmpdir() as tmpdir:
ontology_path = configuration.ontologies_dir()
port = random.randint(32000, 65000)
address = 'http://127.0.0.1:%d/sparql' % port
# Create the database
self.run_background(
['tracker3', 'endpoint', '--database', tmpdir,
'--ontology-path', ontology_path, '--http-port', port],
'Listening')
# Sanity check that it works.
self.run_cli(
['tracker3', 'sparql',
'--remote-service', address,
'--query', 'ASK { ?u a rdfs:Resource }'])
if __name__ == '__main__':
fixtures.tracker_test_main()
|