1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
# frozen_string_literal: true
require "helper"
class TestFrontMatterDefaults < JekyllUnitTest
context "A site with full front matter defaults" do
setup do
@site = fixture_site({
"defaults" => [{
"scope" => {
"path" => "contacts",
"type" => "page",
},
"values" => {
"key" => "val",
},
},],
})
@output = capture_output { @site.process }
@affected = @site.pages.find { |page| page.relative_path == "contacts/bar.html" }
@not_affected = @site.pages.find { |page| page.relative_path == "about.html" }
end
should "affect only the specified path and type" do
assert_equal @affected.data["key"], "val"
assert_nil @not_affected.data["key"]
end
should "not call Dir.glob block" do
refute_includes @output, "Globbed Scope Path:"
end
end
context "A site with full front matter defaults (glob)" do
setup do
@site = fixture_site({
"defaults" => [{
"scope" => {
"path" => "contacts/*.html",
"type" => "page",
},
"values" => {
"key" => "val",
},
},],
})
@output = capture_output { @site.process }
@affected = @site.pages.find { |page| page.relative_path == "contacts/bar.html" }
@not_affected = @site.pages.find { |page| page.relative_path == "about.html" }
end
should "affect only the specified path and type" do
assert_equal @affected.data["key"], "val"
assert_nil @not_affected.data["key"]
end
should "call Dir.glob block" do
assert_includes @output, "Globbed Scope Path:"
end
end
context "A site with front matter type pages and an extension" do
setup do
@site = fixture_site({
"defaults" => [{
"scope" => {
"path" => "index.html",
},
"values" => {
"key" => "val",
},
},],
})
@site.process
@affected = @site.pages.find { |page| page.relative_path == "index.html" }
@not_affected = @site.pages.find { |page| page.relative_path == "about.html" }
end
should "affect only the specified path" do
assert_equal @affected.data["key"], "val"
assert_nil @not_affected.data["key"]
end
end
context "A site with front matter defaults with no type" do
setup do
@site = fixture_site({
"defaults" => [{
"scope" => {
"path" => "win",
},
"values" => {
"key" => "val",
},
},],
})
@site.process
@affected = @site.posts.docs.find { |page| page.relative_path =~ %r!win\/! }
@not_affected = @site.pages.find { |page| page.relative_path == "about.html" }
end
should "affect only the specified path and all types" do
assert_equal @affected.data["key"], "val"
assert_nil @not_affected.data["key"]
end
end
context "A site with front matter defaults with no path and a deprecated type" do
setup do
@site = fixture_site({
"defaults" => [{
"scope" => {
"type" => "page",
},
"values" => {
"key" => "val",
},
},],
})
@site.process
@affected = @site.pages
@not_affected = @site.posts.docs
end
should "affect only the specified type and all paths" do
assert_equal @affected.reject { |page| page.data["key"] == "val" }, []
assert_equal @not_affected.reject { |page| page.data["key"] == "val" },
@not_affected
end
end
context "A site with front matter defaults with no path" do
setup do
@site = fixture_site({
"defaults" => [{
"scope" => {
"type" => "pages",
},
"values" => {
"key" => "val",
},
},],
})
@site.process
@affected = @site.pages
@not_affected = @site.posts.docs
end
should "affect only the specified type and all paths" do
assert_equal @affected.reject { |page| page.data["key"] == "val" }, []
assert_equal @not_affected.reject { |page| page.data["key"] == "val" },
@not_affected
end
end
context "A site with front matter defaults with no path or type" do
setup do
@site = fixture_site({
"defaults" => [{
"scope" => {
},
"values" => {
"key" => "val",
},
},],
})
@site.process
@affected = @site.pages
@not_affected = @site.posts
end
should "affect all types and paths" do
assert_equal @affected.reject { |page| page.data["key"] == "val" }, []
assert_equal @not_affected.reject { |page| page.data["key"] == "val" }, []
end
end
context "A site with front matter defaults with no scope" do
setup do
@site = fixture_site({
"defaults" => [{
"values" => {
"key" => "val",
},
},],
})
@site.process
@affected = @site.pages
@not_affected = @site.posts
end
should "affect all types and paths" do
assert_equal @affected.reject { |page| page.data["key"] == "val" }, []
assert_equal @not_affected.reject { |page| page.data["key"] == "val" }, []
end
end
context "A site with front matter defaults with quoted date" do
setup do
@site = Site.new(Jekyll.configuration({
"source" => source_dir,
"destination" => dest_dir,
"defaults" => [{
"values" => {
"date" => "2015-01-01 00:00:01",
},
},],
}))
end
should "not raise error" do
@site.process
end
should "parse date" do
@site.process
date = Time.parse("2015-01-01 00:00:01")
assert(@site.pages.find { |page| page.data["date"] == date })
assert(@site.posts.find { |page| page.data["date"] == date })
end
end
end
|