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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752
|
##
## $Rev$
## $Release: 2.7.0 $
## $Date$
##
require "#{File.dirname(__FILE__)}/test.rb"
require 'tempfile'
require 'fileutils'
require 'erubis/main'
$script = File.dirname(TESTDIR) + '/bin/erubis'
#if test(?f, 'bin/erubis')
# $script = 'bin/erubis'
#elsif test(?f, '../bin/erubis')
# $script = '../bin/erubis'
#end
class StringWriter < String
def write(arg)
self << arg
end
def flush(*args)
# pass
end
def puts(arg)
case arg
when Array
arg.each do |item|
self << item << "\n"
end
else
self << arg.to_s
self << "\n" unless arg =~ /\n$/
end
end
end
class Erubis::Main
public :usage
public :show_properties
public :show_enhancers
end
class MainTest < Test::Unit::TestCase
INPUT = <<'END'
list:
<% list = ['<aaa>', 'b&b', '"ccc"']
for item in list %>
- <%= item %>
<% end %>
user: <%= defined?(user) ? user : "(none)" %>
END
INPUT2 = INPUT.gsub(/\blist([^:])/, '@list\1').gsub(/\buser([^:])/, '@user\1')
# SRC = <<'END'
#_buf = ''; _buf << "list:\n"
# list = ['<aaa>', 'b&b', '"ccc"']
# for item in list
#_buf << " - "; _buf << ( item ).to_s; _buf << "\n"
# end
#_buf << "user: "; _buf << ( defined?(user) ? user : "(none)" ).to_s; _buf << "\n"
#_buf
#END
SRC = <<'END'
_buf = ''; _buf << 'list:
'; list = ['<aaa>', 'b&b', '"ccc"']
for item in list
_buf << ' - '; _buf << ( item ).to_s; _buf << '
'; end
_buf << 'user: '; _buf << ( defined?(user) ? user : "(none)" ).to_s; _buf << '
';
_buf.to_s
END
# SRC2 = SRC.gsub(/\blist /, '@list ').gsub(/\buser /, '@user ')
OUTPUT = <<'END'
list:
- <aaa>
- b&b
- "ccc"
user: (none)
END
ESCAPED_OUTPUT = <<'END'
list:
- <aaa>
- b&b
- "ccc"
user: (none)
END
PI_INPUT = <<'END'
<ul>
<?rb @list = ['<aaa>', 'b&b', '"ccc"']
for item in @list ?>
<li>@{item}@ / @!{item}@
<%= item %> / <%== item %></li>
<?rb end ?>
<ul>
END
PI_SRC = <<'END'
_buf = ''; _buf << '<ul>
'; @list = ['<aaa>', 'b&b', '"ccc"']
for item in @list
_buf << ' <li>'; _buf << Erubis::XmlHelper.escape_xml(item); _buf << ' / '; _buf << (item).to_s; _buf << '
'; _buf << ( item ).to_s; _buf << ' / '; _buf << Erubis::XmlHelper.escape_xml( item ); _buf << '</li>
'; end
_buf << '<ul>
';
_buf.to_s
END
PI_ESCAPED_SRC = <<'END'
_buf = ''; _buf << '<ul>
'; @list = ['<aaa>', 'b&b', '"ccc"']
for item in @list
_buf << ' <li>'; _buf << (item).to_s; _buf << ' / '; _buf << Erubis::XmlHelper.escape_xml(item); _buf << '
'; _buf << Erubis::XmlHelper.escape_xml( item ); _buf << ' / '; _buf << ( item ).to_s; _buf << '</li>
'; end
_buf << '<ul>
';
_buf.to_s
END
PI_OUTPUT = <<'END'
<ul>
<li><aaa> / <aaa>
<aaa> / <aaa></li>
<li>b&b / b&b
b&b / b&b</li>
<li>"ccc" / "ccc"
"ccc" / "ccc"</li>
<ul>
END
PI_ESCAPED_OUTPUT = <<'END'
<ul>
<li><aaa> / <aaa>
<aaa> / <aaa></li>
<li>b&b / b&b
b&b / b&b</li>
<li>"ccc" / "ccc"
"ccc" / "ccc"</li>
<ul>
END
def _test()
if @filename.nil?
method = (caller[0] =~ /in `(.*)'/) && $1 #'
method =~ /block in (.*)/ and method = $1 # for Ruby 1.9
@filename = "tmp.#{method}"
end
File.open(@filename, 'w') {|f| f.write(@input) } if @filename
begin
argv = @options.is_a?(Array) ? @options.dup : @options.split
argv << @filename if @filename
$stdout = output = StringWriter.new
Erubis::Main.new.execute(argv)
ensure
$stdout = STDOUT
File.unlink(@filename) if @filename && test(?f, @filename)
end
assert_text_equal(@expected, output)
end
def _error_test(errclass, errmsg)
ex = assert_raise(errclass) { _test() }
assert_equal(errmsg, ex.message)
end
def test_help # -h
@options = '-h'
m = Erubis::Main.new
@expected = m.usage() + "\n" + m.show_properties() + m.show_enhancers()
@filename = false
_test()
end
def test_version # -v
@options = '-v'
@expected = (("$Release: 2.7.0 $" =~ /[.\d]+/) && $&) + "\n"
@filename = false
_test()
end
def test_basic1
@input = INPUT
@expected = OUTPUT
@options = ''
_test()
end
def test_source1 # -x
@input = INPUT
@expected = SRC
@options = '-x'
_test()
end
def _with_dummy_file
bindir = File.join(File.dirname(File.dirname(__FILE__)), 'bin')
env_path = ENV['PATH']
env__ = ENV['_']
begin
ENV['PATH'] = bindir + File::PATH_SEPARATOR + ENV['PATH']
ENV['_'] = 'erubis'
Tempfile.open(self.name.gsub(/[^\w]/,'_')) do |f|
f.write(INPUT)
f.flush
yield(f.path)
end
ensure
ENV['PATH'] = env_path
ENV['_'] = env__ if env__
end
end
def test_syntax1 # -z (syntax ok)
@input = INPUT
@expected = "Syntax OK\n"
@options = '-z'
_test()
#
_with_dummy_file do |filepath|
actual = `erubis #{@options} #{filepath}`
assert_equal @expected, actual
end
end
def test_syntax2 # -z (syntax error)
inputs = []
inputs << <<'END'
<ul>
<% for item in list %>
<li><%= item[:name]] %></li>
<% end %>
</ul>
END
inputs << <<'END'
<ul>
<% for item in list %>
<li><%= item[:name] %></li>
<% edn %>
</ul>
END
basename = 'tmp.test_syntax2_%d.rhtml'
filenames = [ basename % 0, basename % 1 ]
errmsgs = []
if ruby19?
errmsgs << <<'END'
3: syntax error, unexpected ']', expecting ')'
_buf << ' <li>'; _buf << ( item[:name]] ).to_s; _buf << '</li>
^
-:4: syntax error, unexpected keyword_end, expecting ')'
'; end
^
-:7: syntax error, unexpected $end, expecting ')'
END
errmsgs << <<'END'
7: syntax error, unexpected $end, expecting keyword_end
END
elsif rubinius?
errmsgs << <<'END'
3: expecting ')'
_buf << ' <li>'; _buf << ( item[:name]] ).to_s; _buf << '</li>
^
END
errmsgs << <<'END'
7: missing 'end' for 'for' started on line 2
_buf.to_s
^
END
else
errmsgs << <<'END'
3: syntax error, unexpected ']', expecting ')'
_buf << ' <li>'; _buf << ( item[:name]] ).to_s; _buf << '</li>
^
-:4: syntax error, unexpected kEND, expecting ')'
'; end
^
-:7: syntax error, unexpected $end, expecting ')'
END
errmsgs << <<'END'
7: syntax error, unexpected $end, expecting kEND
END
end
#
max = inputs.length
(0...max).each do |i|
@input = inputs[i]
@expected = "tmp.test_syntax2:#{errmsgs[i]}"
@options = '-z'
if rubinius?
@expected.sub! /unexpected kEND/, 'unexpected keyword_end'
@expected.sub! /expecting kEND/, 'expecting keyword_end'
end
_test()
end
#
begin
(0...max).each do |i|
File.open(filenames[i], 'w') {|f| f.write(inputs[i]) }
end
@input = '<ok/>'
@expected = ''
@options = '-z'
(0...max).each do |i|
@expected << "#{filenames[i]}:#{errmsgs[i]}"
@options << " #{filenames[i]}"
end
if rubinius?
@expected.sub! /unexpected kEND/, 'unexpected keyword_end'
@expected.sub! /expecting kEND/, 'expecting keyword_end'
end
_test()
ensure
(0...max).each do |i|
File.unlink(filenames[i]) if test(?f, filenames[i])
end
end
end
def test_pattern1 # -p
@input = INPUT.gsub(/<%/, '<!--%').gsub(/%>/, '%-->')
@expected = OUTPUT
#@options = "-p '<!--% %-->'"
@options = ["-p", "<!--% %-->"]
_test()
end
# def test_class1 # -C
# @input = INPUT
# @expected = OUTPUT.gsub(/<aaa>/, '<aaa>').gsub(/b&b/, 'b&b').gsub(/"ccc"/, '"ccc"')
# @options = "-C XmlEruby"
# _test()
# end
def test_notrim1 # --trim=false
@input = INPUT
@expected = <<'END'
list:
- <aaa>
- b&b
- "ccc"
user: (none)
END
@options = "--trim=false" # -T
_test()
end
def test_notrim2 # --trim=false
@input = INPUT
# @expected = <<'END'
#_buf = ''; _buf << "list:\n"
# list = ['<aaa>', 'b&b', '"ccc"']
# for item in list ; _buf << "\n"
#_buf << " - "; _buf << ( item ).to_s; _buf << "\n"
# end ; _buf << "\n"
#_buf << "user: "; _buf << ( defined?(user) ? user : "(none)" ).to_s; _buf << "\n"
#_buf
#END
@expected = <<'END'
_buf = ''; _buf << 'list:
'; list = ['<aaa>', 'b&b', '"ccc"']
for item in list ; _buf << '
'; _buf << ' - '; _buf << ( item ).to_s; _buf << '
'; end ; _buf << '
'; _buf << 'user: '; _buf << ( defined?(user) ? user : "(none)" ).to_s; _buf << '
';
_buf.to_s
END
@options = "-x --trim=false" # -xT
_test()
end
#--
#def test_context1
# @input = INPUT
# @expected = OUTPUT.gsub(/\(none\)/, 'Hello')
# @options = '--user=Hello'
# _test()
#end
#++
def test_datafile1 # -f data.yaml
datafile = "test.context1.yaml"
@input = INPUT2
@expected = OUTPUT.gsub(/\(none\)/, 'Hello')
@options = "-f #{datafile}"
#
str = <<-END
user: Hello
password: world
END
File.open(datafile, 'w') {|f| f.write(str) }
begin
_test()
ensure
File.unlink(datafile) if test(?f, datafile)
end
end
def test_datafile2 # -f data.rb
datafile = "test.context1.rb"
@input = INPUT2
@expected = OUTPUT.gsub(/\(none\)/, 'Hello')
@options = "-f #{datafile}"
#
str = <<-END
@user = 'Hello'
@password = 'world'
END
File.open(datafile, 'w') {|f| f.write(str) }
begin
_test()
ensure
File.unlink(datafile) if test(?f, datafile)
end
end
def test_untabify1 # -t (obsolete)
yamlfile = "test.context2.yaml"
@input = INPUT2
@expected = OUTPUT.gsub(/\(none\)/, 'Hello')
@options = "-tf #{yamlfile}"
#
yaml = <<-END
user: Hello
password: world
END
File.open(yamlfile, 'w') {|f| f.write(yaml) }
begin
_test()
ensure
File.unlink(yamlfile) if test(?f, yamlfile)
end
end
def test_untabify2 # -T
yamlfile = "test.context2.yaml"
@input = INPUT2
@expected = OUTPUT.gsub(/\(none\)/, 'Hello')
@options = "-Tf #{yamlfile}"
#
yaml = <<-END
user: Hello
items:
- aaa
- bbb
- ccc
END
File.open(yamlfile, 'w') {|f| f.write(yaml) }
assert_raise(ArgumentError) do
_test()
end
File.open(yamlfile, 'w') {|f| f.write(yaml.gsub(/\t/, ' '*8)) }
_test()
ensure
File.unlink(yamlfile) if test(?f, yamlfile)
end
def test_symbolify1 # -S
yamlfile = "test.context3.yaml"
@input = <<END
<% for h in @list %>
<tr>
<td><%= h[:name] %></td><td><%= h[:mail] %></td>
</tr>
<% end %>
END
@expected = <<END
<tr>
<td>foo</td><td>foo@mail.com</td>
</tr>
<tr>
<td>bar</td><td>bar@mail.org</td>
</tr>
END
@options = "-f #{yamlfile} -S"
#
yaml = <<-END
list:
- name: foo
mail: foo@mail.com
- name: bar
mail: bar@mail.org
END
File.open(yamlfile, 'w') { |f| f.write(yaml) }
begin
_test()
ensure
File.unlink(yamlfile) if test(?f, yamlfile)
end
end
def test_result1 # -B
yamlfile = "test.context4.yaml"
#
@input = <<'END'
user = <%= user %>
<% for item in list %>
- <%= item %>
<% end %>
END
@expected = <<'END'
user = World
- aaa
- bbb
- ccc
END
@options = "-f #{yamlfile} -B "
#
yaml = <<-END
user: World
list:
- aaa
- bbb
- ccc
END
File.open(yamlfile, 'w') {|f| f.write(yaml) }
begin
_test()
ensure
File.unlink(yamlfile) if test(?f, yamlfile)
end
end
def test_context1 # -c
@input = <<'END'
user = <%= @user %>
<% for item in @list %>
- <%= item %>
<% end %>
END
@expected = <<'END'
user = World
- aaa
- bbb
- ccc
END
#
@options = ['-c', '{user: World, list: [aaa, bbb, ccc]}']
_test()
@options = ['-c', '@user="World"; @list=%w[aaa bbb ccc]']
_test()
end
def test_include1 # -I
dir = 'foo'
lib = 'bar'
Dir.mkdir dir unless test(?d, dir)
filename = "#{dir}/#{lib}.rb"
File.open(filename, 'w') do |f|
f.write <<-'END'
def escape(str)
return "<#{str.upcase}>"
end
END
end
#
@input = "<% require '#{lib}' %>\n" + INPUT.gsub(/<%= item %>/, '<%= escape(item) %>')
@expected = OUTPUT.gsub(/<aaa>/, '<<AAA>>').gsub(/b\&b/, '<B&B>').gsub(/"ccc"/, '<"CCC">')
@options = "-I #{dir}"
#
begin
_test()
ensure
File.unlink filename if test(?f, filename)
FileUtils.rm_r dir if test(?d, dir)
end
end
def test_require1 # -r
dir = 'foo'
lib = 'bar'
Dir.mkdir dir unless test(?d, dir)
filename = "#{dir}/#{lib}.rb"
File.open(filename, 'w') do |f|
f.write <<-'END'
def escape(str)
return "<#{str.upcase}>"
end
END
end
#
@input = INPUT.gsub(/<%= item %>/, '<%= escape(item) %>')
@expected = OUTPUT.gsub(/<aaa>/, '<<AAA>>').gsub(/b\&b/, '<B&B>').gsub(/"ccc"/, '<"CCC">')
@options = "-I #{dir} -r #{lib}"
#
begin
_test()
ensure
File.unlink filename if test(?f, filename)
FileUtils.rm_r dir if test(?d, dir)
end
end
def test_enhancers1 # -E
@input = <<END
<% list = %w[<aaa> b&b "ccc"] %>
% for item in list
- <%= item %> : <%== item %>
- [= item =] : [== item =]
% end
END
@expected = <<END
- <aaa> : <aaa>
- <aaa> : <aaa>
- b&b : b&b
- b&b : b&b
- "ccc" : "ccc"
- "ccc" : "ccc"
END
@options = "-E Escape,PercentLine,HeaderFooter,BiPattern"
_test()
end
def test_bodyonly1 # -b
@input = INPUT
@expected = SRC.sub(/\A_buf = '';/,'').sub(/\n_buf.to_s\n\z/,'')
@options = '-b -x'
_test()
end
def test_escape1 # -e
@input = INPUT
@expected = SRC.gsub(/<< \((.*?)\).to_s;/, '<< Erubis::XmlHelper.escape_xml(\1);')
@options = '-ex'
_test()
end
def test_invalid_option # -1 (invalid option)
@input = INPUT
@options = '-1'
_error_test(Erubis::CommandOptionError, "-1: unknown option.")
end
def test_invalid_enhancer # -E hoge
@options = '-E hoge'
errmsg = "hoge: no such Enhancer (try '-h' to show all enhancers)."
_error_test(Erubis::CommandOptionError, errmsg)
end
def test_invalid_lang # -l hoge
@options = '-l hoge'
errmsg = "-l hoge: invalid language name (class Erubis::Ehoge not found)."
_error_test(Erubis::CommandOptionError, errmsg)
end
def test_missing_argument # -E
@filename = false
@options = '-E'
_error_test(Erubis::CommandOptionError, "-E: enhancers required.")
@options = '-l'
_error_test(Erubis::CommandOptionError, "-l: lang required.")
end
def test_pi1 # --pi -x
@input = PI_INPUT
@expected = PI_SRC
@options = '-x --pi'
_test()
end
def test_pi2 # --pi -x --escape=false
@input = PI_INPUT
@expected = PI_ESCAPED_SRC
@options = '-x --pi --escape=false'
_test()
end
def test_pi3 # --pi
@input = PI_INPUT
@expected = PI_OUTPUT
@options = '--pi'
_test()
end
def test_pi4 # --pi --escape=false
@input = PI_INPUT
@expected = PI_ESCAPED_OUTPUT
@options = '--pi --escape=false'
_test()
end
def test_pi5 # --pi=ruby -x
@input = PI_INPUT.gsub(/<\?rb/, '<?ruby')
@expected = PI_SRC
@options = '--pi=ruby -x'
_test()
end
def test_pi6 # --pi -xl java
@input = <<'END'
<?java for (int i = 0; i < arr.length; i++) { ?>
- @{arr[i]}@ / @!{arr[i]}@
<?java } ?>
END
@expected = <<'END'
StringBuffer _buf = new StringBuffer(); for (int i = 0; i < arr.length; i++) {
_buf.append(" - "); _buf.append(escape(arr[i])); _buf.append(" / "); _buf.append(arr[i]); _buf.append("\n");
}
return _buf.toString();
END
@options = '--pi -xl java'
_test()
end
self.post_definition()
end
|