Пример #1
0
 def test_get_rel_special_chars_wc(self):
     """Get relations containing wildcard characters"""
     testdb = DB(SQLiteRepo())
     init = (('a***', 10), ('b???', 20), ('R?*', 'a***', 'b???', None))
     testdb.import_data(init)
     expected = ('R?*', 'a***', 'b???', None)
     samp = next(testdb.get_rels(a_from='a**',
                                 out_format='interchange'))
     self.assertEqual(samp, expected)
Пример #2
0
 def test_put_a_special_chars(self):
     """Put anchor containing special reserved characters"""
     testdb = DB(SQLiteRepo())
     data = [(escape(x), None) for x in testdb.repo.special_chars["F"]]
     expected = [(x, None) for x in testdb.repo.special_chars["F"]]
     for d in data:
         testdb.put_a(*d)
     samp = list(testdb.export())
     self.assertEqual(samp, expected)
Пример #3
0
 def test_put_a_special_chars_wildcards(self):
     """Put anchor containing wildcard characters"""
     testdb = DB(SQLiteRepo())
     chars = (CHAR_WC_ZP, CHAR_WC_1C, SQLiteRepo.CHAR_WC_ZP_SQL,
              SQLiteRepo.CHAR_WC_1C_SQL)
     data = [(x, -10) for x in chars]
     for d in data:
         testdb.put_a(*d)
     samp = list(testdb.export())
     self.assertEqual(samp, data)
Пример #4
0
 def test_get_a_alias(self):
     testdb = DB(SQLiteRepo())
     data = (
         ('a', 10),
         ('b', 11),
     )
     testdb.import_data(data)
     expected = ('a', 10)  # assuming ROWID strictly follows insertion order
     samp = next(testdb.get_a('@1', out_format='interchange'))
     self.assertEqual(samp, expected)
Пример #5
0
 def setUp(self):
     # Most direct SQLiteRepo insert humanly possible
     self.testdb = DB(SQLiteRepo())
     sc_insert = "INSERT INTO {} VALUES(?,?)".format(SQLiteRepo.TABLE_A)
     rt = self.testdb.repo._reltext
     cs = self.testdb.repo._db_conn.cursor()
     inp = (('a', None), ('j', None), ('t', 0.0001), ('z', -274),
            (rt('j', 'a', 'j'), None), (rt('t', 'a',
                                           't'), -274), (rt('a', 'z',
                                                            'a'), 37))
     cs.executemany(sc_insert, inp)
Пример #6
0
 def test_get_a_exact_sql_wildcard_escape(self):
     """Get single anchor containing SQL wildcard characters"""
     testdb = DB(SQLiteRepo())
     chars = (SQLiteRepo.CHAR_WC_ZP_SQL, SQLiteRepo.CHAR_WC_1C_SQL)
     data = [(x, 100) for x in chars]
     testdb.import_data(data)
     for c in chars:
         with self.subTest(char=c):
             sample = list(
                 testdb.get_a("{}*".format(c), out_format='interchange'))
             self.assertEqual(sample, [(c, 100)])
Пример #7
0
 def test_import(self):
     testdb = DB(SQLiteRepo())
     sc_dump = "SELECT * FROM {}".format(SQLiteRepo.TABLE_A)
     cs = testdb.repo._db_conn.cursor()
     inp = (('a', ), ('j', None), ('t', 0.0001), ('z', -274),
            ('j', 'a', 'j', None), ('t', 'a', 't', -274))
     rt = testdb.repo._reltext
     expected = (('a', None), ('j', None), ('t', 0.0001), ('z', -274),
                 (rt('j', 'a', 'j'), None), (rt('t', 'a', 't'), -274))
     testdb.import_data(inp)
     sample = tuple(cs.execute(sc_dump))
     self.assertEqual(sample, expected)
Пример #8
0
 def test_put_a_long_content(self):
     """Put anchors with long-form content"""
     testrepo = SQLiteRepo()
     testdb = DB(testrepo)
     contents = [
         "{}{}".format(x, "N" * testrepo.preface_length) for x in range(3)
     ]
     data = [(x, None) for x in contents]
     for d in data:
         testdb.put_a(*d)
     samp = list(testdb.export())
     self.assertEqual(samp, data)
