118 lines
2.6 KiB
Ruby
Executable file
118 lines
2.6 KiB
Ruby
Executable file
#!/usr/bin/ruby
|
|
#
|
|
# Test suite for BlueCloth classes
|
|
# $Id: test.rb,v 1.1 2005/01/07 23:01:51 alexeyv Exp $
|
|
#
|
|
|
|
BEGIN {
|
|
$basedir = File::dirname( __FILE__ )
|
|
["lib", "tests", "redist"].each do |subdir|
|
|
$LOAD_PATH.unshift File::join( $basedir, subdir )
|
|
end
|
|
|
|
require "#{$basedir}/utils"
|
|
include UtilityFunctions
|
|
}
|
|
|
|
verboseOff {
|
|
require 'bctestcase'
|
|
require 'find'
|
|
require 'test/unit'
|
|
require 'test/unit/testsuite'
|
|
require 'test/unit/ui/console/testrunner'
|
|
require 'optparse'
|
|
}
|
|
|
|
# Turn off output buffering
|
|
$stderr.sync = $stdout.sync = true
|
|
$DebugPattern = nil
|
|
|
|
# Initialize variables
|
|
safelevel = 0
|
|
patterns = []
|
|
requires = []
|
|
|
|
# Parse command-line switches
|
|
ARGV.options {|oparser|
|
|
oparser.banner = "Usage: #$0 [options] [TARGETS]\n"
|
|
|
|
oparser.on( "--debug[=PATTERN]", "-d[=PATTERN]", String,
|
|
"Turn debugging on (for tests which match PATTERN)" ) {|arg|
|
|
if arg
|
|
$DebugPattern = Regexp::new( arg )
|
|
puts "Turned debugging on for %p." % $DebugPattern
|
|
else
|
|
$DEBUG = true
|
|
debugMsg "Turned debugging on globally."
|
|
end
|
|
}
|
|
|
|
oparser.on( "--verbose", "-v", TrueClass, "Make progress verbose" ) {
|
|
$VERBOSE = true
|
|
debugMsg "Turned verbose on."
|
|
}
|
|
|
|
# Handle the 'help' option
|
|
oparser.on( "--help", "-h", "Display this text." ) {
|
|
$stderr.puts oparser
|
|
exit!(0)
|
|
}
|
|
|
|
oparser.parse!
|
|
}
|
|
|
|
# Parse test patterns
|
|
ARGV.each {|pat| patterns << Regexp::new( pat, Regexp::IGNORECASE )}
|
|
$stderr.puts "#{patterns.length} patterns given on the command line"
|
|
|
|
### Load all the tests from the tests dir
|
|
Find.find("#{$basedir}/tests") {|file|
|
|
Find.prune if /\/\./ =~ file or /~$/ =~ file
|
|
Find.prune if /TEMPLATE/ =~ file
|
|
next if File.stat( file ).directory?
|
|
|
|
unless patterns.empty?
|
|
Find.prune unless patterns.find {|pat| pat =~ file}
|
|
end
|
|
|
|
debugMsg "Considering '%s': " % file
|
|
next unless file =~ /\.tests.rb$/
|
|
debugMsg "Requiring '%s'..." % file
|
|
require "#{file}"
|
|
requires << file
|
|
}
|
|
|
|
$stderr.puts "Required #{requires.length} files."
|
|
unless patterns.empty?
|
|
$stderr.puts "[" + requires.sort.join( ", " ) + "]"
|
|
end
|
|
|
|
# Build the test suite
|
|
class BlueClothTests
|
|
class << self
|
|
def suite
|
|
suite = Test::Unit::TestSuite.new( "BlueCloth" )
|
|
|
|
if suite.respond_to?( :add )
|
|
ObjectSpace.each_object( Class ) {|klass|
|
|
suite.add( klass.suite ) if klass < BlueCloth::TestCase
|
|
}
|
|
else
|
|
ObjectSpace.each_object( Class ) {|klass|
|
|
suite << klass.suite if klass < BlueCloth::TestCase
|
|
}
|
|
end
|
|
|
|
return suite
|
|
end
|
|
end
|
|
end
|
|
|
|
# Run tests
|
|
$SAFE = safelevel
|
|
Test::Unit::UI::Console::TestRunner.new( BlueClothTests ).start
|
|
|
|
|
|
|
|
|