111 lines
3.2 KiB
Ruby
111 lines
3.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "helper"
|
|
|
|
class TestGeneratedSite < JekyllUnitTest
|
|
context "generated sites" do
|
|
setup do
|
|
clear_dest
|
|
|
|
@site = fixture_site
|
|
@site.process
|
|
@index = File.read(
|
|
dest_dir("index.html"),
|
|
Utils.merged_file_read_opts(@site, {})
|
|
)
|
|
end
|
|
|
|
should "ensure post count is as expected" do
|
|
assert_equal 59, @site.posts.size
|
|
end
|
|
|
|
should "insert site.posts into the index" do
|
|
assert_includes @index, "#{@site.posts.size} Posts"
|
|
end
|
|
|
|
should "insert variable from layout into the index" do
|
|
assert_includes @index, "variable from layout"
|
|
end
|
|
|
|
should "render latest post's content" do
|
|
assert_includes @index, @site.posts.last.content
|
|
end
|
|
|
|
should "hide unpublished posts" do
|
|
published = Dir[dest_dir("publish_test/2008/02/02/*.html")].map \
|
|
{ |f| File.basename(f) }
|
|
assert_equal 1, published.size
|
|
assert_equal "published.html", published.first
|
|
end
|
|
|
|
should "hide unpublished page" do
|
|
refute_exist dest_dir("/unpublished.html")
|
|
end
|
|
|
|
should "not copy _posts directory" do
|
|
refute_exist dest_dir("_posts")
|
|
end
|
|
|
|
should "process a page with a folder permalink properly" do
|
|
about = @site.pages.find { |page| page.name == "about.html" }
|
|
assert_equal dest_dir("about", "index.html"), about.destination(dest_dir)
|
|
assert_exist dest_dir("about", "index.html")
|
|
end
|
|
|
|
should "process other static files and generate correct permalinks" do
|
|
assert_exist dest_dir("contacts.html")
|
|
assert_exist dest_dir("dynamic_file.php")
|
|
end
|
|
|
|
should "include a post with a abbreviated dates" do
|
|
refute_nil(
|
|
@site.posts.index do |post|
|
|
post.relative_path == "_posts/2017-2-5-i-dont-like-zeroes.md"
|
|
end
|
|
)
|
|
assert_exist dest_dir("2017", "02", "05", "i-dont-like-zeroes.html")
|
|
end
|
|
|
|
should "print a nice list of static files" do
|
|
time_regexp = "\\d+:\\d+"
|
|
#
|
|
# adding a pipe character at the beginning preserves formatting with newlines
|
|
expected_output = Regexp.new <<~OUTPUT
|
|
| - /css/screen.css last edited at #{time_regexp} with extname .css
|
|
- /pgp.key last edited at #{time_regexp} with extname .key
|
|
- /products.yml last edited at #{time_regexp} with extname .yml
|
|
- /symlink-test/symlinked-dir/screen.css last edited at #{time_regexp} with extname .css
|
|
OUTPUT
|
|
assert_match expected_output, File.read(dest_dir("static_files.html"))
|
|
end
|
|
end
|
|
|
|
context "generating limited posts" do
|
|
setup do
|
|
clear_dest
|
|
@site = fixture_site("limit_posts" => 5)
|
|
@site.process
|
|
@index = File.read(dest_dir("index.html"))
|
|
end
|
|
|
|
should "generate only the specified number of posts" do
|
|
assert_equal 5, @site.posts.size
|
|
end
|
|
|
|
should "ensure limit posts is 0 or more" do
|
|
assert_raises ArgumentError do
|
|
clear_dest
|
|
@site = fixture_site("limit_posts" => -1)
|
|
end
|
|
end
|
|
|
|
should "acceptable limit post is 0" do
|
|
clear_dest
|
|
assert(
|
|
fixture_site("limit_posts" => 0),
|
|
"Couldn't create a site with limit_posts=0."
|
|
)
|
|
end
|
|
end
|
|
end
|