Пример #9
0
    def test_import_unsupported_format(self):
        """import_data(): reject unsupported formats"""

        testdb = DB(SQLiteRepo())
        sc_dump = "SELECT * FROM {}".format(SQLiteRepo.TABLE_A)
        cs = testdb.repo._db_conn.cursor()
        inp = (
            ('a', 0.1, 0.5, 0.75, 1.1),
            {},
        )
        out = testdb.import_data(inp)
        final = tuple(cs.execute(sc_dump))
        self.assertEqual(final, ())
Пример #10
0
 def test_get_rel_long_name_wildcard(self):
     """Get relations with long names by name wildcard"""
     testrepo = SQLiteRepo()
     testdb = DB(testrepo)
     plen = testrepo.preface_length
     suffix = "N" * plen
     long_name = f"R{suffix}"
     init = (('a', 0), ('b', 1), ("R", 1), (long_name, 'a', 'b', 100))
     expected = [
         (long_name, 'a', 'b', 100),
     ]
     testdb.import_data(init)
     samp = list(testdb.get_rels(name="R*", out_format='interchange'))
     self.assertEqual(samp, expected)
Пример #11
0
 def test_get_rel_long_content(self):
     """Get relations between anchors with long content"""
     testrepo = SQLiteRepo()
     testdb = DB(testrepo)
     plen = testrepo.preface_length
     suffix = "N" * plen
     long_content_a = "{}{}".format("A", suffix)
     long_content_z = "{}{}".format("Z", suffix)
     init = ((long_content_a, 0), (long_content_z, 0), ("R", 1),
             ("R", long_content_a[:plen], long_content_z[:plen], None))
     expected = [
         ("R", long_content_a[:plen], long_content_z[:plen], None),
     ]
     testdb.import_data(init)
     samp = list(testdb.get_rels(name="*", out_format='interchange'))
     self.assertEqual(samp, expected)
Пример #12
0
    def test_get_a_wildcard_escape(self):
        """Get multiple anchors containing TAGS wildcard characters
        using wildcards

        TAGS wildcards are allowed to be stored in DB

        """
        testdb = DB(SQLiteRepo())
        chars = (CHAR_WC_ZP, CHAR_WC_1C)
        for c in chars:
            data = [("{}{}".format(c, n), None) for n in range(3)]
            testdb.import_data(data)
            with self.subTest(char=c):
                term = "{}*".format(escape(c))
                samp = list(testdb.get_a(term, out_format='interchange'))
                self.assertEqual(samp, data)
Пример #13
0
 def test_get_a_wildcard_long_rel_in_db(self):
     """Get single anchor by wildcard, when long relation is in db"""
     testrepo = SQLiteRepo()
     testdb = DB(testrepo)
     plen = testrepo.preface_length
     suffix = "N" * plen
     long_content_a = "{}{}".format("A", suffix)
     long_content_z = "{}{}".format("Z", suffix)
     init = ((long_content_a, 0), (long_content_z, 0),
             ("R", long_content_a[:plen], long_content_z[:plen],
              None), ("RAnch", 99))
     expected = [
         ("RAnch", 99),
     ]
     testdb.import_data(init)
     samp = list(testdb.get_a("R*", out_format='interchange'))
     self.assertEqual(samp, expected)
Пример #14
0
    def test_put_a_special_chars_prefix(self):
        """
        Put anchor containing special prefix characters

        Special prefix characters are allowed to be used as-is in
        anchors, except for the first character.

        """
        testdb = DB(SQLiteRepo())
        fi = lambda x: "{0}uuu{0}u".format(escape(x))  # format input
        fo = lambda x: "{0}uuu{0}u".format(x)  # format output
        data = [(fi(x), None) for x in testdb.repo.special_chars["PX"]]
        expected = [(fo(x), None) for x in testdb.repo.special_chars["PX"]]
        for d in data:
            testdb.put_a(*d)
        samp = list(testdb.export())
        self.assertEqual(samp, expected)
