1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
#!/usr/bin/env python
# encoding: utf-8
import unittest
import os, sys
sys.path.append(os.path.dirname(__file__) + os.path.sep + '..')
from lua_xgettext import gettext, Lua_GetText, head
class TestXGettext(unittest.TestCase):
def runTest(self):
self.assertTrue(True)
def test_empty_input(self):
self.assertEqual(head,gettext("", "test.lua"))
class _TestLua_GetText_SingleFile(unittest.TestCase):
filename = "test.lua"
def setUp(self):
self.p = Lua_GetText()
def run_test(self):
self.p.parse(self.code, self.filename)
print self.p.findings
# Make sure we didn't find anything more then expected
nfindings = sum(len(self.p.findings[i]) for i in self.p.findings.keys())
self.assertEqual(len(self.items), nfindings)
for entry, count, line in self.items:
self.assertTrue(entry in self.p.findings, "'%s' not found!" % entry)
self.assertEqual(self.p.findings[entry][count],
(self.filename, line)
)
##################
# Simple Strings #
##################
class TestSimpleString_DoubleQuotes(_TestLua_GetText_SingleFile):
items = [
("Hello World", 0, 2),
]
code ='''
print _ "Hello World"
'''
class TestSimpleStringWithParens_DoubleQuotes(_TestLua_GetText_SingleFile):
items = [
("Hello World", 0, 2),
]
code ='''
print _("Hello World" )
'''
class TestSimpleString_SingleQuotes(_TestLua_GetText_SingleFile):
items = [
("Hello World", 0, 2),
]
code ='''
print _ 'Hello World'
'''
class TestSimpleStringWithParens_SingleQuotes(_TestLua_GetText_SingleFile):
items = [
("Hello World", 0, 2),
]
code ='''
print _('Hello World' )
'''
class TestSimpleStringWithParens_Inline(_TestLua_GetText_SingleFile):
items = [
("This is ", 0, 3),
("illegal!", 0, 3),
]
code ='''
function a()
if(nil) then return _"This is " .. _( "illegal!" ) end
end
'''
class TestSimpleStringWithBackslashes_Inline(_TestLua_GetText_SingleFile):
items = [
(r"""This " is """, 0, 3),
(r"fin'e!", 0, 3),
]
code =r'''
function a()
if(nil) then return _"This \" is " .. _( "fin'e!" ) end
end
'''
class TestSimpleStringWithBackslashes_SQuote(_TestLua_GetText_SingleFile):
items = [
(r"This ' is ", 0, 3),
(r'fin"e!', 0, 3),
]
code =r'''
function a()
if(nil) then return _'This \' is ' .. _( 'fin"e!' ) end
end
'''
########################
# Concatenated strings #
########################
class TestConcatStrings_Inline(_TestLua_GetText_SingleFile):
items = [
("This is ", 0, 3),
]
code = '''
function a()
if(nil) then return _"This is " .. "fine!" end
end
'''
class TestConcatStrings_WithParen(_TestLua_GetText_SingleFile):
items = [
("This is fine!", 0, 3),
]
code = '''
function a()
if(nil) then return _ ("This is " .. "fine!") end
end
'''
class TestConcatStrings_WithParenMultiLine(_TestLua_GetText_SingleFile):
items = [
("This is fine!", 0, 4),
]
code = '''
function a()
if(nil) then return _ ("This " ..
"is "
.. "fine!") end
end
'''
class TestConcatStrings_MixQuotes(_TestLua_GetText_SingleFile):
items = [
("This is fine!", 0, 3),
]
code = '''
function a()
if(nil) then return _ ("This " .. 'is ' .. "fine!") end
end
'''
class TestConcatStrings_MixQuotes1(_TestLua_GetText_SingleFile):
items = [
("This is fine!", 0, 4),
]
code = '''
a = 100
function a()
if(nil) then return _ ('This ' .. "is " .. 'fine!') end
end
'''
class TestConcatStrings_Difficult(_TestLua_GetText_SingleFile):
items = [
("a lumberjack'ssecond linethird line.", 0, 3),
]
code = '''
msg = "a" ..
_(
"a lumberjack's" ..
"second line" ..
"third line."
) ..
"b",
'''
#####################
# Multiline Strings #
#####################
class TestMultilineStrings_Simple(_TestLua_GetText_SingleFile):
items = [
("This\nis that then", 0, 3),
]
code = '''
function a()
if(nil) then return _ [[This
is that then]]
end
end
'''
class TestMultilineStrings_SimpleNoTrans(_TestLua_GetText_SingleFile):
items = [
("This\nis that then", 0, 3),
]
code = '''
function a()
if(nil) then return _ [[This
is that then]] .. [[More]] .. "And more"
end
end
'''
class TestMultilineStrings_SimpleNoTrans1(_TestLua_GetText_SingleFile):
items = [
("This\nis that then", 0, 3),
("And more", 0, 4),
]
code = '''
function a()
if(nil) then return _ [[This
is that then]] .. [[More]] .. _ "And more"
end
end
'''
class TestMultilineStrings_AllTrans(_TestLua_GetText_SingleFile):
items = [
("This\nis that then", 0, 3),
("More", 0, 4),
("And more", 0, 4),
]
code = '''
function a()
if(nil) then return _ [[This
is that then]] .. _[[More]] .. _ "And more"
end
end
'''
class TestMultilineStrings_InParen(_TestLua_GetText_SingleFile):
items = [
("This\nis that thenMoreAnd more", 0, 3),
]
code = '''
function a()
if(nil) then return _ ([[This
is that then]] .. [[More]] .. "And more"
)
end
end
'''
class TestMultilineStrings_ContainingSingleLine(_TestLua_GetText_SingleFile):
items = [
('"Lorem ipsum dolor sit amet, consetetur sadipscing\nelitr, sed diam '
'nonumy eirmod tempor"', 0, 4),
]
code = '''
function a()
if(nil) then return _
[["Lorem ipsum dolor sit amet, consetetur sadipscing
elitr, sed diam nonumy eirmod tempor"]]
end
end
'''
class TestVerySimpleMultilineString(_TestLua_GetText_SingleFile):
items = [
(' "There is an old saying:<br> blah ', 0, 1),
]
code = """_ [[ "There is an old saying:<br> blah ]]"""
class TestRealWorldExample(_TestLua_GetText_SingleFile):
items = [
("A young man approaches", 0, 2),
("May Satul warm you, Jundlina. My name is Ostur and I construct ships. I have\ninvented a new kind of ship: smaller than those we are used to, but much\nsturdier. If we build them correctly, I am confident that we can go with them\na much longer distance and maybe escape from Lutas' influence.\n", 0, 4)
]
code ="""{
title = _ "A young man approaches",
body = ostur(_
[[May Satul warm you, Jundlina. My name is Ostur and I construct ships. I have
invented a new kind of ship: smaller than those we are used to, but much
sturdier. If we build them correctly, I am confident that we can go with them
a much longer distance and maybe escape from Lutas' influence.
]])
},
"""
if __name__ == '__main__':
unittest.main()
# k = SomeTestClass()
# unittest.TextTestRunner().run(k)
|