Fix tests that were skipped in #1581

This commit is contained in:
Deniz Turgut 2015-02-17 20:18:12 -05:00
commit fa269d7c6f
3 changed files with 25 additions and 17 deletions

View file

@ -61,7 +61,7 @@ class TestPelican(LoggedTestCase):
def assertDirsEqual(self, left_path, right_path): def assertDirsEqual(self, left_path, right_path):
out, err = subprocess.Popen( out, err = subprocess.Popen(
['git', 'diff', '--no-ext-diff', '--exit-code', '-w', left_path, right_path], ['git', 'diff', '--no-ext-diff', '--exit-code', '-w', left_path, right_path],
env={b'PAGER': b''}, stdout=subprocess.PIPE, stderr=subprocess.PIPE env={str('PAGER'): str('')}, stdout=subprocess.PIPE, stderr=subprocess.PIPE
).communicate() ).communicate()
def ignorable_git_crlf_errors(line): def ignorable_git_crlf_errors(line):
# Work around for running tests on Windows # Work around for running tests on Windows

View file

@ -103,13 +103,12 @@ class TestSettingsConfiguration(unittest.TestCase):
configure_settings(settings) configure_settings(settings)
self.assertEqual(settings['FEED_DOMAIN'], 'http://feeds.example.com') self.assertEqual(settings['FEED_DOMAIN'], 'http://feeds.example.com')
@unittest.skipIf(platform == 'win32', "Doesn't work on Windows")
def test_default_encoding(self): def test_default_encoding(self):
# test that the default locale is set if # test that the default locale is set if
# locale is not specified in the settings # locale is not specified in the settings
#reset locale to python default #reset locale to python default
if platform == 'win32':
return unittest.skip("Doesn't work on Windows")
locale.setlocale(locale.LC_ALL, str('C')) locale.setlocale(locale.LC_ALL, str('C'))
self.assertEqual(self.settings['LOCALE'], DEFAULT_CONFIG['LOCALE']) self.assertEqual(self.settings['LOCALE'], DEFAULT_CONFIG['LOCALE'])

View file

@ -298,12 +298,12 @@ class TestUtils(LoggedTestCase):
'Turkish locale needed') 'Turkish locale needed')
def test_strftime_locale_dependent_turkish(self): def test_strftime_locale_dependent_turkish(self):
# store current locale # store current locale
old_locale = locale.setlocale(locale.LC_TIME) old_locale = locale.setlocale(locale.LC_ALL)
if platform == 'win32': if platform == 'win32':
return unittest.skip("Doesn't work on Windows") locale.setlocale(locale.LC_ALL, str('Turkish'))
else: else:
locale.setlocale(locale.LC_TIME, str('tr_TR.UTF-8')) locale.setlocale(locale.LC_ALL, str('tr_TR.UTF-8'))
d = utils.SafeDatetime(2012, 8, 29) d = utils.SafeDatetime(2012, 8, 29)
@ -321,7 +321,7 @@ class TestUtils(LoggedTestCase):
'2012 yılında %üretim artışı') '2012 yılında %üretim artışı')
# restore locale back # restore locale back
locale.setlocale(locale.LC_TIME, old_locale) locale.setlocale(locale.LC_ALL, old_locale)
# test the output of utils.strftime in a different locale # test the output of utils.strftime in a different locale
@ -331,12 +331,12 @@ class TestUtils(LoggedTestCase):
'French locale needed') 'French locale needed')
def test_strftime_locale_dependent_french(self): def test_strftime_locale_dependent_french(self):
# store current locale # store current locale
old_locale = locale.setlocale(locale.LC_TIME) old_locale = locale.setlocale(locale.LC_ALL)
if platform == 'win32': if platform == 'win32':
locale.setlocale(locale.LC_TIME, str('French')) locale.setlocale(locale.LC_ALL, str('French'))
else: else:
locale.setlocale(locale.LC_TIME, str('fr_FR.UTF-8')) locale.setlocale(locale.LC_ALL, str('fr_FR.UTF-8'))
d = utils.SafeDatetime(2012, 8, 29) d = utils.SafeDatetime(2012, 8, 29)
@ -355,7 +355,7 @@ class TestUtils(LoggedTestCase):
'%écrits en 2012') '%écrits en 2012')
# restore locale back # restore locale back
locale.setlocale(locale.LC_TIME, old_locale) locale.setlocale(locale.LC_ALL, old_locale)
class TestCopy(unittest.TestCase): class TestCopy(unittest.TestCase):
@ -471,10 +471,11 @@ class TestDateFormatter(unittest.TestCase):
locale_available('French'), locale_available('French'),
'French locale needed') 'French locale needed')
def test_french_strftime(self): def test_french_strftime(self):
if platform == 'win32':
return unittest.skip("Doesn't work on Windows")
# This test tries to reproduce an issue that occurred with python3.3 under macos10 only # This test tries to reproduce an issue that occurred with python3.3 under macos10 only
locale.setlocale(locale.LC_ALL, str('fr_FR.UTF-8')) if platform == 'win32':
locale.setlocale(locale.LC_ALL, str('French'))
else:
locale.setlocale(locale.LC_ALL, str('fr_FR.UTF-8'))
date = utils.SafeDatetime(2014,8,14) date = utils.SafeDatetime(2014,8,14)
# we compare the lower() dates since macos10 returns "Jeudi" for %A whereas linux reports "jeudi" # we compare the lower() dates since macos10 returns "Jeudi" for %A whereas linux reports "jeudi"
self.assertEqual( u'jeudi, 14 août 2014', utils.strftime(date, date_format="%A, %d %B %Y").lower() ) self.assertEqual( u'jeudi, 14 août 2014', utils.strftime(date, date_format="%A, %d %B %Y").lower() )
@ -492,9 +493,13 @@ class TestDateFormatter(unittest.TestCase):
locale_available('French'), locale_available('French'),
'French locale needed') 'French locale needed')
def test_french_locale(self): def test_french_locale(self):
if platform == 'win32':
locale_string = 'French'
else:
locale_string = 'fr_FR.UTF-8'
settings = read_settings( settings = read_settings(
override={'LOCALE': locale.normalize('fr_FR.UTF-8'), override = {'LOCALE': locale_string,
'TEMPLATE_PAGES': {'template/source.html': 'TEMPLATE_PAGES': {'template/source.html':
'generated/file.html'}}) 'generated/file.html'}})
generator = TemplatePagesGenerator( generator = TemplatePagesGenerator(
@ -521,8 +526,12 @@ class TestDateFormatter(unittest.TestCase):
locale_available('Turkish'), locale_available('Turkish'),
'Turkish locale needed') 'Turkish locale needed')
def test_turkish_locale(self): def test_turkish_locale(self):
if platform == 'win32':
locale_string = 'Turkish'
else:
locale_string = 'tr_TR.UTF-8'
settings = read_settings( settings = read_settings(
override = {'LOCALE': locale.normalize('tr_TR.UTF-8'), override = {'LOCALE': locale_string,
'TEMPLATE_PAGES': {'template/source.html': 'TEMPLATE_PAGES': {'template/source.html':
'generated/file.html'}}) 'generated/file.html'}})