/usr/lib/ruby/1.8/heckle.rb is in libheckle-ruby1.8 1.4.3-2.1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 753 754 755 756 | require 'parse_tree'
require 'sexp_processor'
require 'ruby2ruby'
require 'timeout'
require 'tempfile'
class String # :nodoc:
def to_class
split(/::/).inject(Object) { |klass, name| klass.const_get(name) }
end
end
##
# Test Unit Sadism
class Heckle < SexpProcessor
class Timeout < Timeout::Error; end
##
# The version of Heckle you are using.
VERSION = '1.4.3'
##
# Branch node types.
BRANCH_NODES = [:if, :until, :while]
##
# Is this platform MS Windows-like?
WINDOZE = RUBY_PLATFORM =~ /mswin/
##
# Path to the bit bucket.
NULL_PATH = WINDOZE ? 'NUL:' : '/dev/null'
##
# diff(1) executable
DIFF = WINDOZE ? 'diff.exe' : 'diff'
##
# Mutation count
attr_accessor :count
##
# Mutations that caused failures
attr_accessor :failures
##
# Class being heckled
attr_accessor :klass
##
# Name of class being heckled
attr_accessor :klass_name
##
# Method being heckled
attr_accessor :method
##
# Name of method being heckled
attr_accessor :method_name
attr_accessor :mutatees # :nodoc:
attr_accessor :mutation_count # :nodoc:
attr_accessor :node_count # :nodoc:
attr_accessor :original_tree # :nodoc:
@@debug = false
@@guess_timeout = true
@@timeout = 60 # default to something longer (can be overridden by runners)
def self.debug
@@debug
end
def self.debug=(value)
@@debug = value
end
def self.timeout=(value)
@@timeout = value
@@guess_timeout = false # We've set the timeout, don't guess
end
def self.guess_timeout?
@@guess_timeout
end
##
# Creates a new Heckle that will heckle +klass_name+ and +method_name+,
# sending results to +reporter+.
def initialize(klass_name = nil, method_name = nil,
nodes = Heckle::MUTATABLE_NODES, reporter = Reporter.new)
super()
@klass_name = klass_name
@method_name = method_name.intern if method_name
@klass = klass_name.to_class
@method = nil
@reporter = reporter
self.strict = false
self.auto_shift_type = true
self.expected = Sexp
@mutatees = Hash.new
@mutation_count = Hash.new 0
@node_count = Hash.new 0
@count = 0
@mutatable_nodes = nodes
@mutatable_nodes.each {|type| @mutatees[type] = [] }
@failures = []
@mutated = false
grab_mutatees
@original_tree = current_tree.deep_clone
@original_mutatees = mutatees.deep_clone
end
##
# Overwrite test_pass? for your own Heckle runner.
def tests_pass?
raise NotImplementedError
end
def run_tests
if tests_pass? then
record_passing_mutation
else
@reporter.report_test_failures
end
end
############################################################
### Running the script
def validate
left = mutations_left
if left == 0 then
@reporter.no_mutations(method_name)
return
end
@reporter.method_loaded(klass_name, method_name, left)
until left == 0 do
@reporter.remaining_mutations left
reset_tree
begin
process current_tree
timeout(@@timeout, Heckle::Timeout) { run_tests }
rescue SyntaxError => e
@reporter.warning "Mutation caused a syntax error:\n\n#{e.message}}"
rescue Heckle::Timeout
@reporter.warning "Your tests timed out. Heckle may have caused an infinite loop."
rescue Interrupt
@reporter.warning 'Mutation canceled, hit ^C again to exit'
sleep 2
end
left = mutations_left
end
reset # in case we're validating again. we should clean up.
unless @failures.empty?
@reporter.no_failures
@failures.each do |failure|
original = Ruby2Ruby.new.process(@original_tree.deep_clone)
@reporter.failure(original, failure)
end
false
else
@reporter.no_surviving_mutants
true
end
end
def record_passing_mutation
@failures << current_code
end
def heckle(exp)
exp_copy = exp.deep_clone
src = begin
Ruby2Ruby.new.process(exp)
rescue => e
puts "Error: #{e.message} with: #{klass_name}##{method_name}: #{exp_copy.inspect}"
raise e
end
original = Ruby2Ruby.new.process(@original_tree.deep_clone)
@reporter.replacing(klass_name, method_name, original, src) if @@debug
clean_name = method_name.to_s.gsub(/self\./, '')
self.count += 1
new_name = "h#{count}_#{clean_name}"
klass = aliasing_class method_name
klass.send :remove_method, new_name rescue nil
klass.send :alias_method, new_name, clean_name
klass.send :remove_method, clean_name rescue nil
@klass.class_eval src, "(#{new_name})"
end
############################################################
### Processing sexps
def process_call(exp)
recv = process(exp.shift)
meth = exp.shift
args = process(exp.shift)
mutate_node s(:call, recv, meth, args)
end
##
# Replaces the call node with nil.
def mutate_call(node)
s(:nil)
end
def process_defn(exp)
self.method = exp.shift
result = s(:defn, method)
result << process(exp.shift) until exp.empty?
heckle(result) if method == method_name
return result
ensure
@mutated = false
node_count.clear
end
def process_defs(exp)
recv = process exp.shift
meth = exp.shift
self.method = "#{Ruby2Ruby.new.process(recv.deep_clone)}.#{meth}".intern
result = s(:defs, recv, meth)
result << process(exp.shift) until exp.empty?
heckle(result) if method == method_name
return result
ensure
@mutated = false
node_count.clear
end
##
# So process_call works correctly
def process_iter(exp)
call = process exp.shift
args = process exp.shift
body = process exp.shift
mutate_node s(:iter, call, args, body)
end
def mutate_iter(exp)
s(:nil)
end
def process_asgn(type, exp)
var = exp.shift
if exp.empty? then
mutate_node s(type, var)
else
mutate_node s(type, var, process(exp.shift))
end
end
def mutate_asgn(node)
type = node.shift
var = node.shift
if node.empty? then
s(type, :_heckle_dummy)
else
if node.last.first == :nil then
s(type, var, s(:lit, 42))
else
s(type, var, s(:nil))
end
end
end
def process_cvasgn(exp)
process_asgn :cvasgn, exp
end
##
# Replaces the value of the cvasgn with nil if its some value, and 42 if its
# nil.
alias mutate_cvasgn mutate_asgn
def process_dasgn(exp)
process_asgn :dasgn, exp
end
##
# Replaces the value of the dasgn with nil if its some value, and 42 if its
# nil.
alias mutate_dasgn mutate_asgn
def process_dasgn_curr(exp)
process_asgn :dasgn_curr, exp
end
##
# Replaces the value of the dasgn_curr with nil if its some value, and 42 if
# its nil.
alias mutate_dasgn_curr mutate_asgn
def process_iasgn(exp)
process_asgn :iasgn, exp
end
##
# Replaces the value of the iasgn with nil if its some value, and 42 if its
# nil.
alias mutate_iasgn mutate_asgn
def process_gasgn(exp)
process_asgn :gasgn, exp
end
##
# Replaces the value of the gasgn with nil if its some value, and 42 if its
# nil.
alias mutate_gasgn mutate_asgn
def process_lasgn(exp)
process_asgn :lasgn, exp
end
##
# Replaces the value of the lasgn with nil if its some value, and 42 if its
# nil.
alias mutate_lasgn mutate_asgn
def process_lit(exp)
mutate_node s(:lit, exp.shift)
end
##
# Replaces the value of the :lit node with a random value.
def mutate_lit(exp)
case exp[1]
when Fixnum, Float, Bignum
s(:lit, exp[1] + rand_number)
when Symbol
s(:lit, rand_symbol)
when Regexp
s(:lit, Regexp.new(Regexp.escape(rand_string.gsub(/\//, '\\/'))))
when Range
s(:lit, rand_range)
end
end
def process_str(exp)
mutate_node s(:str, exp.shift)
end
##
# Replaces the value of the :str node with a random value.
def mutate_str(node)
s(:str, rand_string)
end
def process_if(exp)
mutate_node s(:if, process(exp.shift), process(exp.shift), process(exp.shift))
end
##
# Swaps the then and else parts of the :if node.
def mutate_if(node)
s(:if, node[1], node[3], node[2])
end
def process_true(exp)
mutate_node s(:true)
end
##
# Swaps for a :false node.
def mutate_true(node)
s(:false)
end
def process_false(exp)
mutate_node s(:false)
end
##
# Swaps for a :true node.
def mutate_false(node)
s(:true)
end
def process_while(exp)
cond, body, head_controlled = grab_conditional_loop_parts(exp)
mutate_node s(:while, cond, body, head_controlled)
end
##
# Swaps for a :until node.
def mutate_while(node)
s(:until, node[1], node[2], node[3])
end
def process_until(exp)
cond, body, head_controlled = grab_conditional_loop_parts(exp)
mutate_node s(:until, cond, body, head_controlled)
end
##
# Swaps for a :while node.
def mutate_until(node)
s(:while, node[1], node[2], node[3])
end
def mutate_node(node)
raise UnsupportedNodeError unless respond_to? "mutate_#{node.first}"
increment_node_count node
if should_heckle? node then
increment_mutation_count node
return send("mutate_#{node.first}", node)
else
node
end
end
############################################################
### Tree operations
def walk_and_push(node, index = 0)
return unless node.respond_to? :each
return if node.is_a? String
@walk_stack.push node.first
node.each_with_index { |child_node, i| walk_and_push child_node, i }
@walk_stack.pop
if @mutatable_nodes.include? node.first and
# HACK skip over call nodes that are the first child of an iter or
# they'll get added twice
#
# I think heckle really needs two processors, one for finding and one
# for heckling.
!(node.first == :call and index == 1 and @walk_stack.last == :iter) then
@mutatees[node.first].push(node)
end
end
def grab_mutatees
@walk_stack = []
walk_and_push current_tree
end
def current_tree
ur = Unifier.new
sexp = ParseTree.translate(klass_name.to_class, method_name)
raise "sexp invalid for #{klass_name}##{method_name}" if sexp == [nil]
sexp = ur.process(sexp)
rewrite sexp
end
def reset
reset_tree
reset_mutatees
mutation_count.clear
end
def reset_tree
return unless original_tree != current_tree
@mutated = false
self.count += 1
clean_name = method_name.to_s.gsub(/self\./, '')
new_name = "h#{count}_#{clean_name}"
klass = aliasing_class method_name
klass.send :undef_method, new_name rescue nil
klass.send :alias_method, new_name, clean_name
klass.send :alias_method, clean_name, "h1_#{clean_name}"
end
def reset_mutatees
@mutatees = @original_mutatees.deep_clone
end
def increment_node_count(node)
node_count[node] += 1
end
def increment_mutation_count(node)
# So we don't re-mutate this later if the tree is reset
mutation_count[node] += 1
mutatee_type = @mutatees[node.first]
mutatee_type.delete_at mutatee_type.index(node)
@mutated = true
end
############################################################
### Convenience methods
def aliasing_class(method_name)
method_name.to_s =~ /self\./ ? class << @klass; self; end : @klass
end
def should_heckle?(exp)
return false unless method == method_name
return false if node_count[exp] <= mutation_count[exp]
key = exp.first.to_sym
mutatees.include?(key) && mutatees[key].include?(exp) && !already_mutated?
end
def grab_conditional_loop_parts(exp)
cond = process(exp.shift)
body = process(exp.shift)
head_controlled = exp.shift
return cond, body, head_controlled
end
def already_mutated?
@mutated
end
def mutations_left
@last_mutations_left ||= -1
sum = 0
@mutatees.each { |mut| sum += mut.last.size }
if sum == @last_mutations_left then
puts 'bug!'
puts
require 'pp'
puts 'mutatees:'
pp @mutatees
puts
puts 'original tree:'
pp @original_tree
puts
puts "Infinite loop detected!"
puts "Please save this output to an attachment and submit a ticket here:"
puts "http://rubyforge.org/tracker/?func=add&group_id=1513&atid=5921"
exit 1
else
@last_mutations_left = sum
end
sum
end
def current_code
Ruby2Ruby.translate(klass_name.to_class, method_name)
end
##
# Returns a random Fixnum.
def rand_number
(rand(100) + 1)*((-1)**rand(2))
end
##
# Returns a random String
def rand_string
size = rand(50)
str = ""
size.times { str << rand(126).chr }
str
end
##
# Returns a random Symbol
def rand_symbol
letters = ('a'..'z').to_a + ('A'..'Z').to_a
str = ""
(rand(50) + 1).times { str << letters[rand(letters.size)] }
:"#{str}"
end
##
# Returns a random Range
def rand_range
min = rand(50)
max = min + rand(50)
min..max
end
##
# Suppresses output on $stdout and $stderr.
def silence_stream
return yield if @@debug
begin
dead = File.open("/dev/null", "w")
$stdout.flush
$stderr.flush
oldstdout = $stdout.dup
oldstderr = $stderr.dup
$stdout.reopen(dead)
$stderr.reopen(dead)
result = yield
ensure
$stdout.flush
$stderr.flush
$stdout.reopen(oldstdout)
$stderr.reopen(oldstderr)
result
end
end
class Reporter
def no_mutations(method_name)
warning "#{method_name} has a thick skin. There's nothing to heckle."
end
def method_loaded(klass_name, method_name, mutations_left)
info "#{klass_name}\##{method_name} loaded with #{mutations_left} possible mutations"
end
def remaining_mutations(mutations_left)
puts "#{mutations_left} mutations remaining..."
end
def warning(message)
puts "!" * 70
puts "!!! #{message}"
puts "!" * 70
puts
end
def info(message)
puts "*"*70
puts "*** #{message}"
puts "*"*70
puts
end
def no_failures
puts
puts "The following mutations didn't cause test failures:"
puts
end
def diff(original, mutation)
length = [original.split(/\n/).size, mutation.split(/\n/).size].max
Tempfile.open("orig") do |a|
a.puts(original)
a.flush
Tempfile.open("fail") do |b|
b.puts(mutation)
b.flush
diff_flags = " "
output = `#{Heckle::DIFF} -U #{length} --label original #{a.path} --label mutation #{b.path}`
puts output.sub(/^@@.*?\n/, '')
puts
end
end
end
def failure(original, failure)
self.diff original, failure
end
def no_surviving_mutants
puts "No mutants survived. Cool!\n\n"
end
def replacing(klass_name, method_name, original, src)
puts "Replacing #{klass_name}##{method_name} with:\n\n"
diff(original, src)
end
def report_test_failures
puts "Tests failed -- this is good" if Heckle.debug
end
end
##
# All nodes that can be mutated by Heckle.
MUTATABLE_NODES = instance_methods.grep(/mutate_/).sort.map do |meth|
meth.sub(/mutate_/, '').intern
end - [:asgn, :node] # Ignore these methods
##
# All assignment nodes that can be mutated by Heckle..
ASGN_NODES = MUTATABLE_NODES.map { |n| n.to_s }.grep(/asgn/).map do |n|
n.intern
end
end
|