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
|
#!/usr/bin/env ruby -w
# encoding: UTF-8
#
# = test_TjpExample.rb -- The TaskJuggler III Project Management Software
#
# Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014
# by Chris Schlaeger <cs@taskjuggler.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
require 'test/unit'
require 'taskjuggler/TjpExample'
class TestScheduler < Test::Unit::TestCase
def setup
end
def teardown
end
def test_1
text = <<'EOT'
# *** EXAMPLE: 1 +
This line is in.
# *** EXAMPLE: 1 -
This line is out.
EOT
ex = TaskJuggler::TjpExample.new
ex.parse(text)
out = ex.to_s
ref = <<'EOT'
This line is in.
This line is out.
EOT
assert_equal(ref, out)
out = ex.to_s('1')
ref = <<'EOT'
This line is in.
EOT
assert_equal(ref, out)
end
def test_2
text = <<'EOT'
This line is in no snip.
# *** EXAMPLE: 1 +
This line is in snip 1.
# *** EXAMPLE: 2 +
This line is in snip 1 and 2.
This line is as well in 1 and 2.
# *** EXAMPLE: 1 -
This line is in snip 2.
# *** EXAMPLE: 3 +
This line is in snip 2 and 3.
# *** EXAMPLE: 2 -
This line is in snip 3.
EOT
ex = TaskJuggler::TjpExample.new
ex.parse(text)
out = ex.to_s
ref = <<'EOT'
This line is in no snip.
This line is in snip 1.
This line is in snip 1 and 2.
This line is as well in 1 and 2.
This line is in snip 2.
This line is in snip 2 and 3.
This line is in snip 3.
EOT
assert_equal(ref, out)
out = ex.to_s('1')
ref = <<'EOT'
This line is in snip 1.
This line is in snip 1 and 2.
This line is as well in 1 and 2.
EOT
assert_equal(ref, out)
out = ex.to_s('2')
ref = <<'EOT'
This line is in snip 1 and 2.
This line is as well in 1 and 2.
This line is in snip 2.
This line is in snip 2 and 3.
EOT
assert_equal(ref, out)
out = ex.to_s('3')
ref = <<'EOT'
This line is in snip 2 and 3.
This line is in snip 3.
EOT
assert_equal(ref, out)
end
def test_3
text = <<'EOT'
# *** EXAMPLE: 1 +
This line is in.
# *** EXAMPLE: 1 -
This line is out.
# *** EXAMPLE: 1 +
This line is in as well.
EOT
ex = TaskJuggler::TjpExample.new
ex.parse(text)
out = ex.to_s
ref = <<'EOT'
This line is in.
This line is out.
This line is in as well.
EOT
assert_equal(ref, out)
out = ex.to_s('1')
ref = <<'EOT'
This line is in.
This line is in as well.
EOT
assert_equal(ref, out)
end
def test_error_1
text = <<'EOT'
# *** EXAMPLE: 1 -
This line is in.
EOT
ex = TaskJuggler::TjpExample.new
assert_raise(RuntimeError) { ex.parse(text) }
end
def test_error_2
text = <<'EOT'
# *** EXAMPLE: 1 +
This line is in.
# *** EXAMPLE: 1 +
This line is in.
EOT
ex = TaskJuggler::TjpExample.new
assert_raise(RuntimeError) { ex.parse(text) }
end
def test_error_3
text = <<'EOT'
# *** EXAMPLE: foo !
This line is in.
EOT
ex = TaskJuggler::TjpExample.new
assert_raise(RuntimeError) { ex.parse(text) }
end
end
|