diff --git a/src/Merge/test/merge_ref_test.py b/src/Merge/test/merge_ref_test.py index 42ae848a0..c140c2e62 100644 --- a/src/Merge/test/merge_ref_test.py +++ b/src/Merge/test/merge_ref_test.py @@ -85,7 +85,7 @@ class BaseMergeCheck(unittest.TestCase):
- + \n
""" % (GRAMPS_XML_VERSION, GRAMPS_XML_VERSION, GRAMPS_XML_VERSION, date[0], date[1], date[2], VERSION) @@ -104,7 +104,7 @@ class BaseMergeCheck(unittest.TestCase): :rtype: string """ result = '' - if type(doctxt) == type('string'): + if isinstance(doctxt, basestring): doc = libxml2.readDoc(doctxt, '', None, libxml2.XML_PARSE_NONET) elif isinstance(doctxt, libxml2.xmlDoc): doc = doctxt @@ -114,14 +114,14 @@ class BaseMergeCheck(unittest.TestCase): canonical_doc = self.style.applyStylesheet(doc, param) result = self.style.saveResultToString(canonical_doc) canonical_doc.freeDoc() - if type(doctxt) == type('string'): + if isinstance(doctxt, basestring): doc.freeDoc() return result def do_test(self, phoenix_id, titanic_id, input_doc, expect_doc, test_error_str='', debug=False): """Do the merge and "assert" the result.""" - process = subprocess.Popen('python gramps.py -d .ImportXML ' + process = subprocess.Popen('python Gramps.py -d .ImportXML ' '--config=preferences.eprefix:DEFAULT ' '-i - -f gramps -a tool ' '-p "name=climerge,primary=%s,secondary=%s" ' @@ -132,18 +132,18 @@ class BaseMergeCheck(unittest.TestCase): result_str, err_str = process.communicate(str(input_doc)) if err_str: if test_error_str: - self.assert_(test_error_str in err_str) + self.assertIn(test_error_str, err_str) return if debug: - print 'input :', self.canonicalize(input_doc) - print 'result:', self.canonicalize(result_str) - print 'expect:', self.canonicalize(expect_doc) + print('input :', self.canonicalize(input_doc)) + print('result:', self.canonicalize(result_str)) + print('expect:', self.canonicalize(expect_doc)) self.assertEqual(self.canonicalize(result_str), self.canonicalize(expect_doc)) def do_family_test(self, phoenix_id, titanic_id, father_h, mother_h, input_doc, expect_doc, test_error_str='', debug=False): - process = subprocess.Popen('python gramps.py -d .ImportXML ' + process = subprocess.Popen('python Gramps.py -d .ImportXML ' '--config=preferences.eprefix:DEFAULT ' '-i - -f gramps -a tool ' '-p "name=climerge,primary=%s,secondary=%s,father_h=%s,mother_h=%s" ' @@ -154,18 +154,18 @@ class BaseMergeCheck(unittest.TestCase): result_str, err_str = process.communicate(str(input_doc)) if err_str: if test_error_str: - self.assert_(test_error_str in err_str) + self.assertIn(test_error_str, err_str) return if debug: - print 'input :', self.canonicalize(input_doc) - print 'result:', self.canonicalize(result_str) - print 'expect:', self.canonicalize(expect_doc) + print('input :', self.canonicalize(input_doc)) + print('result:', self.canonicalize(result_str)) + print('expect:', self.canonicalize(expect_doc)) self.assertEqual(self.canonicalize(result_str), self.canonicalize(expect_doc)) def raw_contains(self, phoenix_id, titanic_id, input_doc, expect_str, test_error_str='', debug=False): - process = subprocess.Popen('python gramps.py -d .ImportXML ' + process = subprocess.Popen('python Gramps.py -d .ImportXML ' '--config=preferences.eprefix:DEFAULT ' '-i - -f gramps -a tool ' '-p "name=climerge,primary=%s,secondary=%s" ' @@ -176,14 +176,14 @@ class BaseMergeCheck(unittest.TestCase): result_str, err_str = process.communicate(str(input_doc)) if err_str: if test_error_str: - self.assert_(test_error_str in err_str) + self.assertIn(test_error_str, err_str) return if debug: - print 'input :', self.canonicalize(input_doc) - print 'result:', result_str - print 'expect:', expect_str + print('input :', self.canonicalize(input_doc)) + print('result:', result_str) + print('expect:', expect_str) # should I order/canonicalise things? - self.assert_(expect_str in result_str) + self.assertIn(expect_str, result_str) #------------------------------------------------------------------------- # # PersonCheck class @@ -217,9 +217,7 @@ class PersonCheck(BaseMergeCheck): - - p.10 - + M @@ -232,11 +230,21 @@ class PersonCheck(BaseMergeCheck): - - p.11 - + + + + p.10 + 2 + + + + p.11 + 2 + + + Source 0 @@ -297,17 +305,17 @@ class PersonCheck(BaseMergeCheck): placeobj.freeNode() self.do_test('P0000', 'P0001', self.basedoc, expect) - def test_source_merge(self): - """Merge two sources""" + def test_citation_merge(self): + """Merge two citations""" with CopiedDoc(self.basedoc) as expect: with XpathContext(expect) as ctxt: srcref = ctxt.xpathEval( - "//g:person[@handle='_i0001']/g:sourceref")[0] - srcref.setProp('hlink', '_s0000') - source = ctxt.xpathEval("//g:source[@handle='_s0001']")[0] - source.unlinkNode() - source.freeNode() - self.do_test('S0000', 'S0001', self.basedoc, expect) + "//g:person[@handle='_i0001']/g:citationref")[0] + srcref.setProp('hlink', '_c0000') + citation = ctxt.xpathEval("//g:citation[@handle='_c0001']")[0] + citation.unlinkNode() + citation.freeNode() + self.do_test('C0000', 'C0001', self.basedoc, expect) def test_media_merge(self): """Merge two media objects""" @@ -363,7 +371,7 @@ class FamilyCheck(BaseMergeCheck): - + @@ -373,9 +381,21 @@ class FamilyCheck(BaseMergeCheck): - + + + + p.10 + 2 + + + + p.11 + 2 + + + Source 0 @@ -436,17 +456,17 @@ class FamilyCheck(BaseMergeCheck): placeobj.freeNode() self.do_test('P0000', 'P0001', self.basedoc, expect) - def test_source_merge(self): - """Merge two sources""" + def test_citation_merge(self): + """Merge two citations""" with CopiedDoc(self.basedoc) as expect: with XpathContext(expect) as ctxt: - srcref = ctxt.xpathEval( - "//g:family[@handle='_f0001']/g:sourceref")[0] - srcref.setProp('hlink', '_s0000') - source = ctxt.xpathEval("//g:source[@handle='_s0001']")[0] - source.unlinkNode() - source.freeNode() - self.do_test('S0000', 'S0001', self.basedoc, expect) + citref = ctxt.xpathEval( + "//g:family[@handle='_f0001']/g:citationref")[0] + citref.setProp('hlink', '_c0000') + citation = ctxt.xpathEval("//g:citation[@handle='_c0001']")[0] + citation.unlinkNode() + citation.freeNode() + self.do_test('C0000', 'C0001', self.basedoc, expect) def test_media_merge(self): """Merge two media objects""" @@ -489,7 +509,7 @@ class EventCheck(BaseMergeCheck): Event 0 - + @@ -497,10 +517,22 @@ class EventCheck(BaseMergeCheck): Event 1 - + + + + p.10 + 2 + + + + p.11 + 2 + + + Source 0 @@ -549,17 +581,17 @@ class EventCheck(BaseMergeCheck): placeobj.freeNode() self.do_test('P0000', 'P0001', self.basedoc, expect) - def test_source_merge(self): - """Merge two sources""" + def test_citation_merge(self): + """Merge two citations""" with CopiedDoc(self.basedoc) as expect: with XpathContext(expect) as ctxt: - srcref = ctxt.xpathEval( - "//g:event[@handle='_e0001']/g:sourceref")[0] - srcref.setProp('hlink', '_s0000') - source = ctxt.xpathEval("//g:source[@handle='_s0001']")[0] - source.unlinkNode() - source.freeNode() - self.do_test('S0000', 'S0001', self.basedoc, expect) + citref = ctxt.xpathEval( + "//g:event[@handle='_e0001']/g:citationref")[0] + citref.setProp('hlink', '_c0000') + citation = ctxt.xpathEval("//g:citation[@handle='_c0001']")[0] + citation.unlinkNode() + citation.freeNode() + self.do_test('C0000', 'C0001', self.basedoc, expect) def test_media_merge(self): """Merge two media objects""" @@ -596,6 +628,18 @@ class PlaceCheck(BaseMergeCheck): def setUp(self): self.base_setup() base_str = """ + + + p.10 + 2 + + + + p.11 + 2 + + + Source 0 @@ -609,13 +653,13 @@ class PlaceCheck(BaseMergeCheck): Place 0 - + Place 1 - + @@ -638,17 +682,17 @@ class PlaceCheck(BaseMergeCheck): self.basedoc = libxml2.readDoc(self.base_str + base_str, '', None, libxml2.XML_PARSE_NONET) - def test_source_merge(self): - """Merge two sources""" + def test_citation_merge(self): + """Merge two citations""" with CopiedDoc(self.basedoc) as expect: with XpathContext(expect) as ctxt: - srcref = ctxt.xpathEval( - "//g:placeobj[@handle='_p0001']/g:sourceref")[0] - srcref.setProp('hlink', '_s0000') - source = ctxt.xpathEval("//g:source[@handle='_s0001']")[0] - source.unlinkNode() - source.freeNode() - self.do_test('S0000', 'S0001', self.basedoc, expect) + citref = ctxt.xpathEval( + "//g:placeobj[@handle='_p0001']/g:citationref")[0] + citref.setProp('hlink', '_c0000') + citation = ctxt.xpathEval("//g:citation[@handle='_c0001']")[0] + citation.unlinkNode() + citation.freeNode() + self.do_test('C0000', 'C0001', self.basedoc, expect) def test_media_merge(self): """Merge two media objects""" @@ -685,6 +729,18 @@ class SourceCheck(BaseMergeCheck): def setUp(self): self.base_setup() base_str = """ + + + p.10 + 2 + + + + p.11 + 2 + + + Source 0 @@ -729,7 +785,7 @@ class SourceCheck(BaseMergeCheck): self.basedoc = libxml2.readDoc(self.base_str + base_str, '', None, libxml2.XML_PARSE_NONET) - #def test_source_merge(self): SEE special cases. + #def test_citation_merge(self): SEE special cases. def test_repo_merge(self): """Merge two repositories""" @@ -781,6 +837,18 @@ class RepoCheck(BaseMergeCheck): def setUp(self): self.base_setup() base_str = """ + + + p.10 + 2 + + + + p.11 + 2 + + + Source 0 @@ -795,7 +863,7 @@ class RepoCheck(BaseMergeCheck): Library
Amsterdam - +
@@ -804,7 +872,7 @@ class RepoCheck(BaseMergeCheck): Library
Rotterdam - +
@@ -821,17 +889,17 @@ class RepoCheck(BaseMergeCheck): self.basedoc = libxml2.readDoc(self.base_str + base_str, '', None, libxml2.XML_PARSE_NONET) - def test_source_merge(self): - """Merge two sources""" + def test_citation_merge(self): + """Merge two citations""" with CopiedDoc(self.basedoc) as expect: with XpathContext(expect) as ctxt: - srcref = ctxt.xpathEval( - "//g:repository[@handle='_r0001']/g:address/g:sourceref")[0] - srcref.setProp('hlink', '_s0000') - source = ctxt.xpathEval("//g:source[@handle='_s0001']")[0] - source.unlinkNode() - source.freeNode() - self.do_test('S0000', 'S0001', self.basedoc, expect) + citref = ctxt.xpathEval( + "//g:repository[@handle='_r0001']/g:address/g:citationref")[0] + citref.setProp('hlink', '_c0000') + citation = ctxt.xpathEval("//g:citation[@handle='_c0001']")[0] + citation.unlinkNode() + citation.freeNode() + self.do_test('C0000', 'C0001', self.basedoc, expect) def test_note_merge(self): """Merge two notes""" @@ -856,6 +924,18 @@ class MediaCheck(BaseMergeCheck): def setUp(self): self.base_setup() base_str = """ + + + p.10 + 2 + + + + p.11 + 2 + + + Source 0 @@ -868,12 +948,12 @@ class MediaCheck(BaseMergeCheck): - + - +
@@ -888,17 +968,17 @@ class MediaCheck(BaseMergeCheck): self.basedoc = libxml2.readDoc(self.base_str + base_str, '', None, libxml2.XML_PARSE_NONET) - def test_source_merge(self): - """Merge two sources""" + def test_citation_merge(self): + """Merge two citations""" with CopiedDoc(self.basedoc) as expect: with XpathContext(expect) as ctxt: - srcref = ctxt.xpathEval( - "//g:object[@handle='_o0001']/g:sourceref")[0] - srcref.setProp('hlink', '_s0000') - source = ctxt.xpathEval("//g:source[@handle='_s0001']")[0] - source.unlinkNode() - source.freeNode() - self.do_test('S0000', 'S0001', self.basedoc, expect) + citref = ctxt.xpathEval( + "//g:object[@handle='_o0001']/g:citationref")[0] + citref.setProp('hlink', '_c0000') + citation = ctxt.xpathEval("//g:citation[@handle='_c0001']")[0] + citation.unlinkNode() + citation.freeNode() + self.do_test('C0000', 'C0001', self.basedoc, expect) def test_note_merge(self): """Merge two notes""" @@ -918,28 +998,49 @@ class MediaCheck(BaseMergeCheck): # #========================================================================= +#------------------------------------------------------------------------- +# +# SourceSourceCheck class +# +#------------------------------------------------------------------------- class SourceSourceCheck(BaseMergeCheck): def setUp(self): self.base_setup() base_str = """ + + + p.10 + 2 + + + + + + + p.11 + 2 + + + + + + + p.12 + 2 + + + + p.13 + 2 + + + Source 0 - - - Source 1 - - - - - - Source 2 - - - Source 3 @@ -954,43 +1055,46 @@ class SourceSourceCheck(BaseMergeCheck): self.basedoc = libxml2.readDoc(self.base_str + base_str, '', None, libxml2.XML_PARSE_NONET) - def test_source_merge(self): + def test_citation_merge(self): with CopiedDoc(self.basedoc) as expect: with XpathContext(expect) as ctxt: - srcrefs = ctxt.xpathEval( - "//g:source[@handle='_s0001']/g:objref/g:sourceref") - srcrefs[0].setProp('hlink', '_s0002') - sources = ctxt.xpathEval("//g:source[@handle='_s0003']") - sources[0].unlinkNode() - sources[0].freeNode() - self.do_test('S0002', 'S0003', self.basedoc, expect) + citrefs = ctxt.xpathEval( + "//g:citation[@handle='_c0001']/g:objref/g:citationref") + citrefs[0].setProp('hlink', '_c0002') + citations = ctxt.xpathEval("//g:citation[@handle='_c0003']") + citations[0].unlinkNode() + citations[0].freeNode() + self.do_test('C0002', 'C0003', self.basedoc, expect) - def test_source_cross_merge(self): + def test_citation_cross_merge(self): with XpathContext(self.basedoc) as input_ctxt: - input_srcrefs = input_ctxt.xpathEval( - "//g:source/g:objref/g:sourceref") - input_srcrefs[0].setProp('hlink', '_s0001') - input_srcrefs[1].setProp('hlink', '_s0000') - rmsrc = input_ctxt.xpathEval("//g:source[@handle='_s0002']") - rmsrc[0].unlinkNode() - rmsrc[0].freeNode() - rmsrc = input_ctxt.xpathEval("//g:source[@handle='_s0003']") + input_citrefs = input_ctxt.xpathEval( + "//g:citation/g:objref/g:citationref") + input_citrefs[0].setProp('hlink', '_c0001') + input_citrefs[1].setProp('hlink', '_c0000') + rmcit = input_ctxt.xpathEval("//g:citation[@handle='_c0002']") + rmcit[0].unlinkNode() + rmcit[0].freeNode() + rmcit = input_ctxt.xpathEval("//g:citation[@handle='_c0003']") + rmcit[0].unlinkNode() + rmcit[0].freeNode() + rmsrc = input_ctxt.xpathEval("//g:source[@handle='_s0001']") rmsrc[0].unlinkNode() rmsrc[0].freeNode() with CopiedDoc(self.basedoc) as expect: with XpathContext(expect) as ctxt: - srcrefs = ctxt.xpathEval( - "//g:source[@handle='_s0000']/g:objref/g:sourceref") - srcrefs[0].setProp('hlink', '_s0000') + citrefs = ctxt.xpathEval( + "//g:citation[@handle='_c0000']/g:objref/g:citationref") + citrefs[0].setProp('hlink', '_c0000') # add objref - objref = ctxt.xpathEval("//g:source[@handle='_s0000']/g:objref") - objref2 = ctxt.xpathEval("//g:source[@handle='_s0001']/g:objref") + objref = ctxt.xpathEval("//g:citation[@handle='_c0000']/g:objref") + objref2 = ctxt.xpathEval("//g:citation[@handle='_c0001']/g:objref") objref[0].addNextSibling(objref2[0]) - # remove source - sources = ctxt.xpathEval("//g:source[@handle='_s0001']") - sources[0].unlinkNode() - sources[0].freeNode() - self.do_test('S0000', 'S0001', self.basedoc, expect) + # remove citation + citations = ctxt.xpathEval("//g:citation[@handle='_c0001']") + citations[0].unlinkNode() + citations[0].freeNode() + self.do_test('C0000', 'C0001', self.basedoc, expect) #------------------------------------------------------------------------- # @@ -1029,9 +1133,9 @@ class BirthCheck(BaseMergeCheck):
""" self.basedoc = libxml2.readDoc(self.base_str + base_str, '', None, libxml2.XML_PARSE_NONET) - surname = gen.lib.Surname() - surname.set_surname(u"Person 0") - name = gen.lib.Name() + surname = Surname() + surname.set_surname("Person 0") + name = Name() name.add_surname(surname) self.expect_str = "person: i0000 ('i0000', 'I0000', 1, %s, [], " % str( name.serialize()) @@ -1195,7 +1299,7 @@ class PersonPersonCheck(BaseMergeCheck): #------------------------------------------------------------------------- # -# ParentFamilyPesronCheck class +# ParentFamilyPersonCheck class # #------------------------------------------------------------------------- class ParentFamilyPersonCheck(BaseMergeCheck): @@ -2118,9 +2222,9 @@ class FamilyMergeCheck(BaseMergeCheck): if __name__ == "__main__": if not os.path.isdir(os.path.join(USER_PLUGINS, 'CliMerge')): - print >> sys.stderr, 'This program needs the third party "CliMerge" plugin.' + print('This program needs the third party "CliMerge" plugin.', file=sys.stderr) sys.exit(1) if not os.path.isdir(os.path.join(USER_PLUGINS, 'ExportRaw')): - print >> sys.stderr, 'This program needs the third party "ExportRaw" plugin.' + print('This program needs the third party "ExportRaw" plugin.', file=sys.stderr) sys.exit(1) unittest.main()