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.
 
 
 

46 lines
1.5 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. OPTIPNG_SOURCE = File(__file__).parent.child_folder('optipng')
  12. TEST_SITE = File(__file__).parent.parent.child_folder('_test')
  13. class TestOptipng(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. IMAGES = TEST_SITE.child_folder('content/media/images')
  19. IMAGES.make()
  20. OPTIPNG_SOURCE.copy_contents_to(IMAGES)
  21. def tearDown(self):
  22. TEST_SITE.delete()
  23. def test_can_execute_optipng(self):
  24. s = Site(TEST_SITE)
  25. s.config.mode = "production"
  26. s.config.plugins = ['hyde.ext.plugins.optipng.OptiPNGPlugin']
  27. paths = ['/usr/local/bin/optipng']
  28. optipng = [path for path in paths if File(path).exists]
  29. if not optipng:
  30. assert False, "Cannot find the optipng executable"
  31. optipng = optipng[0]
  32. s.config.optipng = Expando(dict(app=optipng, args=dict(quiet="")))
  33. source =File(TEST_SITE.child('content/media/images/hyde-lt-b.png'))
  34. target = File(Folder(s.config.deploy_root_path).child('media/images/hyde-lt-b.png'))
  35. gen = Generator(s)
  36. gen.generate_resource_at_path(source)
  37. assert target.exists
  38. assert target.size < source.size