Пример #15
0
    def test_put_a_long_content_same_preface(self):
        """Put anchors with long-form content with the same preface

        The preface of a long-form anchor identifies the anchor
        and cannot be reused.

        """
        testrepo = SQLiteRepo()
        testdb = DB(testrepo)
        contents = [
            "{}{}".format("N" * testrepo.preface_length, x) for x in range(3)
        ]
        data = [(x, None) for x in contents]
        with self.assertRaises(ValueError):
            for d in data:
                testdb.put_a(*d)
        samp = list(testdb.export())
        self.assertEqual(samp, data[:1])
Пример #16
0
 def test_reltext(self):
     testrep = SQLiteRepo()
     testdb = DB(testrep)
     data = [('a', None), ('z', None)]
     testdb.import_data(data)
     char_rel = testrep._char_rel
     char_alias = testrep._char_alias
     argtests = (({
         'name': 'Raz',
         'a_from': 'a',
         'a_to': 'z',
         'alias': 'local',
         'alias_fmt': 0
     }, 'Raz{0}a{0}z'.format(char_rel)),
                 )  # format: (kwargs, expected_output)
     for a in argtests:
         with self.subTest(a=a):
             self.assertEqual(testrep._reltext(**a[0]), a[1])
Пример #17
0
 def test_incr_rel_q_special_chars_wc(self):
     testdb = DB(SQLiteRepo())
     init = (('a***', 10), ('b???', 20), ('R?*x', 'a***', 'b???', 80))
     testdb.import_data(init)
     expected = [('a***', 10), ('b???', 20), ('R?*x', 'a***', 'b???', 79)]
     testdb.incr_rel_q('R?*x', 'a***', 'b???', -1, wildcards=False)
     samp = list(testdb.export())
     self.assertEqual(samp, expected)
Пример #18
0
class SlrDbExportTests(TestCase):
    """
    Verify the operation of SQLiteRepo's export function.

    This test relies on the correctness of SQLiteRepo._reltext().
    Tests for _reltext() must pass for these tests to be valid.

    Unfortunately, tests for export() cannot be run under the
    generic DB class test suite as implementations for export()
    are repository class-specific.

    """
    def setUp(self):
        # Most direct SQLiteRepo insert humanly possible
        self.testdb = DB(SQLiteRepo())
        sc_insert = "INSERT INTO {} VALUES(?,?)".format(SQLiteRepo.TABLE_A)
        rt = self.testdb.repo._reltext
        cs = self.testdb.repo._db_conn.cursor()
        inp = (('a', None), ('j', None), ('t', 0.0001), ('z', -274),
               (rt('j', 'a', 'j'), None), (rt('t', 'a',
                                              't'), -274), (rt('a', 'z',
                                                               'a'), 37))
        cs.executemany(sc_insert, inp)

    def test_export_all_interchange(self):
        out = list(self.testdb.export())
        expected = [('a', None), ('j', None), ('t', 0.0001), ('z', -274),
                    ('j', 'a', 'j', None), ('t', 'a', 't', -274),
                    ('a', 'z', 'a', 37)]
        self.assertEqual(out, expected)

    def test_export_anchor_interchange(self):
        """Export just one anchor and its relations to the
        interchange format

        """
        out = list(self.testdb.export(a='a'))
        expected = [('a', None), ('j', 'a', 'j', None), ('t', 'a', 't', -274),
                    ('a', 'z', 'a', 37)]
        self.assertEqual(out, expected)
Пример #19
0
 def test_put_rel_special_chars_wc(self):
     """Put relations containing wildcard characters"""
     testdb = DB(SQLiteRepo())
     init = (
         ('a***', 10),
         ('b???', 20),
     )
     testdb.import_data(init)
     testdb.put_rel('R?*', 'a***', 'b???', None)
     final = [('a***', 10), ('b???', 20), ('R?*', 'a***', 'b???', None)]
     samp = list(testdb.export())
     self.assertEqual(samp, final)
Пример #20
0
 def test_get_a_special_chars_mixed(self):
     """Put anchor containing all special and wildcard characters"""
     testdb = DB(SQLiteRepo())
     chardict = testdb.get_special_chars()
     suffix = "".join((chardict["E"], chardict["F"], chardict["WC"]))
     data = [("".join((x, suffix)), -10) for x in chardict["PX"]]
     testdb.import_data(data)
     for d in data:
         samp = list(testdb.export())
         self.assertEqual(samp, data)
