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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
require 'spec_helper'
describe Orgmode::Parser do
it "should open ORG files" do
parser = Orgmode::Parser.load(RememberFile)
end
it "should fail on non-existant files" do
lambda { parser = Orgmode::Parser.load("does-not-exist.org") }.should raise_error
end
it "should load all of the lines" do
parser = Orgmode::Parser.load(RememberFile)
parser.lines.length.should eql(53)
end
it "should find all headlines" do
parser = Orgmode::Parser.load(RememberFile)
parser.should have(12).headlines
end
it "can find a headline by index" do
parser = Orgmode::Parser.load(RememberFile)
line = parser.headlines[1].to_s
line.should eql("** YAML header in Webby\n")
end
it "should determine headline levels" do
parser = Orgmode::Parser.load(RememberFile)
parser.headlines[0].level.should eql(1)
parser.headlines[1].level.should eql(2)
end
it "should include the property drawer items from a headline" do
parser = Orgmode::Parser.load(FreeformExampleFile)
parser.headlines.first.property_drawer.count.should == 2
parser.headlines.first.property_drawer['DATE'].should == '2009-11-26'
parser.headlines.first.property_drawer['SLUG'].should == 'future-ideas'
end
it "should put body lines in headlines" do
parser = Orgmode::Parser.load(RememberFile)
parser.headlines[0].should have(1).body_lines
parser.headlines[1].should have(7).body_lines
end
it "should understand lines before the first headline" do
parser = Orgmode::Parser.load(FreeformFile)
parser.should have(19).header_lines
end
it "should load in-buffer settings" do
parser = Orgmode::Parser.load(FreeformFile)
parser.should have(12).in_buffer_settings
parser.in_buffer_settings["TITLE"].should eql("Freeform")
parser.in_buffer_settings["EMAIL"].should eql("bdewey@gmail.com")
parser.in_buffer_settings["LANGUAGE"].should eql("en")
end
it "should understand OPTIONS" do
parser = Orgmode::Parser.load(FreeformFile)
parser.should have(19).options
parser.options["TeX"].should eql("t")
parser.options["todo"].should eql("t")
parser.options["\\n"].should eql("nil")
parser.export_todo?.should be_true
parser.options.delete("todo")
parser.export_todo?.should be_false
end
it "should skip in-buffer settings inside EXAMPLE blocks" do
parser = Orgmode::Parser.load(FreeformExampleFile)
parser.should have(0).in_buffer_settings
end
it "should return a textile string" do
parser = Orgmode::Parser.load(FreeformFile)
parser.to_textile.should be_kind_of(String)
end
it "should understand export table option" do
fname = File.join(File.dirname(__FILE__), %w[html_examples skip-table.org])
data = IO.read(fname)
p = Orgmode::Parser.new(data)
p.export_tables?.should be_false
end
context "with a table that begins with a separator line" do
let(:parser) { Orgmode::Parser.new(data) }
let(:data) { Pathname.new(File.dirname(__FILE__)).join('data', 'tables.org').read }
it "should parse without errors" do
parser.headlines.size.should == 2
end
end
describe "Custom keyword parser" do
fname = File.join(File.dirname(__FILE__), %w[html_examples custom-todo.org])
p = Orgmode::Parser.load(fname)
valid_keywords = %w[TODO INPROGRESS WAITING DONE CANCELED]
invalid_keywords = %w[TODOX todo inprogress Waiting done cANCELED NEXT |]
valid_keywords.each do |kw|
it "should match custom keyword #{kw}" do
(kw =~ p.custom_keyword_regexp).should be_true
end
end
invalid_keywords.each do |kw|
it "should not match custom keyword #{kw}" do
(kw =~ p.custom_keyword_regexp).should be_nil
end
end
it "should not match blank as a custom keyword" do
("" =~ p.custom_keyword_regexp).should be_nil
end
end
describe "Custom include/exclude parser" do
fname = File.join(File.dirname(__FILE__), %w[html_examples export-tags.org])
p = Orgmode::Parser.load(fname)
it "should load tags" do
p.should have(2).export_exclude_tags
p.should have(1).export_select_tags
end
end
describe "Export to Textile test cases" do
data_directory = File.join(File.dirname(__FILE__), "textile_examples")
org_files = File.expand_path(File.join(data_directory, "*.org" ))
files = Dir.glob(org_files)
files.each do |file|
basename = File.basename(file, ".org")
textile_name = File.join(data_directory, basename + ".textile")
textile_name = File.expand_path(textile_name)
it "should convert #{basename}.org to Textile" do
expected = IO.read(textile_name)
expected.should be_kind_of(String)
parser = Orgmode::Parser.new(IO.read(file))
actual = parser.to_textile
actual.should be_kind_of(String)
actual.should == expected
end
end
end
describe "Export to HTML test cases" do
# Dynamic generation of examples from each *.org file in html_examples.
# Each of these files is convertable to HTML.
data_directory = File.join(File.dirname(__FILE__), "html_examples")
org_files = File.expand_path(File.join(data_directory, "*.org" ))
files = Dir.glob(org_files)
files.each do |file|
basename = File.basename(file, ".org")
textile_name = File.join(data_directory, basename + ".html")
textile_name = File.expand_path(textile_name)
it "should convert #{basename}.org to HTML" do
expected = IO.read(textile_name)
expected.should be_kind_of(String)
parser = Orgmode::Parser.new(IO.read(file), { :allow_include_files => true })
actual = parser.to_html
actual.should be_kind_of(String)
actual.should == expected
end
it "should render #{basename}.org to HTML using Tilt templates" do
ENV['ORG_RUBY_ENABLE_INCLUDE_FILES'] = 'true'
expected = IO.read(textile_name)
template = Tilt.new(file).render
template.should == expected
ENV['ORG_RUBY_ENABLE_INCLUDE_FILES'] = ''
end
end
it "should not render #+INCLUDE directive when explicitly indicated" do
data_directory = File.join(File.dirname(__FILE__), "html_examples")
expected = File.read(File.join(data_directory, "include-file-disabled.html"))
org_file = File.join(data_directory, "include-file.org")
parser = Orgmode::Parser.new(IO.read(org_file), :allow_include_files => false)
actual = parser.to_html
actual.should == expected
end
it "should render #+INCLUDE when ORG_RUBY_INCLUDE_ROOT is set" do
data_directory = File.expand_path(File.join(File.dirname(__FILE__), "html_examples"))
ENV['ORG_RUBY_INCLUDE_ROOT'] = data_directory
expected = File.read(File.join(data_directory, "include-file.html"))
org_file = File.join(data_directory, "include-file.org")
parser = Orgmode::Parser.new(IO.read(org_file))
actual = parser.to_html
actual.should == expected
ENV['ORG_RUBY_INCLUDE_ROOT'] = nil
end
end
describe "Export to HTML test cases with code syntax highlight" do
code_syntax_examples_directory = File.join(File.dirname(__FILE__), "html_code_syntax_highlight_examples")
files = []
# Include the code syntax highlight support tests
if defined? CodeRay
# Use CodeRay for syntax highlight (pure Ruby solution)
org_files = File.expand_path(File.join(code_syntax_examples_directory, "*-coderay.org"))
files = Dir.glob(org_files)
elsif defined? Pygments
# Use pygments (so that it works with Jekyll, Gollum and possibly Github)
org_files = File.expand_path(File.join(code_syntax_examples_directory, "*-pygments.org"))
files = Dir.glob(org_files)
end
files.each do |file|
basename = File.basename(file, ".org")
org_filename = File.join(code_syntax_examples_directory, basename + ".html")
org_filename = File.expand_path(org_filename)
it "should convert #{basename}.org to HTML" do
expected = IO.read(org_filename)
expected.should be_kind_of(String)
parser = Orgmode::Parser.new(IO.read(file), :allow_include_files => true)
actual = parser.to_html
actual.should be_kind_of(String)
actual.should == expected
end
it "should render #{basename}.org to HTML using Tilt templates" do
ENV['ORG_RUBY_ENABLE_INCLUDE_FILES'] = 'true'
expected = IO.read(org_filename)
template = Tilt.new(file).render
template.should == expected
ENV['ORG_RUBY_ENABLE_INCLUDE_FILES'] = ''
end
end
end
describe "Export to HTML test cases with code syntax highlight disabled" do
code_syntax_examples_directory = File.join(File.dirname(__FILE__), "html_code_syntax_highlight_examples")
# Do not use syntax coloring for source code blocks
org_files = File.expand_path(File.join(code_syntax_examples_directory, "*-no-color.org"))
files = Dir.glob(org_files)
files.each do |file|
basename = File.basename(file, ".org")
org_filename = File.join(code_syntax_examples_directory, basename + ".html")
org_filename = File.expand_path(org_filename)
it "should convert #{basename}.org to HTML" do
expected = IO.read(org_filename)
expected.should be_kind_of(String)
parser = Orgmode::Parser.new(IO.read(file), {
:allow_include_files => true,
:skip_syntax_highlight => true
})
actual = parser.to_html
actual.should be_kind_of(String)
actual.should == expected
end
it "should render #{basename}.org to HTML using Tilt templates",
:if => (defined? Coderay or defined? Pygments) do
ENV['ORG_RUBY_ENABLE_INCLUDE_FILES'] = 'true'
expected = IO.read(org_filename)
template = Tilt.new(file).render
template.should == expected
ENV['ORG_RUBY_ENABLE_INCLUDE_FILES'] = ''
end
end
end
describe "Export to Markdown test cases" do
data_directory = File.join(File.dirname(__FILE__), "markdown_examples")
org_files = File.expand_path(File.join(data_directory, "*.org" ))
files = Dir.glob(org_files)
files.each do |file|
basename = File.basename(file, ".org")
markdown_name = File.join(data_directory, basename + ".md")
markdown_name = File.expand_path(markdown_name)
it "should convert #{basename}.org to Markdown" do
expected = IO.read(markdown_name)
expected.should be_kind_of(String)
parser = Orgmode::Parser.new(IO.read(file), :allow_include_files => false)
actual = parser.to_markdown
actual.should be_kind_of(String)
actual.should == expected
end
end
end
end
|