forked from openlp/openlp
Initial version
bzr-revno: 51
This commit is contained in:
parent
dfcf566860
commit
430b220ee4
66
openlp/database/test/test_bibleManager.py
Normal file
66
openlp/database/test/test_bibleManager.py
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
"""
|
||||||
|
OpenLP - Open Source Lyrics Projection
|
||||||
|
Copyright (c) 2008 Raoul Snyman
|
||||||
|
Portions copyright (c) 2008 Martin Thompson, Tim Bentley
|
||||||
|
|
||||||
|
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; version 2 of the License.
|
||||||
|
|
||||||
|
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
|
||||||
|
"""
|
||||||
|
|
||||||
|
import random
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
import os, os.path
|
||||||
|
import sys
|
||||||
|
mypath=os.path.split(os.path.abspath(__file__))[0]
|
||||||
|
sys.path.insert(0,(os.path.join(mypath, '..', '..','..')))
|
||||||
|
|
||||||
|
from openlp.database.BibleManager import *
|
||||||
|
|
||||||
|
|
||||||
|
class TestBibleManager:
|
||||||
|
def testRegisterBibleFiles(self):
|
||||||
|
# make sure the shuffled sequence does not lose any elements
|
||||||
|
print "\ntestRegisterBibleFiles"
|
||||||
|
self.bm = BibleManager()
|
||||||
|
self.bm.registerBible("TheMessage",'biblebooks_msg_short.csv','bibleverses_msg_short.csv')
|
||||||
|
self.bm.registerBible("NIV",'biblebooks_niv_short.csv','bibleverses_niv_short.csv')
|
||||||
|
b = self.bm.getBibles()
|
||||||
|
for b1 in b:
|
||||||
|
print b1
|
||||||
|
assert(b1 in b)
|
||||||
|
|
||||||
|
def testGetBibles(self):
|
||||||
|
print "testGetBibles"
|
||||||
|
# make sure the shuffled sequence does not lose any elements
|
||||||
|
b = self.bm.getBibles()
|
||||||
|
for b1 in b:
|
||||||
|
print b1
|
||||||
|
assert(b1 in b)
|
||||||
|
|
||||||
|
def testGetBooks(self):
|
||||||
|
print "testGetBooks"
|
||||||
|
c = self.bm.getBibleBooks("NIV")
|
||||||
|
for c1 in c:
|
||||||
|
print c1
|
||||||
|
assert(c1 in c)
|
||||||
|
|
||||||
|
def testGetVerseCount(self):
|
||||||
|
print "testGetVerseCount"
|
||||||
|
assert(self.bm.getBookVerseCount("NIV", "GEN", 1) == 28, "Wrong Book Count")
|
||||||
|
|
||||||
|
def testGetVerseText(self):
|
||||||
|
print "testGetVerseText"
|
||||||
|
c = self.bm.getVerseText("TheMessage",'Genesis',1,1,2)
|
||||||
|
print c
|
||||||
|
c = self.bm.getVerseText('NIV','Genesis',1,1,2)
|
||||||
|
print c
|
Loading…
Reference in New Issue
Block a user