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.
 
 
 

330 lines
9.3 KiB

  1. # -*- coding: utf-8 -*-
  2. """
  3. Use nose
  4. `$ pip install nose`
  5. `$ nosetests`
  6. """
  7. from hyde.ext.plugins.meta import MetaPlugin
  8. from hyde.ext.plugins.meta import SorterPlugin
  9. <<<<<<< HEAD
  10. from hyde.ext.plugins.grouper import GrouperPlugin
  11. =======
  12. from hyde.ext.plugins.meta import GrouperPlugin
  13. from hyde.fs import File, Folder
  14. >>>>>>> Move the grouper plugin into meta module.
  15. from hyde.generator import Generator
  16. from hyde.site import Site
  17. from hyde.model import Config, Expando
  18. from fswrap import File
  19. from hyde.tests.util import assert_html_equals
  20. import yaml
  21. TEST_SITE = File(__file__).parent.parent.child_folder('_test')
  22. class TestGrouperSingleLevel(object):
  23. def setUp(self):
  24. TEST_SITE.make()
  25. TEST_SITE.parent.child_folder(
  26. 'sites/test_grouper').copy_contents_to(TEST_SITE)
  27. self.s = Site(TEST_SITE)
  28. cfg = """
  29. nodemeta: meta.yaml
  30. plugins:
  31. - hyde.ext.plugins.meta.MetaPlugin
  32. - hyde.ext.plugins.meta.SorterPlugin
  33. - hyde.ext.plugins.meta.GrouperPlugin
  34. sorter:
  35. kind:
  36. attr:
  37. - source_file.kind
  38. filters:
  39. is_processable: True
  40. grouper:
  41. section:
  42. description: Sections in the site
  43. sorter: kind
  44. groups:
  45. -
  46. name: start
  47. description: Getting Started
  48. -
  49. name: plugins
  50. description: Plugins
  51. """
  52. self.s.config = Config(TEST_SITE, config_dict=yaml.load(cfg))
  53. self.s.load()
  54. MetaPlugin(self.s).begin_site()
  55. SorterPlugin(self.s).begin_site()
  56. GrouperPlugin(self.s).begin_site()
  57. self.all = ['installation.html', 'overview.html', 'templating.html', 'plugins.html', 'tags.html']
  58. self.start = ['installation.html', 'overview.html', 'templating.html']
  59. self.plugins = ['plugins.html', 'tags.html']
  60. self.section = self.all
  61. def tearDown(self):
  62. TEST_SITE.delete()
  63. def test_site_grouper_groups(self):
  64. groups = dict([(g.name, g) for g in self.s.grouper['section'].groups])
  65. assert len(groups) == 2
  66. assert 'start' in groups
  67. assert 'plugins' in groups
  68. def test_site_grouper_walk_groups(self):
  69. groups = dict([(g.name, g) for g in self.s.grouper['section'].walk_groups()])
  70. assert len(groups) == 3
  71. assert 'section' in groups
  72. assert 'start' in groups
  73. assert 'plugins' in groups
  74. def test_walk_section_groups(self):
  75. assert hasattr(self.s.content, 'walk_section_groups')
  76. groups = dict([(grouper.group.name, grouper) for grouper in self.s.content.walk_section_groups()])
  77. assert len(groups) == 3
  78. assert 'section' in groups
  79. assert 'start' in groups
  80. assert 'plugins' in groups
  81. for name in ['start', 'plugins']:
  82. res = [resource.name for resource in groups[name].resources]
  83. assert res == getattr(self, name)
  84. def test_walk_start_groups(self):
  85. assert hasattr(self.s.content, 'walk_start_groups')
  86. groups = dict([(g.name, g) for g, resources in self.s.content.walk_start_groups()])
  87. assert len(groups) == 1
  88. assert 'start' in groups
  89. def test_walk_plugins_groups(self):
  90. assert hasattr(self.s.content, 'walk_plugins_groups')
  91. groups = dict([(g.name, g) for g, resources in self.s.content.walk_plugins_groups()])
  92. assert len(groups) == 1
  93. assert 'plugins' in groups
  94. def test_walk_section_resources(self):
  95. assert hasattr(self.s.content, 'walk_resources_grouped_by_section')
  96. resources = [resource.name for resource in self.s.content.walk_resources_grouped_by_section()]
  97. assert resources == self.all
  98. def test_walk_start_resources(self):
  99. assert hasattr(self.s.content, 'walk_resources_grouped_by_start')
  100. start_resources = [resource.name for resource in self.s.content.walk_resources_grouped_by_start()]
  101. assert start_resources == self.start
  102. def test_walk_plugins_resources(self):
  103. assert hasattr(self.s.content, 'walk_resources_grouped_by_plugins')
  104. plugin_resources = [resource.name for resource in self.s.content.walk_resources_grouped_by_plugins()]
  105. assert plugin_resources == self.plugins
  106. def test_resource_group(self):
  107. groups = dict([(g.name, g) for g in self.s.grouper['section'].groups])
  108. for name, group in groups.items():
  109. pages = getattr(self, name)
  110. for page in pages:
  111. res = self.s.content.resource_from_relative_path('blog/' + page)
  112. assert hasattr(res, 'section_group')
  113. res_group = getattr(res, 'section_group')
  114. assert res_group == group
  115. def test_resource_belongs_to(self):
  116. groups = dict([(g.name, g) for g in self.s.grouper['section'].groups])
  117. for name, group in groups.items():
  118. pages = getattr(self, name)
  119. for page in pages:
  120. res = self.s.content.resource_from_relative_path('blog/' + page)
  121. res_groups = getattr(res, 'walk_%s_groups' % name)()
  122. assert group in res_groups
  123. def test_prev_next(self):
  124. resources = []
  125. for page in self.all:
  126. resources.append(self.s.content.resource_from_relative_path('blog/' + page))
  127. index = 0
  128. for res in resources:
  129. if index < 4:
  130. assert res.next_in_section.name == self.all[index + 1]
  131. else:
  132. assert not res.next_in_section
  133. index += 1
  134. index = 0
  135. for res in resources:
  136. if index:
  137. assert res.prev_in_section.name == self.all[index - 1]
  138. else:
  139. assert not res.prev_in_section
  140. index += 1
  141. def test_nav_with_grouper(self):
  142. text ="""
  143. {% for group, resources in site.content.walk_section_groups() %}
  144. <ul>
  145. <li>
  146. <h2>{{ group.name|title }}</h2>
  147. <h3>{{ group.description }}</h3>
  148. <ul class="links">
  149. {% for resource in resources %}
  150. <li>{{resource.name}}</li>
  151. {% endfor %}
  152. </ul>
  153. </li>
  154. </ul>
  155. {% endfor %}
  156. """
  157. expected = """
  158. <ul>
  159. <li>
  160. <h2>Section</h2>
  161. <h3>Sections in the site</h3>
  162. <ul class="links"></ul>
  163. </li>
  164. </ul>
  165. <ul>
  166. <li>
  167. <h2>Start</h2>
  168. <h3>Getting Started</h3>
  169. <ul class="links">
  170. <li>installation.html</li>
  171. <li>overview.html</li>
  172. <li>templating.html</li>
  173. </ul>
  174. </li>
  175. </ul>
  176. <ul>
  177. <li>
  178. <h2>Plugins</h2>
  179. <h3>Plugins</h3>
  180. <ul class="links">
  181. <li>plugins.html</li>
  182. <li>tags.html</li>
  183. </ul>
  184. </li>
  185. </ul>
  186. """
  187. gen = Generator(self.s)
  188. gen.load_site_if_needed()
  189. gen.load_template_if_needed()
  190. out = gen.template.render(text, {'site':self.s})
  191. assert_html_equals(out, expected)
  192. def test_nav_with_grouper_sorted(self):
  193. cfg = """
  194. nodemeta: meta.yaml
  195. plugins:
  196. - hyde.ext.plugins.meta.MetaPlugin
  197. - hyde.ext.plugins.meta.SorterPlugin
  198. - hyde.ext.plugins.meta.GrouperPlugin
  199. sorter:
  200. kind:
  201. attr:
  202. - source_file.kind
  203. filters:
  204. is_processable: True
  205. grouper:
  206. section:
  207. description: Sections in the site
  208. sorter: kind
  209. groups:
  210. -
  211. name: start
  212. description: Getting Started
  213. -
  214. name: awesome
  215. description: Awesome
  216. -
  217. name: plugins
  218. description: Plugins
  219. """
  220. self.s.config = Config(TEST_SITE, config_dict=yaml.load(cfg))
  221. self.s.load()
  222. MetaPlugin(self.s).begin_site()
  223. SorterPlugin(self.s).begin_site()
  224. GrouperPlugin(self.s).begin_site()
  225. text ="""
  226. {% set sorted = site.grouper['section'].groups|sort(attribute='name') %}
  227. {% for group in sorted %}
  228. <ul>
  229. <li>
  230. <h2>{{ group.name|title }}</h2>
  231. <h3>{{ group.description }}</h3>
  232. <ul class="links">
  233. {% for resource in group.walk_resources_in_node(site.content) %}
  234. <li>{{resource.name}}</li>
  235. {% endfor %}
  236. </ul>
  237. </li>
  238. </ul>
  239. {% endfor %}
  240. """
  241. expected = """
  242. <ul>
  243. <li>
  244. <h2>Awesome</h2>
  245. <h3>Awesome</h3>
  246. <ul class="links">
  247. </ul>
  248. </li>
  249. </ul>
  250. <ul>
  251. <li>
  252. <h2>Plugins</h2>
  253. <h3>Plugins</h3>
  254. <ul class="links">
  255. <li>plugins.html</li>
  256. <li>tags.html</li>
  257. </ul>
  258. </li>
  259. </ul>
  260. <ul>
  261. <li>
  262. <h2>Start</h2>
  263. <h3>Getting Started</h3>
  264. <ul class="links">
  265. <li>installation.html</li>
  266. <li>overview.html</li>
  267. <li>templating.html</li>
  268. </ul>
  269. </li>
  270. </ul>
  271. """
  272. self.s.config.grouper.section.groups.append(Expando({"name": "awesome", "description": "Aweesoome"}));
  273. gen = Generator(self.s)
  274. gen.load_site_if_needed()
  275. gen.load_template_if_needed()
  276. out = gen.template.render(text, {'site':self.s})
  277. assert_html_equals(out, expected)