Class: Grntest::Tester
- Inherits:
-
Object
- Object
- Grntest::Tester
- Defined in:
- lib/grntest/tester.rb
Instance Attribute Summary collapse
-
#base_directory ⇒ Object
Returns the value of attribute base_directory.
-
#database_path ⇒ Object
Returns the value of attribute database_path.
-
#debug ⇒ Object
writeonly
Sets the attribute debug.
-
#default_gdb ⇒ Object
Returns the value of attribute default_gdb.
-
#default_valgrind ⇒ Object
Returns the value of attribute default_valgrind.
-
#diff ⇒ Object
Returns the value of attribute diff.
-
#diff_options ⇒ Object
Returns the value of attribute diff_options.
-
#exclude_test_patterns ⇒ Object
readonly
Returns the value of attribute exclude_test_patterns.
-
#exclude_test_suite_patterns ⇒ Object
readonly
Returns the value of attribute exclude_test_suite_patterns.
-
#gdb ⇒ Object
Returns the value of attribute gdb.
-
#groonga ⇒ Object
Returns the value of attribute groonga.
-
#groonga_httpd ⇒ Object
Returns the value of attribute groonga_httpd.
-
#groonga_suggest_create_dataset ⇒ Object
Returns the value of attribute groonga_suggest_create_dataset.
-
#input_type ⇒ Object
Returns the value of attribute input_type.
-
#interface ⇒ Object
Returns the value of attribute interface.
-
#keep_database ⇒ Object
writeonly
Sets the attribute keep_database.
-
#n_retries ⇒ Object
Returns the value of attribute n_retries.
-
#n_workers ⇒ Object
Returns the value of attribute n_workers.
-
#output ⇒ Object
Returns the value of attribute output.
-
#output_type ⇒ Object
Returns the value of attribute output_type.
-
#read_timeout ⇒ Object
Returns the value of attribute read_timeout.
- #reporter ⇒ Object
-
#shutdown_wait_timeout ⇒ Object
Returns the value of attribute shutdown_wait_timeout.
-
#stop_on_failure ⇒ Object
writeonly
Sets the attribute stop_on_failure.
-
#suppress_backtrace ⇒ Object
writeonly
Sets the attribute suppress_backtrace.
-
#suppress_omit_log ⇒ Object
writeonly
Sets the attribute suppress_omit_log.
-
#test_patterns ⇒ Object
readonly
Returns the value of attribute test_patterns.
-
#test_suite_patterns ⇒ Object
readonly
Returns the value of attribute test_suite_patterns.
-
#testee ⇒ Object
Returns the value of attribute testee.
-
#timeout ⇒ Object
Returns the value of attribute timeout.
-
#use_color ⇒ Object
writeonly
Sets the attribute use_color.
-
#use_http_chunked ⇒ Object
writeonly
Sets the attribute use_http_chunked.
-
#use_http_post ⇒ Object
writeonly
Sets the attribute use_http_post.
-
#valgrind ⇒ Object
Returns the value of attribute valgrind.
-
#valgrind_gen_suppressions ⇒ Object
writeonly
Sets the attribute valgrind_gen_suppressions.
Class Method Summary collapse
Instance Method Summary collapse
- #debug? ⇒ Boolean
- #excluded_test?(test_name) ⇒ Boolean
- #excluded_test_suite?(test_suite_name) ⇒ Boolean
-
#initialize ⇒ Tester
constructor
A new instance of Tester.
- #keep_database? ⇒ Boolean
- #plugins_directory ⇒ Object
- #run(*targets) ⇒ Object
- #selected_test?(test_name) ⇒ Boolean
- #selected_test_suite?(test_suite_name) ⇒ Boolean
- #stop_on_failure? ⇒ Boolean
- #suppress_backtrace? ⇒ Boolean
- #suppress_omit_log? ⇒ Boolean
- #target_test?(test_name) ⇒ Boolean
- #target_test_suite?(test_suite_name) ⇒ Boolean
- #use_color? ⇒ Boolean
- #use_http_chunked? ⇒ Boolean
- #use_http_post? ⇒ Boolean
- #valgrind_gen_suppressions? ⇒ Boolean
Constructor Details
#initialize ⇒ Tester
Returns a new instance of Tester.
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 |
# File 'lib/grntest/tester.rb', line 330 def initialize @groonga = "groonga" @groonga_httpd = "groonga-httpd" @groonga_suggest_create_dataset = "groonga-suggest-create-dataset" unless command_exist?(@groonga_suggest_create_dataset) @groonga_suggest_create_dataset = nil end @interface = "stdio" @use_http_post = false @use_http_chunked = false @input_type = "json" @output_type = "json" @testee = "groonga" @base_directory = Pathname(".") @database_path = nil @reporter = nil @n_workers = 1 @output = $stdout @keep_database = false @use_color = nil @stop_on_failure = false @suppress_omit_log = true @suppress_backtrace = true @debug = false @test_patterns = [] @test_suite_patterns = [] @exclude_test_patterns = [] @exclude_test_suite_patterns = [] detect_suitable_diff initialize_debuggers initialize_memory_checkers @timeout = 5 @read_timeout = 3 @n_retries = 0 @shutdown_wait_timeout = 5 end |
Instance Attribute Details
#base_directory ⇒ Object
Returns the value of attribute base_directory.
313 314 315 |
# File 'lib/grntest/tester.rb', line 313 def base_directory @base_directory end |
#database_path ⇒ Object
Returns the value of attribute database_path.
313 314 315 |
# File 'lib/grntest/tester.rb', line 313 def database_path @database_path end |
#debug=(value) ⇒ Object (writeonly)
Sets the attribute debug
325 326 327 |
# File 'lib/grntest/tester.rb', line 325 def debug=(value) @debug = value end |
#default_gdb ⇒ Object
Returns the value of attribute default_gdb.
316 317 318 |
# File 'lib/grntest/tester.rb', line 316 def default_gdb @default_gdb end |
#default_valgrind ⇒ Object
Returns the value of attribute default_valgrind.
317 318 319 |
# File 'lib/grntest/tester.rb', line 317 def default_valgrind @default_valgrind end |
#diff ⇒ Object
Returns the value of attribute diff.
313 314 315 |
# File 'lib/grntest/tester.rb', line 313 def diff @diff end |
#diff_options ⇒ Object
Returns the value of attribute diff_options.
313 314 315 |
# File 'lib/grntest/tester.rb', line 313 def end |
#exclude_test_patterns ⇒ Object (readonly)
Returns the value of attribute exclude_test_patterns.
327 328 329 |
# File 'lib/grntest/tester.rb', line 327 def exclude_test_patterns @exclude_test_patterns end |
#exclude_test_suite_patterns ⇒ Object (readonly)
Returns the value of attribute exclude_test_suite_patterns.
327 328 329 |
# File 'lib/grntest/tester.rb', line 327 def exclude_test_suite_patterns @exclude_test_suite_patterns end |
#gdb ⇒ Object
Returns the value of attribute gdb.
316 317 318 |
# File 'lib/grntest/tester.rb', line 316 def gdb @gdb end |
#groonga ⇒ Object
Returns the value of attribute groonga.
306 307 308 |
# File 'lib/grntest/tester.rb', line 306 def groonga @groonga end |
#groonga_httpd ⇒ Object
Returns the value of attribute groonga_httpd.
306 307 308 |
# File 'lib/grntest/tester.rb', line 306 def groonga_httpd @groonga_httpd end |
#groonga_suggest_create_dataset ⇒ Object
Returns the value of attribute groonga_suggest_create_dataset.
306 307 308 |
# File 'lib/grntest/tester.rb', line 306 def groonga_suggest_create_dataset @groonga_suggest_create_dataset end |
#input_type ⇒ Object
Returns the value of attribute input_type.
310 311 312 |
# File 'lib/grntest/tester.rb', line 310 def input_type @input_type end |
#interface ⇒ Object
Returns the value of attribute interface.
307 308 309 |
# File 'lib/grntest/tester.rb', line 307 def interface @interface end |
#keep_database=(value) ⇒ Object (writeonly)
Sets the attribute keep_database
321 322 323 |
# File 'lib/grntest/tester.rb', line 321 def keep_database=(value) @keep_database = value end |
#n_retries ⇒ Object
Returns the value of attribute n_retries.
328 329 330 |
# File 'lib/grntest/tester.rb', line 328 def n_retries @n_retries end |
#n_workers ⇒ Object
Returns the value of attribute n_workers.
314 315 316 |
# File 'lib/grntest/tester.rb', line 314 def n_workers @n_workers end |
#output ⇒ Object
Returns the value of attribute output.
315 316 317 |
# File 'lib/grntest/tester.rb', line 315 def output @output end |
#output_type ⇒ Object
Returns the value of attribute output_type.
311 312 313 |
# File 'lib/grntest/tester.rb', line 311 def output_type @output_type end |
#read_timeout ⇒ Object
Returns the value of attribute read_timeout.
319 320 321 |
# File 'lib/grntest/tester.rb', line 319 def read_timeout @read_timeout end |
#reporter ⇒ Object
375 376 377 378 379 380 381 382 383 384 385 |
# File 'lib/grntest/tester.rb', line 375 def reporter if @reporter.nil? if @n_workers == 1 :mark else :progress end else @reporter end end |
#shutdown_wait_timeout ⇒ Object
Returns the value of attribute shutdown_wait_timeout.
329 330 331 |
# File 'lib/grntest/tester.rb', line 329 def shutdown_wait_timeout @shutdown_wait_timeout end |
#stop_on_failure=(value) ⇒ Object (writeonly)
Sets the attribute stop_on_failure
322 323 324 |
# File 'lib/grntest/tester.rb', line 322 def stop_on_failure=(value) @stop_on_failure = value end |
#suppress_backtrace=(value) ⇒ Object (writeonly)
Sets the attribute suppress_backtrace
324 325 326 |
# File 'lib/grntest/tester.rb', line 324 def suppress_backtrace=(value) @suppress_backtrace = value end |
#suppress_omit_log=(value) ⇒ Object (writeonly)
Sets the attribute suppress_omit_log
323 324 325 |
# File 'lib/grntest/tester.rb', line 323 def suppress_omit_log=(value) @suppress_omit_log = value end |
#test_patterns ⇒ Object (readonly)
Returns the value of attribute test_patterns.
326 327 328 |
# File 'lib/grntest/tester.rb', line 326 def test_patterns @test_patterns end |
#test_suite_patterns ⇒ Object (readonly)
Returns the value of attribute test_suite_patterns.
326 327 328 |
# File 'lib/grntest/tester.rb', line 326 def test_suite_patterns @test_suite_patterns end |
#testee ⇒ Object
Returns the value of attribute testee.
312 313 314 |
# File 'lib/grntest/tester.rb', line 312 def testee @testee end |
#timeout ⇒ Object
Returns the value of attribute timeout.
318 319 320 |
# File 'lib/grntest/tester.rb', line 318 def timeout @timeout end |
#use_color=(value) ⇒ Object (writeonly)
Sets the attribute use_color
321 322 323 |
# File 'lib/grntest/tester.rb', line 321 def use_color=(value) @use_color = value end |
#use_http_chunked=(value) ⇒ Object (writeonly)
Sets the attribute use_http_chunked
309 310 311 |
# File 'lib/grntest/tester.rb', line 309 def use_http_chunked=(value) @use_http_chunked = value end |
#use_http_post=(value) ⇒ Object (writeonly)
Sets the attribute use_http_post
308 309 310 |
# File 'lib/grntest/tester.rb', line 308 def use_http_post=(value) @use_http_post = value end |
#valgrind ⇒ Object
Returns the value of attribute valgrind.
317 318 319 |
# File 'lib/grntest/tester.rb', line 317 def valgrind @valgrind end |
#valgrind_gen_suppressions=(value) ⇒ Object (writeonly)
Sets the attribute valgrind_gen_suppressions
320 321 322 |
# File 'lib/grntest/tester.rb', line 320 def valgrind_gen_suppressions=(value) @valgrind_gen_suppressions = value end |
Class Method Details
.run(argv = nil) ⇒ Object
26 27 28 29 30 31 32 33 34 |
# File 'lib/grntest/tester.rb', line 26 def run(argv=nil) argv ||= ARGV.dup tester = new catch do |tag| parser = create_option_parser(tester, tag) targets = parser.parse!(argv) tester.run(*targets) end end |
Instance Method Details
#debug? ⇒ Boolean
418 419 420 |
# File 'lib/grntest/tester.rb', line 418 def debug? @debug end |
#excluded_test?(test_name) ⇒ Boolean
437 438 439 440 441 |
# File 'lib/grntest/tester.rb', line 437 def excluded_test?(test_name) @exclude_test_patterns.any? do |pattern| pattern === test_name end end |
#excluded_test_suite?(test_suite_name) ⇒ Boolean
455 456 457 458 459 |
# File 'lib/grntest/tester.rb', line 455 def excluded_test_suite?(test_suite_name) @exclude_test_suite_patterns.any? do |pattern| pattern === test_suite_name end end |
#keep_database? ⇒ Boolean
395 396 397 |
# File 'lib/grntest/tester.rb', line 395 def keep_database? @keep_database end |
#plugins_directory ⇒ Object
461 462 463 464 465 466 467 468 469 470 471 472 473 474 |
# File 'lib/grntest/tester.rb', line 461 def plugins_directory groonga_path = Pathname(@groonga) unless groonga_path.absolute? groonga_path = Pathname(resolve_command_path(@groonga)). end base_dir = groonga_path.parent.parent installed_plugins_dir = base_dir + "lib" + "groonga" + "plugins" build_plugins_dir = base_dir + "plugins" if installed_plugins_dir.exist? installed_plugins_dir else build_plugins_dir end end |
#run(*targets) ⇒ Object
367 368 369 370 371 372 373 |
# File 'lib/grntest/tester.rb', line 367 def run(*targets) succeeded = true return succeeded if targets.empty? test_suites = load_tests(*targets) run_test_suites(test_suites) end |
#selected_test?(test_name) ⇒ Boolean
430 431 432 433 434 435 |
# File 'lib/grntest/tester.rb', line 430 def selected_test?(test_name) return true if @test_patterns.empty? @test_patterns.any? do |pattern| pattern === test_name end end |
#selected_test_suite?(test_suite_name) ⇒ Boolean
448 449 450 451 452 453 |
# File 'lib/grntest/tester.rb', line 448 def selected_test_suite?(test_suite_name) return true if @test_suite_patterns.empty? @test_suite_patterns.any? do |pattern| pattern === test_suite_name end end |
#stop_on_failure? ⇒ Boolean
406 407 408 |
# File 'lib/grntest/tester.rb', line 406 def stop_on_failure? @stop_on_failure end |
#suppress_backtrace? ⇒ Boolean
414 415 416 |
# File 'lib/grntest/tester.rb', line 414 def suppress_backtrace? @suppress_backtrace end |
#suppress_omit_log? ⇒ Boolean
410 411 412 |
# File 'lib/grntest/tester.rb', line 410 def suppress_omit_log? @suppress_omit_log end |
#target_test?(test_name) ⇒ Boolean
426 427 428 |
# File 'lib/grntest/tester.rb', line 426 def target_test?(test_name) selected_test?(test_name) and not excluded_test?(test_name) end |
#target_test_suite?(test_suite_name) ⇒ Boolean
443 444 445 446 |
# File 'lib/grntest/tester.rb', line 443 def target_test_suite?(test_suite_name) selected_test_suite?(test_suite_name) and not excluded_test_suite?(test_suite_name) end |
#use_color? ⇒ Boolean
399 400 401 402 403 404 |
# File 'lib/grntest/tester.rb', line 399 def use_color? if @use_color.nil? @use_color = guess_color_availability end @use_color end |
#use_http_chunked? ⇒ Boolean
391 392 393 |
# File 'lib/grntest/tester.rb', line 391 def use_http_chunked? @use_http_chunked end |
#use_http_post? ⇒ Boolean
387 388 389 |
# File 'lib/grntest/tester.rb', line 387 def use_http_post? @use_http_post end |
#valgrind_gen_suppressions? ⇒ Boolean
422 423 424 |
# File 'lib/grntest/tester.rb', line 422 def valgrind_gen_suppressions? @valgrind_gen_suppressions end |