Added dup and sgettext checks
svn: r9463
This commit is contained in:
parent
d8ff749b9c
commit
ee1b05acef
@ -59,20 +59,24 @@ def get_potfile(filename):
|
|||||||
class TestPOT(unittest.TestCase):
|
class TestPOT(unittest.TestCase):
|
||||||
potfiles = get_potfile("../POTFILES.in")
|
potfiles = get_potfile("../POTFILES.in")
|
||||||
count = 1
|
count = 1
|
||||||
def __init__(self, method_name, dir, file, search):
|
def __init__(self, method_name, dir, file, searches):
|
||||||
method_name = method_name % self.count
|
method_name = method_name % self.count
|
||||||
TestPOT.count += 1
|
TestPOT.count += 1
|
||||||
self.__dict__[method_name] = lambda: self.helper(dir, file, search)
|
self.__dict__[method_name] = lambda: self.helper(dir, file, searches)
|
||||||
unittest.TestCase.__init__(self, method_name)
|
unittest.TestCase.__init__(self, method_name)
|
||||||
|
|
||||||
def helper(self, dir, file, search):
|
def helper(self, dir, file, searches):
|
||||||
realpath = (dir + "/" + file)
|
realpath = (dir + "/" + file)
|
||||||
pathfile = realpath[3:]
|
pathfile = realpath[3:]
|
||||||
if os.path.exists(realpath):
|
if os.path.exists(realpath):
|
||||||
fp = open(realpath, "r")
|
fp = open(realpath, "r")
|
||||||
lines = fp.read()
|
lines = fp.read()
|
||||||
fp.close()
|
fp.close()
|
||||||
|
found = False
|
||||||
|
for search in searches:
|
||||||
if search in lines:
|
if search in lines:
|
||||||
|
found = True
|
||||||
|
if found:
|
||||||
self.assertFalse(pathfile[3:] not in excluded_files and
|
self.assertFalse(pathfile[3:] not in excluded_files and
|
||||||
pathfile[3:] not in self.potfiles,
|
pathfile[3:] not in self.potfiles,
|
||||||
"'%s' is not in POTFILES.in" % (pathfile[3:],))
|
"'%s' is not in POTFILES.in" % (pathfile[3:],))
|
||||||
@ -126,16 +130,34 @@ class TestGetText(unittest.TestCase):
|
|||||||
self.assertTrue(found, "'%s' is in POTFILES.in but does not contain '%s'" %
|
self.assertTrue(found, "'%s' is in POTFILES.in but does not contain '%s'" %
|
||||||
(pofile, searches))
|
(pofile, searches))
|
||||||
|
|
||||||
|
class TestDups(unittest.TestCase):
|
||||||
|
potfiles = get_potfile("../POTFILES.in")
|
||||||
|
count = 1
|
||||||
|
def __init__(self, method_name, potfile):
|
||||||
|
method_name = method_name % self.count
|
||||||
|
TestPOT.count += 1
|
||||||
|
self.__dict__[method_name] = lambda: self.helper(potfile)
|
||||||
|
unittest.TestCase.__init__(self, method_name)
|
||||||
|
|
||||||
|
def helper(self, potfile):
|
||||||
|
self.assertTrue(self.potfiles.count(potfile) == 1,
|
||||||
|
"'%s' is in POTFILE.in more than once." % potfile)
|
||||||
|
|
||||||
def suite1():
|
def suite1():
|
||||||
|
"""
|
||||||
|
Suite of tests designed to see if that if one of a set of phrases
|
||||||
|
is in a file, then that file better be in POTFILES.in.
|
||||||
|
"""
|
||||||
suite = unittest.TestSuite()
|
suite = unittest.TestSuite()
|
||||||
for dir, subdir, files in os.walk('../../src'):
|
for dir, subdir, files in os.walk('../../src'):
|
||||||
for file in files:
|
for file in files:
|
||||||
if glob.fnmatch.fnmatch(file,"*.py"):
|
if glob.fnmatch.fnmatch(file,"*.py"):
|
||||||
suite.addTest(TestPOT('test_pot_py_%04d',
|
suite.addTest(TestPOT('test_pot_py_%04d',
|
||||||
dir, file, "import gettext"))
|
dir, file, ["import gettext",
|
||||||
|
"import sgettext"]))
|
||||||
elif glob.fnmatch.fnmatch(file,"*.glade"):
|
elif glob.fnmatch.fnmatch(file,"*.glade"):
|
||||||
suite.addTest(TestPOT('test_pot_glade_%04d',
|
suite.addTest(TestPOT('test_pot_glade_%04d',
|
||||||
dir, file, "translatable=\"yes\""))
|
dir, file, ["translatable=\"yes\""]))
|
||||||
if glob.fnmatch.fnmatch(file,"*.py"):
|
if glob.fnmatch.fnmatch(file,"*.py"):
|
||||||
suite.addTest(TestMake('test_make_py_%04d', dir, file))
|
suite.addTest(TestMake('test_make_py_%04d', dir, file))
|
||||||
elif glob.fnmatch.fnmatch(file,"*.glade"):
|
elif glob.fnmatch.fnmatch(file,"*.glade"):
|
||||||
@ -143,17 +165,34 @@ def suite1():
|
|||||||
return suite
|
return suite
|
||||||
|
|
||||||
def suite2():
|
def suite2():
|
||||||
|
"""
|
||||||
|
Suite of tests that check for each file in POTFILES.in, then it
|
||||||
|
should have an import gettext or sgettext.
|
||||||
|
"""
|
||||||
suite = unittest.TestSuite()
|
suite = unittest.TestSuite()
|
||||||
potfiles = get_potfile("../POTFILES.in")
|
potfiles = get_potfile("../POTFILES.in")
|
||||||
for potfile in potfiles:
|
for potfile in potfiles:
|
||||||
if glob.fnmatch.fnmatch(potfile,"*.py"):
|
if glob.fnmatch.fnmatch(potfile,"*.py"):
|
||||||
suite.addTest(TestGetText('test_gettext_py_%04d', potfile,
|
suite.addTest(TestGetText('test_gettext_py_%04d', potfile,
|
||||||
["import gettext", "from gettext"]))
|
["import gettext",
|
||||||
if glob.fnmatch.fnmatch(potfile,"*.glade"):
|
"from gettext",
|
||||||
|
"import sgettext"]))
|
||||||
|
elif glob.fnmatch.fnmatch(potfile,"*.glade"):
|
||||||
suite.addTest(TestGetText('test_gettext_glade_%04d', potfile,
|
suite.addTest(TestGetText('test_gettext_glade_%04d', potfile,
|
||||||
["translatable=\"yes\""]))
|
["translatable=\"yes\""]))
|
||||||
return suite
|
return suite
|
||||||
|
|
||||||
|
def suite3():
|
||||||
|
"""
|
||||||
|
Looks for duplicates in POTFILES.in.
|
||||||
|
"""
|
||||||
|
suite = unittest.TestSuite()
|
||||||
|
for potfile in set(get_potfile("../POTFILES.in")):
|
||||||
|
if potfile:
|
||||||
|
suite.addTest(TestDups('test_dups_%04d', potfile))
|
||||||
|
return suite
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.TextTestRunner().run(suite1())
|
unittest.TextTestRunner().run(suite1())
|
||||||
#unittest.TextTestRunner().run(suite2())
|
#unittest.TextTestRunner().run(suite2())
|
||||||
|
unittest.TextTestRunner().run(suite3())
|
||||||
|
Loading…
Reference in New Issue
Block a user