--- Various fixes to ensure that tests run. They now pass cleanly on my system.main
@@ -44,7 +44,8 @@ def sort_method(node, settings=None): | |||||
if settings and hasattr(settings, 'attr') and settings.attr: | if settings and hasattr(settings, 'attr') and settings.attr: | ||||
attr = settings.attr | attr = settings.attr | ||||
filter_ = partial(filter_method, settings=settings) | filter_ = partial(filter_method, settings=settings) | ||||
resources = ifilter(filter_, node.walk_resources()) | |||||
resources = sorted(ifilter(filter_, node.walk_resources()), | |||||
key=lambda f: f.name) | |||||
reverse = False | reverse = False | ||||
if settings and hasattr(settings, 'reverse'): | if settings and hasattr(settings, 'reverse'): | ||||
reverse = settings.reverse | reverse = settings.reverse | ||||
@@ -29,7 +29,8 @@ class TestLess(object): | |||||
def test_can_execute_less(self): | def test_can_execute_less(self): | ||||
s = Site(TEST_SITE) | s = Site(TEST_SITE) | ||||
s.config.plugins = ['hyde.ext.plugins.less.LessCSSPlugin'] | s.config.plugins = ['hyde.ext.plugins.less.LessCSSPlugin'] | ||||
paths = ['/usr/local/share/npm/bin/lessc', '~/local/bin/lessc'] | |||||
paths = ['/usr/local/share/npm/bin/lessc', '~/local/bin/lessc', | |||||
'/usr/bin/lessc', '~/bin/lessc'] | |||||
less = [path for path in paths if File(path).exists] | less = [path for path in paths if File(path).exists] | ||||
if not less: | if not less: | ||||
assert False, "Cannot find the lessc executable" | assert False, "Cannot find the lessc executable" | ||||
@@ -31,7 +31,7 @@ class TestOptipng(object): | |||||
s = Site(TEST_SITE) | s = Site(TEST_SITE) | ||||
s.config.mode = "production" | s.config.mode = "production" | ||||
s.config.plugins = ['hyde.ext.plugins.optipng.OptiPNGPlugin'] | s.config.plugins = ['hyde.ext.plugins.optipng.OptiPNGPlugin'] | ||||
paths = ['/usr/local/bin/optipng'] | |||||
paths = ['/usr/local/bin/optipng', '/usr/bin/optipng'] | |||||
optipng = [path for path in paths if File(path).exists] | optipng = [path for path in paths if File(path).exists] | ||||
if not optipng: | if not optipng: | ||||
assert False, "Cannot find the optipng executable" | assert False, "Cannot find the optipng executable" | ||||
@@ -49,7 +49,7 @@ class TestSorter(object): | |||||
pages = [page.name for page in | pages = [page.name for page in | ||||
s.content.walk_resources_sorted_by_kind()] | s.content.walk_resources_sorted_by_kind()] | ||||
assert pages == sorted(expected, key=lambda f: File(f).kind) | |||||
assert pages == sorted(sorted(expected), key=lambda f: File(f).kind) | |||||
def test_walk_resources_sorted_reverse(self): | def test_walk_resources_sorted_reverse(self): | ||||
s = Site(TEST_SITE) | s = Site(TEST_SITE) | ||||
@@ -74,7 +74,7 @@ class TestSorter(object): | |||||
s.content.walk_resources_sorted_by_kind()] | s.content.walk_resources_sorted_by_kind()] | ||||
assert pages == sorted(expected, key=lambda f: File(f).kind, reverse=True) | |||||
assert pages == sorted(sorted(expected), key=lambda f: File(f).kind, reverse=True) | |||||
def test_walk_resources_sorted_with_filters(self): | def test_walk_resources_sorted_with_filters(self): | ||||
s = Site(TEST_SITE) | s = Site(TEST_SITE) | ||||
@@ -131,7 +131,7 @@ class TestSorter(object): | |||||
expected_sorted = [File(page).name | expected_sorted = [File(page).name | ||||
for page in | for page in | ||||
sorted(expected, | |||||
sorted(sorted(expected), | |||||
key=lambda p: tuple( | key=lambda p: tuple( | ||||
[File(p).kind, | [File(p).kind, | ||||
File(p).parent.name]))] | File(p).parent.name]))] | ||||
@@ -269,4 +269,4 @@ class TestSorter(object): | |||||
text = target.read_all() | text = target.read_all() | ||||
q = PyQuery(text) | q = PyQuery(text) | ||||
assert q('span.latest').text() == 'YayYayYay' | |||||
assert q('span.latest').text() == 'YayYayYay' |
@@ -29,7 +29,8 @@ class TestLess(object): | |||||
def test_can_execute_stylus(self): | def test_can_execute_stylus(self): | ||||
s = Site(TEST_SITE) | s = Site(TEST_SITE) | ||||
s.config.plugins = ['hyde.ext.plugins.stylus.StylusPlugin'] | s.config.plugins = ['hyde.ext.plugins.stylus.StylusPlugin'] | ||||
paths = ['/usr/local/share/npm/bin/stylus', '~/local/bin/stylus'] | |||||
paths = ['/usr/local/share/npm/bin/stylus', '~/local/bin/stylus', | |||||
'~/bin/stylus'] | |||||
stylus = [path for path in paths if File(path).exists] | stylus = [path for path in paths if File(path).exists] | ||||
if not stylus: | if not stylus: | ||||
assert False, "Cannot find the stylus executable" | assert False, "Cannot find the stylus executable" | ||||
@@ -53,7 +54,8 @@ class TestLess(object): | |||||
s = Site(TEST_SITE) | s = Site(TEST_SITE) | ||||
s.config.mode = "production" | s.config.mode = "production" | ||||
s.config.plugins = ['hyde.ext.plugins.stylus.StylusPlugin'] | s.config.plugins = ['hyde.ext.plugins.stylus.StylusPlugin'] | ||||
paths = ['/usr/local/share/npm/bin/stylus', '~/local/bin/stylus'] | |||||
paths = ['/usr/local/share/npm/bin/stylus', '~/local/bin/stylus', | |||||
'~/bin/stylus'] | |||||
stylus = [path for path in paths if File(path).exists] | stylus = [path for path in paths if File(path).exists] | ||||
if not stylus: | if not stylus: | ||||
assert False, "Cannot find the stylus executable" | assert False, "Cannot find the stylus executable" | ||||
@@ -68,4 +70,4 @@ class TestLess(object): | |||||
assert target.exists | assert target.exists | ||||
text = target.read_all() | text = target.read_all() | ||||
expected_text = File(STYLUS_SOURCE.child('expected-site-compressed.css')).read_all() | expected_text = File(STYLUS_SOURCE.child('expected-site-compressed.css')).read_all() | ||||
assert text.strip() == expected_text.strip() | |||||
assert text.strip() == expected_text.strip() |
@@ -31,7 +31,8 @@ class TestLess(object): | |||||
s = Site(TEST_SITE) | s = Site(TEST_SITE) | ||||
s.config.plugins = ['hyde.ext.plugins.uglify.UglifyPlugin'] | s.config.plugins = ['hyde.ext.plugins.uglify.UglifyPlugin'] | ||||
s.config.mode = "production" | s.config.mode = "production" | ||||
paths = ['/usr/local/share/npm/bin/uglifyjs', '~/local/bin/uglifyjs'] | |||||
paths = ['/usr/local/share/npm/bin/uglifyjs', '~/local/bin/uglifyjs', | |||||
'/usr/bin/uglifyjs', '~/bin/uglifyjs'] | |||||
uglify = [path for path in paths if File(path).exists] | uglify = [path for path in paths if File(path).exists] | ||||
if not uglify: | if not uglify: | ||||
assert False, "Cannot find the uglify executable" | assert False, "Cannot find the uglify executable" | ||||
@@ -52,7 +53,8 @@ class TestLess(object): | |||||
s = Site(TEST_SITE) | s = Site(TEST_SITE) | ||||
s.config.plugins = ['hyde.ext.plugins.uglify.UglifyPlugin'] | s.config.plugins = ['hyde.ext.plugins.uglify.UglifyPlugin'] | ||||
s.config.mode = "production" | s.config.mode = "production" | ||||
paths = ['/usr/local/share/npm/bin/uglifyjs', '~/local/bin/uglifyjs'] | |||||
paths = ['/usr/local/share/npm/bin/uglifyjs', '~/local/bin/uglifyjs', | |||||
'/usr/bin/uglifyjs', '~/bin/uglifyjs'] | |||||
uglify = [path for path in paths if File(path).exists] | uglify = [path for path in paths if File(path).exists] | ||||
if not uglify: | if not uglify: | ||||
assert False, "Cannot find the uglify executable" | assert False, "Cannot find the uglify executable" | ||||
@@ -74,7 +76,8 @@ class TestLess(object): | |||||
s = Site(TEST_SITE) | s = Site(TEST_SITE) | ||||
s.config.plugins = ['hyde.ext.plugins.uglify.UglifyPlugin'] | s.config.plugins = ['hyde.ext.plugins.uglify.UglifyPlugin'] | ||||
s.config.mode = "dev" | s.config.mode = "dev" | ||||
paths = ['/usr/local/share/npm/bin/uglifyjs', '~/local/bin/uglifyjs'] | |||||
paths = ['/usr/local/share/npm/bin/uglifyjs', '~/local/bin/uglifyjs', | |||||
'/usr/bin/uglifyjs', '~/bin/uglifyjs'] | |||||
uglify = [path for path in paths if File(path).exists] | uglify = [path for path in paths if File(path).exists] | ||||
if not uglify: | if not uglify: | ||||
assert False, "Cannot find the uglify executable" | assert False, "Cannot find the uglify executable" | ||||
@@ -6,7 +6,7 @@ | |||||
<div class="article"> | <div class="article"> | ||||
<h2><a href="{{ article.href|e }}">{{ article.title|e }}</a></h2> | <h2><a href="{{ article.href|e }}">{{ article.title|e }}</a></h2> | ||||
<p class="meta">written by <a href="{{ article.user.href|e | <p class="meta">written by <a href="{{ article.user.href|e | ||||
}}">{{ article.user.username|e }}</a> on {{ article.pub_date|dateformat }}</p> | |||||
}}">{{ article.user.username|e }}</a> on {{ article.pub_date.strftime('%Y-%m-%d') }}</p> | |||||
<div class="text">{{ article.body }}</div> | <div class="text">{{ article.body }}</div> | ||||
</div> | </div> | ||||
{%- endfor %} | {%- endfor %} | ||||