Пример #21
0
 def test_set_a_q_special_chars_wc(self):
     testdb = DB(SQLiteRepo())
     init = (
         ('a***', 10),
         ('b???', 20),
     )
     testdb.import_data(init)
     expected = [
         ('a***', 10),
         ('b???', 888),
     ]
     testdb.set_a_q('b???', 888, wildcards=False)
     samp = list(testdb.export())
     self.assertEqual(samp, expected)
Пример #22
0
    def test_put_a_special_chars_mixed(self):
        """Put anchor containing all special characters.

        Characters must come out the same way they went in.

        """
        testdb = DB(SQLiteRepo())
        fi = lambda x, y: "".join((escape(x), y))
        chardict = testdb.get_special_chars()
        suffix = "".join((chardict["E"], chardict["F"], chardict["WC"]))
        data = [("".join((p, suffix)), -10) for p in chardict["PX"]]
        for d in data:
            testdb.put_a(*d)
        samp = list(testdb.export())
        self.assertEqual(samp, data)
Пример #23
0
    def test_get_a_special_chars_prefix(self):
        """Get anchors containing escaped prefix special chars

        Only the first char needs to be escaped

        """
        testdb = DB(SQLiteRepo())
        px_chars = testdb.get_special_chars()["PX"]
        fi = lambda x: "{}uuu{}u".format(escape(x), x)  # format input
        fo = lambda x: "{0}uuu{0}u".format(x)  # format output
        data = [(fi(x), None) for x in px_chars]
        testdb.import_data(data)
        for c in px_chars:
            samp = next(testdb.get_a(fi(c), out_format='interchange'))
            expected = (fo(c), None)
            self.assertEqual(samp, expected)
Пример #24
0
    def test_put_a_long_content_conflicting_preface(self):
        """Put long-form anchor in presence of conflicting anchor

        The preface of a long-form anchor identifies the anchor
        and cannot be identical to an existing anchor. Existing
        anchors must remain intact.

        """
        testrepo = SQLiteRepo()
        testdb = DB(testrepo)
        preface = "N" * testrepo.preface_length
        init = [
            ("{}".format(preface), None),
        ]  # anchor equiv. to preface
        data = ("".join((preface, "X")), None)  # regular long-form anchor
        testdb.import_data(init)
        with self.assertRaises(ValueError):
            testdb.put_a(*data)
        samp = list(testdb.export())
        self.assertEqual(samp, init)
Пример #25
0
    def test_set_a_q_long_content(self):
        """Set Anchor q-value with long-form content

        The preface of the content must be able to set the Anchor's q-value

        """
        testrepo = SQLiteRepo()
        testdb = DB(testrepo)
        suffix = "N" * testrepo.preface_length
        init = [
            ("{}{}".format("Z", suffix), 0),
            ('Z', 0),
        ]
        expected = [
            ("{}{}".format("Z", suffix), 99),
            ('Z', 0),
        ]
        testdb.import_data(init)
        testdb.set_a_q("{}{}".format("Z", suffix[:-1]), 99)
        samp = list(testdb.export())
        self.assertEqual(samp, expected)
Пример #26
0
    def test_get_a_long_content(self):
        """Get Anchors with long-form content

        The preface of the content must be able to retrieve the Anchor

        """
        testrepo = SQLiteRepo()
        testdb = DB(testrepo)
        contents = [
            "{}{}".format(x, "N" * testrepo.preface_length) for x in range(3)
        ]
        init = [(x, 99) for x in contents]
        testdb.import_data(init)
        for c in contents:
            samp_preface = next(testdb.get_a(c[:-1], out_format='interchange'))
            expected_preface = (c[:-1], 99)
            samp_full = next(
                testdb.get_a(c[:-1], length=None, out_format='interchange'))
            expected_full = (c, 99)
            self.assertEqual(samp_preface, expected_preface)
            self.assertEqual(samp_full, expected_full)