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 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
|
#!/usr/bin/env python3
# encoding: utf-8
from lua_xgettext import gettext, Lua_GetText, head
import unittest
import os
import sys
sys.path.append(os.path.dirname(__file__) + os.path.sep + '..')
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)
# Make sure we didn't find anything more then expected
self.assertEqual(self.items.keys(), self.p.translatable_items.keys())
# for msgids in sorted(self.items.keys()):
for msgid in self.items.keys():
golden_list, found_list = self.items[
msgid], self.p.translatable_items[msgid]
self.assertEqual(len(golden_list), len(found_list))
for i in range(0, len(found_list)):
golden_item, found_item = golden_list[i], found_list[i]
# We only compare the keys in 'golden_item', 'found_item' may contain
# more keys that we do not care for.
for key in golden_item.keys():
self.assertEqual(golden_item[key], found_item[key])
##################
# Simple Strings #
##################
class TestSimpleString_DoubleQuotes(_TestLua_GetText_SingleFile):
items = {
'Hello World': [{
'type': 'gettext',
'line': 2,
}]
}
code = '''
print _ "Hello World"
'''
class TestSimpleStringWithParens_DoubleQuotes(_TestLua_GetText_SingleFile):
items = {
'Hello World': [{
'type': 'gettext',
'line': 2,
}],
}
code = '''
print _("Hello World" )
'''
class TestSimpleString_SingleQuotes(_TestLua_GetText_SingleFile):
items = {
'Hello World': [{
'type': 'gettext',
'line': 2,
}],
}
code = '''
print _ 'Hello World'
'''
class TestSimpleStringWithParens_SingleQuotes(_TestLua_GetText_SingleFile):
items = {
'Hello World': [{
'type': 'gettext',
'line': 2,
}],
}
code = '''
print _('Hello World' )
'''
class TestSimpleStringWithParens_Inline(_TestLua_GetText_SingleFile):
items = {
'This is ': [{
'type': 'gettext',
'line': 3,
}],
'illegal!': [{
'type': 'gettext',
'line': 3,
}],
}
code = '''
function a()
if(nil) then return _"This is " .. _( "illegal!" ) end
end
'''
class TestSimpleStringWithBackslashes_Inline(_TestLua_GetText_SingleFile):
items = {
r"""This " is """: [{
'type': 'gettext',
'line': 3,
}],
r"fin'e!": [{
'type': 'gettext',
'line': 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 ": [{
'type': 'gettext',
'line': 3,
}],
r'fin"e!': [{
'type': 'gettext',
'line': 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 ': [{
'type': 'gettext',
'line': 3,
}],
}
code = '''
function a()
if(nil) then return _"This is " .. "fine!" end
end
'''
class TestConcatStrings_WithParen(_TestLua_GetText_SingleFile):
items = {
'This is fine!': [{
'type': 'gettext',
'line': 3,
}],
}
code = '''
function a()
if(nil) then return _ ("This is " .. "fine!") end
end
'''
class TestConcatStrings_WithParenMultiLine(_TestLua_GetText_SingleFile):
items = {
'This is fine!': [{
'type': 'gettext',
'line': 4,
}],
}
code = '''
function a()
if(nil) then return _ ("This " ..
"is "
.. "fine!") end
end
'''
class TestConcatStrings_MixQuotes(_TestLua_GetText_SingleFile):
items = {
'This is fine!': [{
'type': 'gettext',
'line': 3,
}],
}
code = '''
function a()
if(nil) then return _ ("This " .. 'is ' .. "fine!") end
end
'''
class TestConcatStrings_MixQuotes1(_TestLua_GetText_SingleFile):
items = {
'This is fine!': [{
'type': 'gettext',
'line': 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.": [{
'type': 'gettext',
'line': 4,
}],
}
code = '''
msg = "a" ..
_(
"a lumberjack's" ..
"second line" ..
"third line."
) ..
"b",
'''
#####################
# Multiline Strings #
#####################
class TestMultilineStrings_Simple(_TestLua_GetText_SingleFile):
items = {
'This\nis that then': [{
'type': 'gettext',
'line': 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': [{
'type': 'gettext',
'line': 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': [{
'type': 'gettext',
'line': 3,
}],
'And more': [{
'type': 'gettext',
'line': 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': [{
'type': 'gettext',
'line': 3,
}],
'More': [{
'type': 'gettext',
'line': 4,
}],
'And more': [{
'type': 'gettext',
'line': 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': [{
'type': 'gettext',
'line': 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"': [{
'type': 'gettext',
'line': 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 ': [{
'type': 'gettext',
'line': 1,
}],
}
code = """_ [[ "There is an old saying:<br> blah ]]"""
class TestNgettextStuff(_TestLua_GetText_SingleFile):
items = {
'car': [{
'msgid': 'car',
'msgid_plural': 'cars',
'type': 'ngettext',
'line': 3,
}],
}
code = """
function a()
local p = ngettext("car", "cars", item)
end
"""
class TestPgettext(_TestLua_GetText_SingleFile):
items = {
'house': [{
'type': 'pgettext',
'msgid': 'house',
'msgctxt': 'brick things',
'line': 3,
}],
}
code = """
function a()
local p = pgettext("brick things", "house")
end
"""
class TestTranslatorComment(_TestLua_GetText_SingleFile):
items = {
'blub': [{
'type': 'gettext',
'line': 3,
'translator_comment':
"""TRANSLATORS: This is "blub" 'test'""",
}],
}
code = """
-- TRANSLATORS: This is "blub" 'test'
function a() return _ "blub" end
"""
class TestTranslatorCommentMultiline(_TestLua_GetText_SingleFile):
items = {
'blub': [{
'translator_comment':
"""TRANSLATORS: This is "blub" 'test'\nTRANSLATORS: And this should be clear""",
}],
}
code = """
-- TRANSLATORS: This is "blub" 'test'
-- TRANSLATORS: And this should be clear
function a() return _ "blub" end
"""
class TestRealWorldExample(_TestLua_GetText_SingleFile):
items = {
'A young man approaches': [{
'type': 'gettext',
'line': 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": [{
'type': 'gettext',
'line': 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.
]])
},
"""
class TestRealWorldExample1(_TestLua_GetText_SingleFile):
items = {
'%s has been King of the Hill since %s!': [{
'type': 'gettext',
'line': 1,
}],
}
code = """had_control_for = rt(p(_[[%s has been King of the Hill since %s!]]))"""
class TestRealWorldExample2(_TestLua_GetText_SingleFile):
items = {
'An old man says...': [{
'type': 'gettext',
'line': 5,
}],
' "Hail, chieftain. I am Khantrukh and have seen many winters pass. Please allow me to aid you with my counsel through these darkened days." ': [{
'type': 'gettext',
'line': 7,
}],
}
code = """
-- Khantruth's texts
-- Khantruth"s texts
khantrukh_1="<rt><p font-size=24 font-face=serif font-weight=bold font-color=8080FF>" ..
_"An old man says..." ..
"</p></rt><rt image=map:khantrukh.png><p line-spacing=3 font-size=12>" ..
_[[ "Hail, chieftain. I am Khantrukh and have seen many winters pass. Please allow me to aid you with my counsel through these darkened days." ]] ..
"</p></rt>"
"""
if __name__ == '__main__':
unittest.main()
|