test_pages.py 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. import unittest
  2. import os
  3. import shutil
  4. import makesite
  5. from test import path
  6. class PagesTest(unittest.TestCase):
  7. def setUp(self):
  8. self.blog_path = path.temppath('blog')
  9. self.site_path = path.temppath('site')
  10. os.makedirs(self.blog_path)
  11. with open(os.path.join(self.blog_path, 'foo.txt'), 'w') as f:
  12. f.write('Foo')
  13. with open(os.path.join(self.blog_path, 'bar.txt'), 'w') as f:
  14. f.write('Bar')
  15. with open(os.path.join(self.blog_path, '2018-01-01-foo.txt'), 'w') as f:
  16. f.write('Foo')
  17. with open(os.path.join(self.blog_path, '2018-01-02-bar.txt'), 'w') as f:
  18. f.write('Bar')
  19. with open(os.path.join(self.blog_path, 'header-foo.txt'), 'w') as f:
  20. f.write('<!-- tag: foo -->Foo')
  21. with open(os.path.join(self.blog_path, 'header-bar.txt'), 'w') as f:
  22. f.write('<!-- title: bar -->Bar')
  23. with open(os.path.join(self.blog_path, 'placeholder-foo.txt'), 'w') as f:
  24. f.write('<!-- title: foo -->{{ title }}:{{ author }}:Foo')
  25. with open(os.path.join(self.blog_path, 'placeholder-bar.txt'), 'w') as f:
  26. f.write('<!-- title: bar --><!-- render: yes -->{{ title }}:{{ author }}:Bar')
  27. def tearDown(self):
  28. shutil.rmtree(self.blog_path)
  29. shutil.rmtree(self.site_path)
  30. def test_pages_undated(self):
  31. src = os.path.join(self.blog_path, '[fb]*.txt')
  32. dst = os.path.join(self.site_path, '{{ slug }}.txt')
  33. tpl = '<div>{{ content }}</div>'
  34. makesite.make_pages(src, dst, tpl)
  35. with open(os.path.join(self.site_path, 'foo.txt')) as f:
  36. self.assertEqual(f.read(), '<div>Foo</div>')
  37. with open(os.path.join(self.site_path, 'bar.txt')) as f:
  38. self.assertEqual(f.read(), '<div>Bar</div>')
  39. def test_pages_dated(self):
  40. src = os.path.join(self.blog_path, '2*.txt')
  41. dst = os.path.join(self.site_path, '{{ slug }}.txt')
  42. tpl = '<div>{{ content }}</div>'
  43. makesite.make_pages(src, dst, tpl)
  44. with open(os.path.join(self.site_path, 'foo.txt')) as f:
  45. self.assertEqual(f.read(), '<div>Foo</div>')
  46. with open(os.path.join(self.site_path, 'bar.txt')) as f:
  47. self.assertEqual(f.read(), '<div>Bar</div>')
  48. def test_pages_layout_params(self):
  49. src = os.path.join(self.blog_path, '2*.txt')
  50. dst = os.path.join(self.site_path, '{{ slug }}.txt')
  51. tpl = '<div>{{ slug }}:{{ title }}:{{ date }}:{{ content }}</div>'
  52. makesite.make_pages(src, dst, tpl, title='Lorem')
  53. with open(os.path.join(self.site_path, 'foo.txt')) as f:
  54. self.assertEqual(f.read(), '<div>foo:Lorem:2018-01-01:Foo</div>')
  55. with open(os.path.join(self.site_path, 'bar.txt')) as f:
  56. self.assertEqual(f.read(), '<div>bar:Lorem:2018-01-02:Bar</div>')
  57. def test_pages_return_value(self):
  58. src = os.path.join(self.blog_path, '2*.txt')
  59. dst = os.path.join(self.site_path, '{{ slug }}.txt')
  60. tpl = '<div>{{ content }}</div>'
  61. posts = makesite.make_pages(src, dst, tpl)
  62. self.assertEqual(len(posts), 2)
  63. self.assertEqual(posts[0]['date'], '2018-01-02')
  64. self.assertEqual(posts[1]['date'], '2018-01-01')
  65. def test_content_header_params(self):
  66. # Test that header params from one post is not used in another
  67. # post.
  68. src = os.path.join(self.blog_path, 'header*.txt')
  69. dst = os.path.join(self.site_path, '{{ slug }}.txt')
  70. tpl = '{{ title }}:{{ tag }}:{{ content }}'
  71. makesite.make_pages(src, dst, tpl)
  72. with open(os.path.join(self.site_path, 'header-foo.txt')) as f:
  73. self.assertEqual(f.read(), '{{ title }}:foo:Foo')
  74. with open(os.path.join(self.site_path, 'header-bar.txt')) as f:
  75. self.assertEqual(f.read(), 'bar:{{ tag }}:Bar')
  76. def test_content_no_rendering(self):
  77. # Test that placeholders are not populated in content rendering
  78. # by default.
  79. src = os.path.join(self.blog_path, 'placeholder-foo.txt')
  80. dst = os.path.join(self.site_path, '{{ slug }}.txt')
  81. tpl = '<div>{{ content }}</div>'
  82. makesite.make_pages(src, dst, tpl, author='Admin')
  83. with open(os.path.join(self.site_path, 'placeholder-foo.txt')) as f:
  84. self.assertEqual(f.read(), '<div>{{ title }}:{{ author }}:Foo</div>')
  85. def test_content_rendering_via_kwargs(self):
  86. # Test that placeholders are populated in content rendering when
  87. # requested in make_pages.
  88. src = os.path.join(self.blog_path, 'placeholder-foo.txt')
  89. dst = os.path.join(self.site_path, '{{ slug }}.txt')
  90. tpl = '<div>{{ content }}</div>'
  91. makesite.make_pages(src, dst, tpl, author='Admin', render='yes')
  92. with open(os.path.join(self.site_path, 'placeholder-foo.txt')) as f:
  93. self.assertEqual(f.read(), '<div>foo:Admin:Foo</div>')
  94. def test_content_rendering_via_header(self):
  95. # Test that placeholders are populated in content rendering when
  96. # requested in content header.
  97. src = os.path.join(self.blog_path, 'placeholder-bar.txt')
  98. dst = os.path.join(self.site_path, '{{ slug }}.txt')
  99. tpl = '<div>{{ content }}</div>'
  100. makesite.make_pages(src, dst, tpl, author='Admin')
  101. with open(os.path.join(self.site_path, 'placeholder-bar.txt')) as f:
  102. self.assertEqual(f.read(), '<div>bar:Admin:Bar</div>')
  103. def test_rendered_content_in_summary(self):
  104. # Test that placeholders are populated in summary if and only if
  105. # content rendering is enabled.
  106. src = os.path.join(self.blog_path, 'placeholder*.txt')
  107. post_dst = os.path.join(self.site_path, '{{ slug }}.txt')
  108. list_dst = os.path.join(self.site_path, 'list.txt')
  109. post_layout = ''
  110. list_layout = '<div>{{ content }}</div>'
  111. item_layout = '<p>{{ summary }}</p>'
  112. posts = makesite.make_pages(src, post_dst, post_layout, author='Admin')
  113. makesite.make_list(posts, list_dst, list_layout, item_layout)
  114. with open(os.path.join(self.site_path, 'list.txt')) as f:
  115. self.assertEqual(f.read(), '<div><p>{{ title }}:{{ author }}:Foo</p><p>bar:Admin:Bar</p></div>')