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.
 
 
 

112 lines
3.7 KiB

  1. # -*- coding: utf-8 -*-
  2. """
  3. Use nose
  4. `$ pip install nose`
  5. `$ nosetests`
  6. """
  7. import yaml
  8. from hyde.fs import File, Folder
  9. from hyde.model import Config, Expando
  10. from hyde.site import Node, RootNode, Site
  11. from nose.tools import raises, with_setup, nottest
  12. TEST_SITE_ROOT = File(__file__).parent.child_folder('sites/test_jinja')
  13. def test_node_site():
  14. s = Site(TEST_SITE_ROOT)
  15. r = RootNode(TEST_SITE_ROOT.child_folder('content'), s)
  16. assert r.site == s
  17. n = Node(r.source_folder.child_folder('blog'), r)
  18. assert n.site == s
  19. def test_node_root():
  20. s = Site(TEST_SITE_ROOT)
  21. r = RootNode(TEST_SITE_ROOT.child_folder('content'), s)
  22. assert r.root == r
  23. n = Node(r.source_folder.child_folder('blog'), r)
  24. assert n.root == r
  25. def test_node_parent():
  26. s = Site(TEST_SITE_ROOT)
  27. r = RootNode(TEST_SITE_ROOT.child_folder('content'), s)
  28. c = r.add_node(TEST_SITE_ROOT.child_folder('content/blog/2010/december'))
  29. assert c.parent == r.node_from_relative_path('blog/2010')
  30. def test_node_module():
  31. s = Site(TEST_SITE_ROOT)
  32. r = RootNode(TEST_SITE_ROOT.child_folder('content'), s)
  33. assert not r.module
  34. n = r.add_node(TEST_SITE_ROOT.child_folder('content/blog'))
  35. assert n.module == n
  36. c = r.add_node(TEST_SITE_ROOT.child_folder('content/blog/2010/december'))
  37. assert c.module == n
  38. def test_node_relative_path():
  39. s = Site(TEST_SITE_ROOT)
  40. r = RootNode(TEST_SITE_ROOT.child_folder('content'), s)
  41. assert not r.module
  42. n = r.add_node(TEST_SITE_ROOT.child_folder('content/blog'))
  43. assert n.relative_path == 'blog'
  44. c = r.add_node(TEST_SITE_ROOT.child_folder('content/blog/2010/december'))
  45. assert c.relative_path == 'blog/2010/december'
  46. def test_build():
  47. s = Site(TEST_SITE_ROOT)
  48. s.build()
  49. path = 'blog/2010/december'
  50. node = s.content.node_from_relative_path(path)
  51. assert node
  52. assert Folder(node.relative_path) == Folder(path)
  53. path += '/merry-christmas.html'
  54. resource = s.content.resource_from_relative_path(path)
  55. assert resource
  56. assert resource.relative_path == path
  57. assert not s.content.resource_from_relative_path('/happy-festivus.html')
  58. def test_walk_resources():
  59. s = Site(TEST_SITE_ROOT)
  60. s.build()
  61. pages = [page.name for page in s.content.walk_resources()]
  62. expected = ["404.html",
  63. "about.html",
  64. "apple-touch-icon.png",
  65. "merry-christmas.html",
  66. "crossdomain.xml",
  67. "favicon.ico",
  68. "robots.txt"
  69. ]
  70. pages.sort()
  71. expected.sort()
  72. assert pages == expected
  73. class TestSiteWithConfig(object):
  74. @classmethod
  75. def setup_class(cls):
  76. cls.SITE_PATH = File(__file__).parent.child_folder('sites/test_jinja_with_config')
  77. cls.SITE_PATH.make()
  78. TEST_SITE_ROOT.copy_contents_to(cls.SITE_PATH)
  79. cls.config_file = File(cls.SITE_PATH.child('alternate.yaml'))
  80. with open(cls.config_file.path) as config:
  81. cls.config = Config(site_path=cls.SITE_PATH, config_dict=yaml.load(config))
  82. cls.SITE_PATH.child_folder('content').rename_to(cls.config.content_root)
  83. @classmethod
  84. def teardown_class(cls):
  85. cls.SITE_PATH.delete()
  86. def test_build_with_config(self):
  87. s = Site(self.SITE_PATH, config = self.config)
  88. s.build()
  89. path = 'blog/2010/december'
  90. node = s.content.node_from_relative_path(path)
  91. assert node
  92. assert Folder(node.relative_path) == Folder(path)
  93. path += '/merry-christmas.html'
  94. resource = s.content.resource_from_relative_path(path)
  95. assert resource
  96. assert resource.relative_path == path
  97. assert not s.content.resource_from_relative_path('/happy-festivus.html')