97 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| import tempfile
 | |
| import shutil
 | |
| import sys
 | |
| 
 | |
| sys.path.append('../src')
 | |
| 
 | |
| 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)
 |