晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
| DIR:/opt/alt/ruby18/lib64/ruby/1.8/rdoc/markup/test/ |
| Current File : //opt/alt/ruby18/lib64/ruby/1.8/rdoc/markup/test/TestParse.rb |
require 'test/unit'
$:.unshift "../../.."
require 'rdoc/markup/simple_markup'
include SM
class TestParse < Test::Unit::TestCase
class MockOutput
def start_accepting
@res = []
end
def end_accepting
@res
end
def accept_paragraph(am, fragment)
@res << fragment.to_s
end
def accept_verbatim(am, fragment)
@res << fragment.to_s
end
def accept_list_start(am, fragment)
@res << fragment.to_s
end
def accept_list_end(am, fragment)
@res << fragment.to_s
end
def accept_list_item(am, fragment)
@res << fragment.to_s
end
def accept_blank_line(am, fragment)
@res << fragment.to_s
end
def accept_heading(am, fragment)
@res << fragment.to_s
end
def accept_rule(am, fragment)
@res << fragment.to_s
end
end
def basic_conv(str)
sm = SimpleMarkup.new
mock = MockOutput.new
sm.convert(str, mock)
sm.content
end
def line_types(str, expected)
p = SimpleMarkup.new
mock = MockOutput.new
p.convert(str, mock)
assert_equal(expected, p.get_line_types.map{|type| type.to_s[0,1]}.join(''))
end
def line_groups(str, expected)
p = SimpleMarkup.new
mock = MockOutput.new
block = p.convert(str, mock)
if block != expected
rows = (0...([expected.size, block.size].max)).collect{|i|
[expected[i]||"nil", block[i]||"nil"]
}
printf "\n\n%35s %35s\n", "Expected", "Got"
rows.each {|e,g| printf "%35s %35s\n", e.dump, g.dump }
end
assert_equal(expected, block)
end
def test_tabs
str = "hello\n dave"
assert_equal(str, basic_conv(str))
str = "hello\n\tdave"
assert_equal("hello\n dave", basic_conv(str))
str = "hello\n \tdave"
assert_equal("hello\n dave", basic_conv(str))
str = "hello\n \tdave"
assert_equal("hello\n dave", basic_conv(str))
str = "hello\n \tdave"
assert_equal("hello\n dave", basic_conv(str))
str = "hello\n \tdave"
assert_equal("hello\n dave", basic_conv(str))
str = "hello\n \tdave"
assert_equal("hello\n dave", basic_conv(str))
str = "hello\n \tdave"
assert_equal("hello\n dave", basic_conv(str))
str = "hello\n \tdave"
assert_equal("hello\n dave", basic_conv(str))
str = "hello\n \tdave"
assert_equal("hello\n dave", basic_conv(str))
str = ".\t\t."
assert_equal(". .", basic_conv(str))
end
def test_whitespace
assert_equal("hello", basic_conv("hello"))
assert_equal("hello", basic_conv(" hello "))
assert_equal("hello", basic_conv(" \t \t hello\t\t"))
assert_equal("1\n 2\n 3", basic_conv("1\n 2\n 3"))
assert_equal("1\n 2\n 3", basic_conv(" 1\n 2\n 3"))
assert_equal("1\n 2\n 3\n1\n 2", basic_conv("1\n 2\n 3\n1\n 2"))
assert_equal("1\n 2\n 3\n1\n 2", basic_conv(" 1\n 2\n 3\n 1\n 2"))
assert_equal("1\n 2\n\n 3", basic_conv(" 1\n 2\n\n 3"))
end
def test_types
str = "now is the time"
line_types(str, 'P')
str = "now is the time\nfor all good men"
line_types(str, 'PP')
str = "now is the time\n code\nfor all good men"
line_types(str, 'PVP')
str = "now is the time\n code\n more code\nfor all good men"
line_types(str, 'PVVP')
str = "now is\n---\nthe time"
line_types(str, 'PRP')
str = %{\
now is
* l1
* l2
the time}
line_types(str, 'PLLP')
str = %{\
now is
* l1
l1+
* l2
the time}
line_types(str, 'PLPLP')
str = %{\
now is
* l1
* l1.1
* l2
the time}
line_types(str, 'PLLLP')
str = %{\
now is
* l1
* l1.1
text
code
code
text
* l2
the time}
line_types(str, 'PLLPVVBPLP')
str = %{\
now is
1. l1
* l1.1
2. l2
the time}
line_types(str, 'PLLLP')
str = %{\
now is
[cat] l1
* l1.1
[dog] l2
the time}
line_types(str, 'PLLLP')
str = %{\
now is
[cat] l1
continuation
[dog] l2
the time}
line_types(str, 'PLPLP')
end
def test_groups
str = "now is the time"
line_groups(str, ["L0: Paragraph\nnow is the time"] )
str = "now is the time\nfor all good men"
line_groups(str, ["L0: Paragraph\nnow is the time for all good men"] )
str = %{\
now is the time
code _line_ here
for all good men}
line_groups(str,
[ "L0: Paragraph\nnow is the time",
"L0: Verbatim\n code _line_ here\n",
"L0: Paragraph\nfor all good men"
] )
str = "now is the time\n code\n more code\nfor all good men"
line_groups(str,
[ "L0: Paragraph\nnow is the time",
"L0: Verbatim\n code\n more code\n",
"L0: Paragraph\nfor all good men"
] )
str = %{\
now is
* l1
* l2
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L1: ListStart\n",
"L1: ListItem\nl1",
"L1: ListItem\nl2",
"L1: ListEnd\n",
"L0: Paragraph\nthe time"
])
str = %{\
now is
* l1
l1+
* l2
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L1: ListStart\n",
"L1: ListItem\nl1 l1+",
"L1: ListItem\nl2",
"L1: ListEnd\n",
"L0: Paragraph\nthe time"
])
str = %{\
now is
* l1
* l1.1
* l2
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L1: ListStart\n",
"L1: ListItem\nl1",
"L2: ListStart\n",
"L2: ListItem\nl1.1",
"L2: ListEnd\n",
"L1: ListItem\nl2",
"L1: ListEnd\n",
"L0: Paragraph\nthe time"
])
str = %{\
now is
* l1
* l1.1
text
code
code
text
* l2
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L1: ListStart\n",
"L1: ListItem\nl1",
"L2: ListStart\n",
"L2: ListItem\nl1.1 text",
"L2: Verbatim\n code\n code\n",
"L2: Paragraph\ntext",
"L2: ListEnd\n",
"L1: ListItem\nl2",
"L1: ListEnd\n",
"L0: Paragraph\nthe time"
])
str = %{\
now is
1. l1
* l1.1
2. l2
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L1: ListStart\n",
"L1: ListItem\nl1",
"L2: ListStart\n",
"L2: ListItem\nl1.1",
"L2: ListEnd\n",
"L1: ListItem\nl2",
"L1: ListEnd\n",
"L0: Paragraph\nthe time"
])
str = %{\
now is
[cat] l1
* l1.1
[dog] l2
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L1: ListStart\n",
"L1: ListItem\nl1",
"L2: ListStart\n",
"L2: ListItem\nl1.1",
"L2: ListEnd\n",
"L1: ListItem\nl2",
"L1: ListEnd\n",
"L0: Paragraph\nthe time"
])
str = %{\
now is
[cat] l1
continuation
[dog] l2
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L1: ListStart\n",
"L1: ListItem\nl1 continuation",
"L1: ListItem\nl2",
"L1: ListEnd\n",
"L0: Paragraph\nthe time"
])
end
def test_verbatim_merge
str = %{\
now is
code
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L0: Verbatim\n code\n",
"L0: Paragraph\nthe time"
])
str = %{\
now is
code
code1
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L0: Verbatim\n code\n code1\n",
"L0: Paragraph\nthe time"
])
str = %{\
now is
code
code1
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L0: Verbatim\n code\n\n code1\n",
"L0: Paragraph\nthe time"
])
str = %{\
now is
code
code1
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L0: Verbatim\n code\n\n code1\n",
"L0: Paragraph\nthe time"
])
str = %{\
now is
code
code1
code2
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L0: Verbatim\n code\n\n code1\n\n code2\n",
"L0: Paragraph\nthe time"
])
# Folds multiple blank lines
str = %{\
now is
code
code1
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L0: Verbatim\n code\n\n code1\n",
"L0: Paragraph\nthe time"
])
end
def test_list_split
str = %{\
now is
* l1
1. n1
2. n2
* l2
the time}
line_groups(str,
[ "L0: Paragraph\nnow is",
"L1: ListStart\n",
"L1: ListItem\nl1",
"L1: ListEnd\n",
"L1: ListStart\n",
"L1: ListItem\nn1",
"L1: ListItem\nn2",
"L1: ListEnd\n",
"L1: ListStart\n",
"L1: ListItem\nl2",
"L1: ListEnd\n",
"L0: Paragraph\nthe time"
])
end
def test_headings
str = "= heading one"
line_groups(str,
[ "L0: Heading\nheading one"
])
str = "=== heading three"
line_groups(str,
[ "L0: Heading\nheading three"
])
str = "text\n === heading three"
line_groups(str,
[ "L0: Paragraph\ntext",
"L0: Verbatim\n === heading three\n"
])
str = "text\n code\n === heading three"
line_groups(str,
[ "L0: Paragraph\ntext",
"L0: Verbatim\n code\n === heading three\n"
])
str = "text\n code\n=== heading three"
line_groups(str,
[ "L0: Paragraph\ntext",
"L0: Verbatim\n code\n",
"L0: Heading\nheading three"
])
end
end
|