2011-04-19 05:02:57 +08:00
# -*- encoding: utf-8 -*-
2010-02-22 07:45:04 +08:00
import os
import re
import shutil
from django . test import TestCase
from django . core import management
LOCALE = ' de '
class ExtractorTests ( TestCase ) :
PO_FILE = ' locale/ %s /LC_MESSAGES/django.po ' % LOCALE
def setUp ( self ) :
self . _cwd = os . getcwd ( )
self . test_dir = os . path . abspath ( os . path . dirname ( __file__ ) )
def _rmrf ( self , dname ) :
if os . path . commonprefix ( [ self . test_dir , os . path . abspath ( dname ) ] ) != self . test_dir :
return
shutil . rmtree ( dname )
def tearDown ( self ) :
os . chdir ( self . test_dir )
try :
self . _rmrf ( ' locale/ %s ' % LOCALE )
except OSError :
pass
os . chdir ( self . _cwd )
2010-11-04 20:08:37 +08:00
def assertMsgId ( self , msgid , s , use_quotes = True ) :
if use_quotes :
msgid = ' " %s " ' % msgid
2011-06-08 00:11:25 +08:00
msgid = re . escape ( msgid )
2011-03-03 23:04:39 +08:00
return self . assertTrue ( re . search ( ' ^msgid %s ' % msgid , s , re . MULTILINE ) )
2010-02-22 07:45:04 +08:00
2010-11-04 20:08:37 +08:00
def assertNotMsgId ( self , msgid , s , use_quotes = True ) :
if use_quotes :
msgid = ' " %s " ' % msgid
2011-06-08 00:11:25 +08:00
msgid = re . escape ( msgid )
2011-03-03 23:04:39 +08:00
return self . assertTrue ( not re . search ( ' ^msgid %s ' % msgid , s , re . MULTILINE ) )
2010-02-22 07:45:04 +08:00
2010-11-17 23:37:33 +08:00
class BasicExtractorTests ( ExtractorTests ) :
def test_comments_extractor ( self ) :
os . chdir ( self . test_dir )
management . call_command ( ' makemessages ' , locale = LOCALE , verbosity = 0 )
2011-03-03 23:04:39 +08:00
self . assertTrue ( os . path . exists ( self . PO_FILE ) )
2010-11-17 23:37:33 +08:00
po_contents = open ( self . PO_FILE , ' r ' ) . read ( )
2011-03-03 23:04:39 +08:00
self . assertTrue ( ' #. Translators: This comment should be extracted ' in po_contents )
self . assertTrue ( ' This comment should not be extracted ' not in po_contents )
2010-11-17 23:37:33 +08:00
# Comments in templates
2011-03-03 23:04:39 +08:00
self . assertTrue ( ' #. Translators: Django template comment for translators ' in po_contents )
2011-03-19 20:56:38 +08:00
self . assertTrue ( " #. Translators: Django comment block for translators \n #. string ' s meaning unveiled " in po_contents )
self . assertTrue ( ' #. Translators: One-line translator comment #1 ' in po_contents )
self . assertTrue ( ' #. Translators: Two-line translator comment #1 \n #. continued here. ' in po_contents )
self . assertTrue ( ' #. Translators: One-line translator comment #2 ' in po_contents )
self . assertTrue ( ' #. Translators: Two-line translator comment #2 \n #. continued here. ' in po_contents )
self . assertTrue ( ' #. Translators: One-line translator comment #3 ' in po_contents )
self . assertTrue ( ' #. Translators: Two-line translator comment #3 \n #. continued here. ' in po_contents )
self . assertTrue ( ' #. Translators: One-line translator comment #4 ' in po_contents )
self . assertTrue ( ' #. Translators: Two-line translator comment #4 \n #. continued here. ' in po_contents )
2010-11-04 22:06:24 +08:00
2011-04-19 05:02:57 +08:00
self . assertTrue ( ' #. Translators: One-line translator comment #5 -- with non ASCII characters: áéíóúö ' in po_contents )
self . assertTrue ( ' #. Translators: Two-line translator comment #5 -- with non ASCII characters: áéíóúö \n #. continued here. ' in po_contents )
2010-11-04 22:06:24 +08:00
def test_templatize ( self ) :
os . chdir ( self . test_dir )
management . call_command ( ' makemessages ' , locale = LOCALE , verbosity = 0 )
2011-03-03 23:04:39 +08:00
self . assertTrue ( os . path . exists ( self . PO_FILE ) )
2010-11-04 22:06:24 +08:00
po_contents = open ( self . PO_FILE , ' r ' ) . read ( )
self . assertMsgId ( ' I think that 100 %% is more that 50 %% of anything. ' , po_contents )
2011-06-08 00:11:25 +08:00
self . assertMsgId ( ' I think that 100 %% is more that 50 %% of %(obj)s . ' , po_contents )
2010-11-04 22:06:24 +08:00
2010-12-05 01:42:54 +08:00
def test_extraction_error ( self ) :
os . chdir ( self . test_dir )
shutil . copyfile ( ' ./templates/template_with_error.txt ' , ' ./templates/template_with_error.html ' )
self . assertRaises ( SyntaxError , management . call_command , ' makemessages ' , locale = LOCALE , verbosity = 0 )
2011-03-28 10:27:43 +08:00
try :
management . call_command ( ' makemessages ' , locale = LOCALE , verbosity = 0 )
except SyntaxError , e :
2011-05-27 05:03:56 +08:00
self . assertRegexpMatches (
str ( e ) ,
r ' Translation blocks must not include other block tags: blocktrans \ (file templates[/ \\ ]template_with_error \ .html, line 3 \ ) '
)
2010-12-05 01:42:54 +08:00
finally :
os . remove ( ' ./templates/template_with_error.html ' )
os . remove ( ' ./templates/template_with_error.html.py ' ) # Waiting for #8536 to be fixed
2010-11-04 22:06:24 +08:00
2010-02-22 07:45:04 +08:00
class JavascriptExtractorTests ( ExtractorTests ) :
PO_FILE = ' locale/ %s /LC_MESSAGES/djangojs.po ' % LOCALE
def test_javascript_literals ( self ) :
os . chdir ( self . test_dir )
management . call_command ( ' makemessages ' , domain = ' djangojs ' , locale = LOCALE , verbosity = 0 )
2011-03-03 23:04:39 +08:00
self . assertTrue ( os . path . exists ( self . PO_FILE ) )
2010-02-22 07:45:04 +08:00
po_contents = open ( self . PO_FILE , ' r ' ) . read ( )
self . assertMsgId ( ' This literal should be included. ' , po_contents )
self . assertMsgId ( ' This one as well. ' , po_contents )
2011-06-08 00:11:25 +08:00
self . assertMsgId ( r ' He said, \ " hello \ " . ' , po_contents )
self . assertMsgId ( " okkkk " , po_contents )
self . assertMsgId ( " TEXT " , po_contents )
self . assertMsgId ( " It ' s at http://example.com " , po_contents )
self . assertMsgId ( " String " , po_contents )
self . assertMsgId ( " /* but this one will be too */ ' cause there is no way of telling... " , po_contents )
self . assertMsgId ( " foo " , po_contents )
self . assertMsgId ( " bar " , po_contents )
self . assertMsgId ( " baz " , po_contents )
self . assertMsgId ( " quz " , po_contents )
self . assertMsgId ( " foobar " , po_contents )
2010-02-22 07:45:04 +08:00
class IgnoredExtractorTests ( ExtractorTests ) :
def test_ignore_option ( self ) :
os . chdir ( self . test_dir )
2011-05-27 05:03:56 +08:00
pattern1 = os . path . join ( ' ignore_dir ' , ' * ' )
management . call_command ( ' makemessages ' , locale = LOCALE , verbosity = 0 , ignore_patterns = [ pattern1 ] )
2011-03-03 23:04:39 +08:00
self . assertTrue ( os . path . exists ( self . PO_FILE ) )
2010-02-22 07:45:04 +08:00
po_contents = open ( self . PO_FILE , ' r ' ) . read ( )
self . assertMsgId ( ' This literal should be included. ' , po_contents )
self . assertNotMsgId ( ' This should be ignored. ' , po_contents )
class SymlinkExtractorTests ( ExtractorTests ) :
def setUp ( self ) :
self . _cwd = os . getcwd ( )
self . test_dir = os . path . abspath ( os . path . dirname ( __file__ ) )
self . symlinked_dir = os . path . join ( self . test_dir , ' templates_symlinked ' )
def tearDown ( self ) :
super ( SymlinkExtractorTests , self ) . tearDown ( )
os . chdir ( self . test_dir )
try :
os . remove ( self . symlinked_dir )
except OSError :
pass
os . chdir ( self . _cwd )
def test_symlink ( self ) :
if hasattr ( os , ' symlink ' ) :
if os . path . exists ( self . symlinked_dir ) :
2011-03-03 23:04:39 +08:00
self . assertTrue ( os . path . islink ( self . symlinked_dir ) )
2010-02-22 07:45:04 +08:00
else :
os . symlink ( os . path . join ( self . test_dir , ' templates ' ) , self . symlinked_dir )
os . chdir ( self . test_dir )
management . call_command ( ' makemessages ' , locale = LOCALE , verbosity = 0 , symlinks = True )
2011-03-03 23:04:39 +08:00
self . assertTrue ( os . path . exists ( self . PO_FILE ) )
2010-02-22 07:45:04 +08:00
po_contents = open ( self . PO_FILE , ' r ' ) . read ( )
self . assertMsgId ( ' This literal should be included. ' , po_contents )
2011-03-03 23:04:39 +08:00
self . assertTrue ( ' templates_symlinked/test.html ' in po_contents )
2010-02-22 07:45:04 +08:00
class CopyPluralFormsExtractorTests ( ExtractorTests ) :
def test_copy_plural_forms ( self ) :
os . chdir ( self . test_dir )
management . call_command ( ' makemessages ' , locale = LOCALE , verbosity = 0 )
2011-03-03 23:04:39 +08:00
self . assertTrue ( os . path . exists ( self . PO_FILE ) )
2010-02-22 07:45:04 +08:00
po_contents = open ( self . PO_FILE , ' r ' ) . read ( )
2011-03-03 23:04:39 +08:00
self . assertTrue ( ' Plural-Forms: nplurals=2; plural=(n != 1) ' in po_contents )
2010-11-04 20:08:37 +08:00
class NoWrapExtractorTests ( ExtractorTests ) :
def test_no_wrap_enabled ( self ) :
os . chdir ( self . test_dir )
management . call_command ( ' makemessages ' , locale = LOCALE , verbosity = 0 , no_wrap = True )
2011-03-03 23:04:39 +08:00
self . assertTrue ( os . path . exists ( self . PO_FILE ) )
2010-11-04 20:08:37 +08:00
po_contents = open ( self . PO_FILE , ' r ' ) . read ( )
self . assertMsgId ( ' This literal should also be included wrapped or not wrapped depending on the use of the --no-wrap option. ' , po_contents )
def test_no_wrap_disabled ( self ) :
os . chdir ( self . test_dir )
management . call_command ( ' makemessages ' , locale = LOCALE , verbosity = 0 , no_wrap = False )
2011-03-03 23:04:39 +08:00
self . assertTrue ( os . path . exists ( self . PO_FILE ) )
2010-11-04 20:08:37 +08:00
po_contents = open ( self . PO_FILE , ' r ' ) . read ( )
self . assertMsgId ( ' " " \n " This literal should also be included wrapped or not wrapped depending on the " \n " use of the --no-wrap option. " ' , po_contents , use_quotes = False )