예제 #1
0
 def test_extract_from_files_callback_works(self):
     """extract_from_files should call our callback"""
     testfile = ('templates/even_more_lang_files.html',)
     callback = Mock()
     next(extract_from_files(testfile, callback=callback,
                             method_map=METHODS), None)
     callback.assert_called_once_with(testfile[0], METHODS[0][1], ANY)
예제 #2
0
 def test_extract_from_files_passes_args(self, eff):
     """The correct args should be passed through to extract_from_file"""
     testfile = ("lib/l10n_utils/tests/test_files/templates/" "even_more_lang_files.html",)
     testfile_full = path.join(settings.ROOT, testfile[0])
     next(extract_from_files(testfile, method_map=METHODS), None)
     eff.assert_called_once_with(
         METHODS[0][1], testfile_full, keywords=ANY, comment_tags=ANY, options=ANY, strip_comment_tags=ANY
     )
예제 #3
0
 def test_extract_from_files_no_file(self):
     """
     If the file path doesn't exist, it should be skipped.
     """
     testfile = ("lib/l10n_utils/tests/test_files/templates/" "file_does_not_exist.html",)
     with capture_stdio() as out:
         extracted = next(extract_from_files(testfile, method_map=METHODS), None)
     self.assertIsNone(extracted)
     self.assertEqual(out[0], "! %s does not exist!" % testfile)
예제 #4
0
 def test_extract_from_files_no_match(self):
     """
     If the file path doesn't match a domain method, it should be skipped.
     """
     testfile = ("bedrock/mozorg/templates/mozorg/home.html",)
     with capture_stdio() as out:
         extracted = next(extract_from_files(testfile, method_map=METHODS), None)
     self.assertIsNone(extracted)
     self.assertEqual(out[0], "! %s does not match any domain methods!" % testfile)
예제 #5
0
 def test_extract_from_files_passes_args(self, eff):
     """The correct args should be passed through to extract_from_file"""
     testfile = ('templates/even_more_lang_files.html',)
     testfile_full = path.join(settings.ROOT, testfile[0])
     next(extract_from_files(testfile, method_map=METHODS), None)
     eff.assert_called_once_with(METHODS[0][1], testfile_full,
                                 keywords=ANY,
                                 comment_tags=ANY,
                                 options=ANY,
                                 strip_comment_tags=ANY)
예제 #6
0
 def test_extract_from_files_no_file(self):
     """
     If the file path doesn't exist, it should be skipped.
     """
     testfile = ('templates/file_does_not_exist.html',)
     with capture_stdio() as out:
         extracted = next(extract_from_files(testfile, method_map=METHODS),
                          None)
     self.assertIsNone(extracted)
     self.assertEqual(out[0], '! %s does not exist!' % testfile)
예제 #7
0
 def test_extract_from_files(self):
     """
     Should be able to extract strings from a specific file.
     """
     testfile = ("lib/l10n_utils/tests/test_files/templates/" "even_more_lang_files.html",)
     with capture_stdio() as out:
         extracted = next(extract_from_files(testfile, method_map=METHODS))
     self.assertTupleEqual(extracted, (testfile[0], 9, "Mark it 8 Dude.", []))
     # test default callback
     self.assertEqual(out[0], "  %s" % testfile)
예제 #8
0
 def test_extract_from_files(self):
     """
     Should be able to extract strings from a specific file.
     """
     testfile = ('templates/even_more_lang_files.html',)
     with capture_stdio() as out:
         extracted = next(extract_from_files(testfile, method_map=METHODS))
     self.assertTupleEqual(extracted,
                           (testfile[0], 9, 'Mark it 8 Dude.', [], None))
     # test default callback
     self.assertEqual(out[0], '  %s' % testfile)
예제 #9
0
 def test_extract_from_files_no_match(self):
     """
     If the file path doesn't match a domain method, it should be skipped.
     """
     testfile = ('bedrock/mozorg/templates/mozorg/home.html',)
     with capture_stdio() as out:
         extracted = next(extract_from_files(testfile, method_map=METHODS),
                          None)
     self.assertIsNone(extracted)
     self.assertEqual(out[0],
                      '! %s does not match any domain methods!' % testfile)
예제 #10
0
 def test_extract_from_multiple_files(self):
     """
     Should be able to extract strings from specific files.
     """
     basedir = "lib/l10n_utils/tests/test_files/templates/"
     testfiles = (basedir + "even_more_lang_files.html", basedir + "some_lang_files.html")
     good_extracts = (
         (testfiles[0], 9, "Mark it 8 Dude.", []),
         (testfiles[1], 10, "Is this your homework Larry?", [u"Said angrily, loudly, and repeatedly."]),
     )
     with capture_stdio() as out:
         for i, extracted in enumerate(extract_from_files(testfiles, method_map=METHODS)):
             self.assertTupleEqual(extracted, good_extracts[i])
     self.assertEqual(out[0], "  %s\n  %s" % testfiles)
예제 #11
0
 def test_extract_from_multiple_files(self):
     """
     Should be able to extract strings from specific files.
     """
     basedir = 'lib/l10n_utils/tests/test_files/templates/'
     testfiles = (
         basedir + 'even_more_lang_files.html',
         basedir + 'some_lang_files.html',
     )
     good_extracts = (
         (testfiles[0], 9, 'Mark it 8 Dude.', []),
         (testfiles[1], 9, 'Is this your homework Larry?', []),
     )
     with capture_stdio() as out:
         for i, extracted in enumerate(
                 extract_from_files(testfiles, method_map=METHODS)):
             self.assertTupleEqual(extracted, good_extracts[i])
     self.assertEqual(out[0], '  %s\n  %s' % testfiles)
예제 #12
0
 def test_extract_from_multiple_files(self):
     """
     Should be able to extract strings from specific files.
     """
     basedir = 'lib/l10n_utils/tests/test_files/templates/'
     testfiles = (
         basedir + 'even_more_lang_files.html',
         basedir + 'some_lang_files.html',
     )
     good_extracts = (
         (testfiles[0], 9, 'Mark it 8 Dude.', []),
         (testfiles[1], 9, 'Is this your homework Larry?', []),
     )
     with capture_stdio() as out:
         for i, extracted in enumerate(
                 extract_from_files(testfiles, method_map=METHODS)):
             self.assertTupleEqual(extracted, good_extracts[i])
     self.assertEqual(out[0], '  %s\n  %s' % testfiles)