32b559c623
Porting from gramps34 my fix for 6935, 6937, 6938. Import with full "gramps." qualification from the tests, to overcome the relative import problem (see bug# 6938 for context). All testing code has been adjusted to the filename and paths changes since gramps34. Same as on gramps34, one test fails still, will investigate if it is a test or a code bug: ERROR: test_buffer_recall (ErrorReportAssistant_Test.ErrorReportAssistantTest) Test that simple recall of messages works. ---------------------------------------------------------------------- Traceback (most recent call last): File "./GrampsLogger/ErrorReportAssistant_Test.py", line 60, in test_buffer_recall rotate_handler=rh) File "../gramps/gui/logger/_errorreportassistant.py", line 81, in __init__ self.build_page1() File "../gramps/gui/logger/_errorreportassistant.py", line 267, in build_page1 self._reset_error_details() File "../gramps/gui/logger/_errorreportassistant.py", line 178, in _reset_error_details self._error_detail.get_record())) AttributeError: 'str' object has no attribute 'get_record' svn: r22729
120 lines
3.5 KiB
Python
120 lines
3.5 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2000-2007 Donald N. Allingham
|
|
#
|
|
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
|
|
# test/LosHawlos_dbtest.py
|
|
# $Id$
|
|
|
|
import os
|
|
import tempfile
|
|
import shutil
|
|
import sys
|
|
|
|
sys.path.append('../gramps')
|
|
|
|
import GrampsDb
|
|
import const
|
|
import RelLib
|
|
|
|
def dummy_callback(dummy):
|
|
pass
|
|
|
|
def add_source( db,title,commit=True,fail=False):
|
|
tran = db.transaction_begin()
|
|
db.disable_signals()
|
|
s = RelLib.Source()
|
|
db.add_source(s,tran)
|
|
s.set_title(title)
|
|
if fail:
|
|
return # Fail here
|
|
db.commit_source(s,tran)
|
|
db.enable_signals()
|
|
if commit:
|
|
db.transaction_commit(tran, "Add Source")
|
|
|
|
def add_person( db,firstname,lastname,commit=True,fail=False):
|
|
tran = db.transaction_begin()
|
|
db.disable_signals()
|
|
p = RelLib.Person()
|
|
db.add_person(p,tran)
|
|
n = RelLib.Name()
|
|
n.set_first_name(firstname)
|
|
n.set_surname(lastname)
|
|
p.set_primary_name(n)
|
|
if fail:
|
|
return # Fail here
|
|
db.commit_person(p,tran)
|
|
db.enable_signals()
|
|
if commit:
|
|
db.transaction_commit(tran, "Add Person")
|
|
|
|
def print_db_content(db):
|
|
for h in db.get_person_handles():
|
|
print "DB contains: person %s" % h
|
|
for h in db.get_source_handles():
|
|
print "DB contains: source %s" % h
|
|
|
|
tmpdir = tempfile.mkdtemp()
|
|
try:
|
|
filename1 = os.path.join(tmpdir,'test1.grdb')
|
|
filename2 = os.path.join(tmpdir,'test2.grdb')
|
|
print "\nUsing Database file: %s" % filename1
|
|
db = GrampsDb.gramps_db_factory(const.app_gramps)()
|
|
db.load( filename1, dummy_callback, "w")
|
|
print "Add person 1"
|
|
add_person( db,"Anton", "Albers",True,False)
|
|
print "Add source"
|
|
add_source( db,"A short test",True,False)
|
|
print "Add person 2 without commit"
|
|
add_person( db,"Bernd","Beta",False,False)
|
|
print "Add source"
|
|
add_source( db,"A short test",True,False)
|
|
print "Add person 3"
|
|
add_person( db,"Chris","Connor",True,False)
|
|
print_db_content( db)
|
|
print "Closing Database file: %s" % filename1
|
|
#db.close()
|
|
|
|
print "\nUsing Database file: %s" % filename1
|
|
db = GrampsDb.gramps_db_factory(const.app_gramps)()
|
|
db.load( filename1, dummy_callback, "w")
|
|
print "Add person 4"
|
|
add_person( db,"Felix", "Fowler",True,False)
|
|
print "Add person 4"
|
|
add_person( db,"Felix", "Fowler",False,False)
|
|
print_db_content( db)
|
|
print "Closing Database file: %s" % filename1
|
|
#db.close()
|
|
|
|
print "\nUsing Database file: %s" % filename2
|
|
db = GrampsDb.gramps_db_factory(const.app_gramps)()
|
|
db.load( filename2, dummy_callback, "w")
|
|
|
|
print "Add source"
|
|
add_source( db,"A short test",False,False)
|
|
print "Add source 2 will fail"
|
|
add_source( db,"Bang bang bang",True,True)
|
|
|
|
print_db_content( db)
|
|
print "Closing Database file: %s" % filename2
|
|
#db.close()
|
|
finally:
|
|
print "Exit. Cleaning up."
|
|
shutil.rmtree(tmpdir)
|