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)
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)
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)
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)
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)])
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)
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)
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)
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)
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)
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)
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)
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)
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])
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)
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)
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)
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, ())