Sha256: 972c8c7bbd2d459283236fdf0da07501134b0a0f4f02a8d702dcc2241a37aedf
Contents?: true
Size: 1.55 KB
Versions: 4
Compression:
Stored size: 1.55 KB
Contents
require 'helper' require 'ostruct' class TestConvertible < Test::Unit::TestCase context "yaml front-matter" do setup do @convertible = OpenStruct.new @convertible.extend Jekyll::Convertible @base = File.expand_path('../fixtures', __FILE__) end should "parse the front-matter correctly" do ret = @convertible.read_yaml(@base, 'front_matter.erb') assert_equal({'test' => 'good'}, ret) end should "not parse if the front-matter is not at the start of the file" do ret = @convertible.read_yaml(@base, 'broken_front_matter1.erb') assert_equal({}, ret) end should "not parse if there is syntax error in front-matter" do name = 'broken_front_matter2.erb' out = capture_stdout do ret = @convertible.read_yaml(@base, name) assert_equal({}, ret) end assert_match(/YAML Exception|syntax error|Error reading file/, out) assert_match(/#{File.join(@base, name)}/, out) end should "not allow ruby objects in yaml" do out = capture_stdout do @convertible.read_yaml(@base, 'exploit_front_matter.erb') end assert_no_match /undefined class\/module DoesNotExist/, out end should "not parse if there is encoding error in file" do name = 'broken_front_matter3.erb' out = capture_stdout do ret = @convertible.read_yaml(@base, name, :encoding => 'utf-8') assert_equal({}, ret) end assert_match(/invalid byte sequence in UTF-8/, out) assert_match(/#{File.join(@base, name)}/, out) end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
jekyll-2.0.0.rc1 | test/test_convertible.rb |
jekyll-2.0.0.alpha.3 | test/test_convertible.rb |
jekyll-2.0.0.alpha.2 | test/test_convertible.rb |
jekyll-2.0.0.alpha.1 | test/test_convertible.rb |