A fork of hyde, the static site generation. Some patches will be pushed upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

63 lines
2.2 KiB

  1. # -*- coding: utf-8 -*-
  2. """
  3. Use nose
  4. `$ pip install nose`
  5. `$ nosetests`
  6. """
  7. from hyde.fs import File, Folder
  8. from hyde.model import Expando
  9. from hyde.generator import Generator
  10. from hyde.site import Site
  11. STYLUS_SOURCE = File(__file__).parent.child_folder('stylus')
  12. TEST_SITE = File(__file__).parent.parent.child_folder('_test')
  13. class TestStylus(object):
  14. def setUp(self):
  15. TEST_SITE.make()
  16. TEST_SITE.parent.child_folder(
  17. 'sites/test_jinja').copy_contents_to(TEST_SITE)
  18. STYLUS_SOURCE.copy_contents_to(TEST_SITE.child('content/media/css'))
  19. File(TEST_SITE.child('content/media/css/site.css')).delete()
  20. def tearDown(self):
  21. TEST_SITE.delete()
  22. def test_can_execute_stylus(self):
  23. s = Site(TEST_SITE)
  24. s.config.plugins = ['hyde.ext.plugins.stylus.StylusPlugin']
  25. paths = ['/usr/local/share/npm/bin/stylus']
  26. for path in paths:
  27. if File(path).exists:
  28. s.config.stylus = Expando(dict(app=path))
  29. source = TEST_SITE.child('content/media/css/site.styl')
  30. target = File(Folder(s.config.deploy_root_path).child('media/css/site.css'))
  31. gen = Generator(s)
  32. gen.generate_resource_at_path(source)
  33. assert target.exists
  34. text = target.read_all()
  35. expected_text = File(STYLUS_SOURCE.child('expected-site.css')).read_all()
  36. assert text.strip() == expected_text.strip()
  37. def test_can_compress_with_stylus(self):
  38. s = Site(TEST_SITE)
  39. s.config.mode = "production"
  40. s.config.plugins = ['hyde.ext.plugins.stylus.StylusPlugin']
  41. paths = ['/usr/local/share/npm/bin/stylus']
  42. for path in paths:
  43. if File(path).exists:
  44. s.config.stylus = Expando(dict(app=path))
  45. source = TEST_SITE.child('content/media/css/site.styl')
  46. target = File(Folder(s.config.deploy_root_path).child('media/css/site.css'))
  47. gen = Generator(s)
  48. gen.generate_resource_at_path(source)
  49. assert target.exists
  50. text = target.read_all()
  51. expected_text = File(STYLUS_SOURCE.child('expected-site-compressed.css')).read_all()
  52. assert text.strip() == expected_text.strip()