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
|
require File.expand_path('../helper', __FILE__)
require 'fileutils'
require 'open3'
class TestRakeFunctional < Rake::TestCase
def setup
@rake_path = File.expand_path("../../../bin/rake", __FILE__)
lib_path = File.expand_path("../../../lib", __FILE__)
@ruby_options = ["-I#{lib_path}", "-I."]
@verbose = ENV['VERBOSE']
if @verbose
puts
puts
puts '-' * 80
puts @__name__
puts '-' * 80
end
super
end
def test_rake_default
rakefile_default
rake
assert_match(/^DEFAULT$/, @out)
end
def test_rake_error_on_bad_task
rakefile_default
rake '-t', 'xyz'
assert_match(/rake aborted/, @err)
end
def test_env_available_at_top_scope
rakefile_default
rake "TESTTOPSCOPE=1"
assert_match(/^TOPSCOPE$/, @out)
end
def test_env_available_at_task_scope
rakefile_default
rake 'TESTTASKSCOPE=1', 'task_scope'
assert_match(/^TASKSCOPE$/, @out)
end
def test_multi_desc
ENV['RAKE_COLUMNS'] = '80'
rakefile_multidesc
rake "-T"
assert_match %r{^rake a *# A / A2 *$}, @out
assert_match %r{^rake b *# B *$}, @out
refute_match %r{^rake c}, @out
assert_match %r{^rake d *# x{65}\.\.\.$}, @out
end
def test_long_description
rakefile_multidesc
rake "--describe"
assert_match %r{^rake a\n *A / A2 *$}m, @out
assert_match %r{^rake b\n *B *$}m, @out
assert_match %r{^rake d\n *x{80}}m, @out
refute_match %r{^rake c\n}m, @out
end
def test_proper_namespace_access
rakefile_access
rake
refute_match %r{^BAD:}, @out
end
def test_rbext
rakefile_rbext
rake "-N"
assert_match %r{^OK$}, @out
end
def test_system
rake_system_dir
rake '-g', "sys1"
assert_match %r{^SYS1}, @out
end
def test_system_excludes_rakelib_files_too
rake_system_dir
rake '-g', "sys1", '-T', 'extra'
refute_match %r{extra:extra}, @out
end
def test_by_default_rakelib_files_are_included
rake_system_dir
rakefile_extra
rake '-T', 'extra', '--trace'
assert_match %r{extra:extra}, @out
end
def test_implicit_system
rake_system_dir
Dir.chdir @tempdir
rake "sys1", "--trace"
assert_match %r{^SYS1}, @out
end
def test_no_system
rake_system_dir
rakefile_extra
rake '-G', "sys1"
assert_match %r{^Don't know how to build task}, @err # emacs wart: '
end
def test_nosearch_with_rakefile_uses_local_rakefile
rakefile_default
rake "--nosearch"
assert_match %r{^DEFAULT}, @out
end
def test_nosearch_without_rakefile_finds_system
rakefile_nosearch
rake_system_dir
rake "--nosearch", "sys1"
assert_match %r{^SYS1}, @out
end
def test_nosearch_without_rakefile_and_no_system_fails
rakefile_nosearch
ENV['RAKE_SYSTEM'] = 'not_exist'
rake "--nosearch"
assert_match %r{^No Rakefile found}, @err
end
def test_invalid_command_line_options
rakefile_default
rake "--bad-options"
assert_match %r{invalid +option}i, @err
end
def test_inline_verbose_default_should_show_command
rakefile_verbose
rake "inline_verbose_default"
assert_match(/#{Regexp.quote(RUBY)} -e/, @err)
end
def test_inline_verbose_true_should_show_command
rakefile_verbose
rake "inline_verbose_true"
assert_match(/#{Regexp.quote(RUBY)} -e/, @err)
end
def test_inline_verbose_false_should_not_show_command
rakefile_verbose
rake "inline_verbose_false"
refute_match(/#{Regexp.quote(RUBY)} -e/, @err)
end
def test_block_verbose_false_should_not_show_command
rakefile_verbose
rake "block_verbose_false"
refute_match(/#{Regexp.quote(RUBY)} -e/, @err)
end
def test_block_verbose_true_should_show_command
rakefile_verbose
rake "block_verbose_true"
assert_match(/#{Regexp.quote(RUBY)} -e/, @err)
end
def test_standalone_verbose_true_should_show_command
rakefile_verbose
rake "standalone_verbose_true"
assert_match(/#{Regexp.quote(RUBY)} -e/, @err)
end
def test_standalone_verbose_false_should_not_show_command
rakefile_verbose
rake "standalone_verbose_false"
refute_match(/#{Regexp.quote(RUBY)} -e/, @err)
end
def test_dry_run
rakefile_default
rake "-n", "other"
assert_match %r{Execute \(dry run\) default}, @err
assert_match %r{Execute \(dry run\) other}, @err
refute_match %r{DEFAULT}, @out
refute_match %r{OTHER}, @out
end
# Test for the trace/dry_run bug found by Brian Chandler
def test_dry_run_bug
rakefile_dryrun
rake
FileUtils.rm_f 'temp_one'
rake "--dry-run"
refute_match(/No such file/, @out)
end
# Test for the trace/dry_run bug found by Brian Chandler
def test_trace_bug
rakefile_dryrun
rake
FileUtils.rm_f 'temp_one'
rake "--trace"
refute_match(/No such file/, @out)
end
def test_imports
rakefile_imports
rake
assert File.exist?(File.join(@tempdir, 'dynamic_deps')),
"'dynamic_deps' file should exist"
assert_match(/^FIRST$\s+^DYNAMIC$\s+^STATIC$\s+^OTHER$/, @out)
end
def test_rules_chaining_to_file_task
rakefile_chains
rake
assert File.exist?(File.join(@tempdir, 'play.app')),
"'play.app' file should exist"
end
def test_file_creation_task
rakefile_file_creation
rake "prep"
rake "run"
rake "run"
assert(@err !~ /^cp src/, "Should not recopy data")
end
def test_dash_f_with_no_arg_foils_rakefile_lookup
rakefile_rakelib
rake '-I', 'rakelib', '-rtest1', '-f'
assert_match(/^TEST1$/, @out)
end
def test_dot_rake_files_can_be_loaded_with_dash_r
rakefile_rakelib
rake '-I', 'rakelib', '-rtest2', '-f'
assert_empty @err
assert_match(/^TEST2$/, @out)
end
def test_can_invoke_task_in_toplevel_namespace
rakefile_namespace
rake "copy"
assert_match(/^COPY$/, @out)
end
def test_can_invoke_task_in_nested_namespace
rakefile_namespace
rake "nest:copy"
assert_match(/^NEST COPY$/, @out)
end
def test_tasks_can_reference_task_in_same_namespace
rakefile_namespace
rake "nest:xx"
assert_match(/^NEST COPY$/m, @out)
end
def test_tasks_can_reference_task_in_other_namespaces
rakefile_namespace
rake "b:run"
assert_match(/^IN A\nIN B$/m, @out)
end
def test_anonymous_tasks_can_be_invoked_indirectly
rakefile_namespace
rake "anon"
assert_match(/^ANON COPY$/m, @out)
end
def test_rake_namespace_refers_to_toplevel
rakefile_namespace
rake "very:nested:run"
assert_match(/^COPY$/m, @out)
end
def test_file_task_are_not_scoped_by_namespaces
rakefile_namespace
rake "xyz.rb"
assert_match(/^XYZ1\nXYZ2$/m, @out)
end
def test_file_task_dependencies_scoped_by_namespaces
rakefile_namespace
rake "scopedep.rb"
assert_match(/^PREPARE\nSCOPEDEP$/m, @out)
end
def test_comment_before_task_acts_like_desc
rakefile_comments
rake "-T"
refute_match(/comment for t1/, @out)
end
def test_comment_separated_from_task_by_blank_line_is_not_picked_up
rakefile_comments
rake "-T"
refute_match("t2", @out)
end
def test_comment_after_desc_is_ignored
rakefile_comments
rake "-T"
assert_match("override comment for t3", @out)
end
def test_comment_before_desc_is_ignored
rakefile_comments
rake "-T"
assert_match("override comment for t4", @out)
end
def test_correct_number_of_tasks_reported
rakefile_comments
rake "-T"
assert_equal(2, @out.split(/\n/).grep(/t\d/).size)
end
def test_file_list_is_requirable_separately
ruby '-rrake/file_list', '-e', 'puts Rake::FileList["a"].size'
assert_equal "1\n", @out
end
private
# Run a shell Ruby command with command line options (using the
# default test options). Output is captured in @out and @err
def ruby(*option_list)
run_ruby(@ruby_options + option_list)
end
# Run a command line rake with the give rake options. Default
# command line ruby options are included. Output is captured in
# @out and @err
def rake(*rake_options)
run_ruby @ruby_options + [@rake_path] + rake_options
end
# Low level ruby command runner ...
def run_ruby(option_list)
puts "COMMAND: [#{RUBY} #{option_list.join ' '}]" if @verbose
inn, out, err = Open3.popen3(Gem.ruby, *option_list)
inn.close
@out = out.read
@err = err.read
puts "OUTPUT: [#{@out}]" if @verbose
puts "ERROR: [#{@err}]" if @verbose
puts "PWD: [#{Dir.pwd}]" if @verbose
end
end
|