test-unit 3.4.4 → 3.4.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -3
- data/Rakefile +0 -9
- data/doc/text/getting-started.md +1 -1
- data/doc/text/news.md +54 -1
- data/lib/test/unit/assertion-failed-error.rb +35 -0
- data/lib/test/unit/assertions.rb +93 -17
- data/lib/test/unit/autorunner.rb +13 -1
- data/lib/test/unit/collector/descendant.rb +1 -0
- data/lib/test/unit/collector/dir.rb +4 -2
- data/lib/test/unit/collector/load.rb +2 -0
- data/lib/test/unit/collector/objectspace.rb +1 -0
- data/lib/test/unit/collector.rb +31 -0
- data/lib/test/unit/testcase.rb +34 -1
- data/lib/test/unit/testsuite.rb +1 -1
- data/lib/test/unit/util/memory-usage.rb +47 -0
- data/lib/test/unit/version.rb +1 -1
- data/lib/test/unit.rb +4 -4
- metadata +6 -83
- data/test/collector/test-descendant.rb +0 -182
- data/test/collector/test-load.rb +0 -475
- data/test/collector/test_dir.rb +0 -407
- data/test/collector/test_objectspace.rb +0 -102
- data/test/fixtures/header-label.csv +0 -3
- data/test/fixtures/header-label.tsv +0 -3
- data/test/fixtures/header.csv +0 -3
- data/test/fixtures/header.tsv +0 -3
- data/test/fixtures/no-header.csv +0 -2
- data/test/fixtures/no-header.tsv +0 -2
- data/test/fixtures/plus.csv +0 -3
- data/test/run-test.rb +0 -22
- data/test/test-assertions.rb +0 -2281
- data/test/test-attribute-matcher.rb +0 -38
- data/test/test-attribute.rb +0 -123
- data/test/test-code-snippet.rb +0 -79
- data/test/test-color-scheme.rb +0 -123
- data/test/test-color.rb +0 -47
- data/test/test-data.rb +0 -419
- data/test/test-diff.rb +0 -518
- data/test/test-emacs-runner.rb +0 -60
- data/test/test-error.rb +0 -26
- data/test/test-failure.rb +0 -33
- data/test/test-fault-location-detector.rb +0 -163
- data/test/test-fixture.rb +0 -713
- data/test/test-notification.rb +0 -33
- data/test/test-omission.rb +0 -81
- data/test/test-pending.rb +0 -70
- data/test/test-priority.rb +0 -184
- data/test/test-test-case.rb +0 -1284
- data/test/test-test-result.rb +0 -113
- data/test/test-test-suite-creator.rb +0 -97
- data/test/test-test-suite.rb +0 -151
- data/test/testunit-test-util.rb +0 -33
- data/test/ui/test_testrunmediator.rb +0 -20
- data/test/util/test-method-owner-finder.rb +0 -38
- data/test/util/test-output.rb +0 -11
- data/test/util/test_backtracefilter.rb +0 -52
- data/test/util/test_observable.rb +0 -102
- data/test/util/test_procwrapper.rb +0 -36
@@ -1,38 +0,0 @@
|
|
1
|
-
require 'test/unit'
|
2
|
-
require 'testunit-test-util'
|
3
|
-
|
4
|
-
class TestAttributeMatcher < Test::Unit::TestCase
|
5
|
-
include TestUnitTestUtil
|
6
|
-
|
7
|
-
def setup
|
8
|
-
@test = {}
|
9
|
-
@matcher = Test::Unit::AttributeMatcher.new(@test)
|
10
|
-
end
|
11
|
-
|
12
|
-
def test_nonexistent
|
13
|
-
assert_false(@matcher.match?("nonexistent"))
|
14
|
-
end
|
15
|
-
|
16
|
-
def test_existent
|
17
|
-
@test[:existent] = true
|
18
|
-
assert_true(@matcher.match?("existent"))
|
19
|
-
end
|
20
|
-
|
21
|
-
def test_and
|
22
|
-
@test[:slow] = true
|
23
|
-
@test[:important] = true
|
24
|
-
assert_true(@matcher.match?("important and slow"))
|
25
|
-
end
|
26
|
-
|
27
|
-
def test_complex
|
28
|
-
@test[:tags] = [:slow, :web]
|
29
|
-
@test[:bug] = "2929"
|
30
|
-
assert_true(@matcher.match?("tags.include?(:web) or bug == '29'"))
|
31
|
-
end
|
32
|
-
|
33
|
-
def test_exception
|
34
|
-
assert_raise(NoMethodError) do
|
35
|
-
@matcher.match?("nonexistent > 100")
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
data/test/test-attribute.rb
DELETED
@@ -1,123 +0,0 @@
|
|
1
|
-
class TestUnitAttribute < Test::Unit::TestCase
|
2
|
-
class TestStack < Test::Unit::TestCase
|
3
|
-
class << self
|
4
|
-
def suite
|
5
|
-
Test::Unit::TestSuite.new(name)
|
6
|
-
end
|
7
|
-
end
|
8
|
-
|
9
|
-
class Stack
|
10
|
-
def initialize
|
11
|
-
@data = []
|
12
|
-
end
|
13
|
-
|
14
|
-
def push(data)
|
15
|
-
@data.push(data)
|
16
|
-
end
|
17
|
-
|
18
|
-
def peek
|
19
|
-
@data[-2]
|
20
|
-
end
|
21
|
-
|
22
|
-
def empty?
|
23
|
-
@data.empty?
|
24
|
-
end
|
25
|
-
|
26
|
-
def size
|
27
|
-
@data.size + 11
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
def setup
|
32
|
-
@stack = Stack.new
|
33
|
-
end
|
34
|
-
|
35
|
-
attribute :category, :accessor
|
36
|
-
def test_peek
|
37
|
-
@stack.push(1)
|
38
|
-
@stack.push(2)
|
39
|
-
assert_equal(2, @stack.peek)
|
40
|
-
end
|
41
|
-
|
42
|
-
attribute :bug, 1234
|
43
|
-
def test_bug_1234
|
44
|
-
assert_equal(0, @stack.size)
|
45
|
-
end
|
46
|
-
|
47
|
-
def test_no_attributes
|
48
|
-
assert(@stack.empty?)
|
49
|
-
@stack.push(1)
|
50
|
-
assert(!@stack.empty?)
|
51
|
-
assert_equal(1, @stack.size)
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
def test_set_attributes
|
56
|
-
test_for_accessor_category = TestStack.new("test_peek")
|
57
|
-
assert_equal({"category" => :accessor},
|
58
|
-
test_for_accessor_category.attributes)
|
59
|
-
|
60
|
-
test_for_bug_1234 = TestStack.new("test_bug_1234")
|
61
|
-
assert_equal({"bug" => 1234}, test_for_bug_1234.attributes)
|
62
|
-
|
63
|
-
test_no_attributes = TestStack.new("test_no_attributes")
|
64
|
-
assert_equal({}, test_no_attributes.attributes)
|
65
|
-
end
|
66
|
-
|
67
|
-
def test_callback
|
68
|
-
changed_attributes = []
|
69
|
-
observer = Proc.new do |test_case, key, old_value, value, method_name|
|
70
|
-
changed_attributes << [test_case, key, old_value, value, method_name]
|
71
|
-
end
|
72
|
-
|
73
|
-
test_case = Class.new(TestStack) do
|
74
|
-
register_attribute_observer(:bug, &observer)
|
75
|
-
attribute("bug", 9876, "test_bug_1234")
|
76
|
-
attribute(:description, "Test for peek", "test_peek")
|
77
|
-
attribute(:bug, 29, "test_peek")
|
78
|
-
end
|
79
|
-
|
80
|
-
assert_equal([
|
81
|
-
[test_case, "bug", 1234, 9876, "test_bug_1234"],
|
82
|
-
[test_case, "bug", nil, 29, "test_peek"],
|
83
|
-
],
|
84
|
-
changed_attributes)
|
85
|
-
end
|
86
|
-
|
87
|
-
def test_attributes_with_prepended_module
|
88
|
-
omit("Module#prepend is needed") unless Module.respond_to?(:prepend, true)
|
89
|
-
test_case = Class.new(TestStack) do
|
90
|
-
prepend Module.new
|
91
|
-
end
|
92
|
-
assert_equal({
|
93
|
-
"category" => :accessor,
|
94
|
-
},
|
95
|
-
test_case.attributes("test_peek"))
|
96
|
-
end
|
97
|
-
|
98
|
-
class TestDescription < self
|
99
|
-
def test_decoration_style
|
100
|
-
test_case = Class.new(TestStack) do
|
101
|
-
description "Test for push"
|
102
|
-
def test_push
|
103
|
-
end
|
104
|
-
end
|
105
|
-
|
106
|
-
test_push = test_case.new("test_push")
|
107
|
-
assert_equal({"description" => "Test for push"},
|
108
|
-
test_push.attributes)
|
109
|
-
end
|
110
|
-
|
111
|
-
def test_explicit_test_name_style
|
112
|
-
test_case = Class.new(TestStack) do
|
113
|
-
def test_push
|
114
|
-
end
|
115
|
-
description "Test for push", :test_push
|
116
|
-
end
|
117
|
-
|
118
|
-
test_push = test_case.new("test_push")
|
119
|
-
assert_equal({"description" => "Test for push"},
|
120
|
-
test_push.attributes)
|
121
|
-
end
|
122
|
-
end
|
123
|
-
end
|
data/test/test-code-snippet.rb
DELETED
@@ -1,79 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
require "test-unit"
|
4
|
-
require "testunit-test-util"
|
5
|
-
|
6
|
-
class TestCodeSnippet < Test::Unit::TestCase
|
7
|
-
include TestUnitTestUtil
|
8
|
-
|
9
|
-
class TestJRuby < self
|
10
|
-
def test_error_inside_jruby
|
11
|
-
jruby_only_test
|
12
|
-
|
13
|
-
backtrace = backtrace_from_jruby
|
14
|
-
no_rb_entries = backtrace.find_all do |(file, _, _)|
|
15
|
-
File.extname(file) != ".rb"
|
16
|
-
end
|
17
|
-
|
18
|
-
fetcher = Test::Unit::CodeSnippetFetcher.new
|
19
|
-
snippets = no_rb_entries.collect do |(file, line, _)|
|
20
|
-
fetcher.fetch(file, line)
|
21
|
-
end
|
22
|
-
assert_equal([[]] * no_rb_entries.size,
|
23
|
-
snippets)
|
24
|
-
end
|
25
|
-
|
26
|
-
private
|
27
|
-
def backtrace_from_jruby
|
28
|
-
begin
|
29
|
-
java.util.Vector.new(-1)
|
30
|
-
rescue Exception
|
31
|
-
$@.collect do |entry|
|
32
|
-
entry.split(/:/, 3)
|
33
|
-
end
|
34
|
-
else
|
35
|
-
flunk("failed to raise an exception from JRuby.")
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
class TestDefaultExternal < self
|
41
|
-
def suppress_warning
|
42
|
-
verbose = $VERBOSE
|
43
|
-
begin
|
44
|
-
$VERBOSE = false
|
45
|
-
yield
|
46
|
-
ensure
|
47
|
-
$VERBOSE = verbose
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
def setup
|
52
|
-
suppress_warning do
|
53
|
-
@default_external = Encoding.default_external
|
54
|
-
end
|
55
|
-
@fetcher = Test::Unit::CodeSnippetFetcher.new
|
56
|
-
end
|
57
|
-
|
58
|
-
def teardown
|
59
|
-
suppress_warning do
|
60
|
-
Encoding.default_external = @default_external
|
61
|
-
end
|
62
|
-
end
|
63
|
-
|
64
|
-
def test_windows_31j
|
65
|
-
source = Tempfile.new(["test-code-snippet", ".rb"])
|
66
|
-
source.puts(<<-SOURCE)
|
67
|
-
puts("あいうえお")
|
68
|
-
SOURCE
|
69
|
-
source.flush
|
70
|
-
suppress_warning do
|
71
|
-
Encoding.default_external = "Windows-31J"
|
72
|
-
end
|
73
|
-
assert_equal([
|
74
|
-
[1, "puts(\"あいうえお\")", {:target_line? => false}],
|
75
|
-
],
|
76
|
-
@fetcher.fetch(source.path, 0))
|
77
|
-
end
|
78
|
-
end
|
79
|
-
end
|
data/test/test-color-scheme.rb
DELETED
@@ -1,123 +0,0 @@
|
|
1
|
-
class TestUnitColorScheme < Test::Unit::TestCase
|
2
|
-
def test_register
|
3
|
-
inverted_scheme_spec = {
|
4
|
-
"success" => {:name => "red"},
|
5
|
-
"failure" => {:name => "green"},
|
6
|
-
}
|
7
|
-
Test::Unit::ColorScheme["inverted"] = inverted_scheme_spec
|
8
|
-
assert_equal({
|
9
|
-
"success" => color("red"),
|
10
|
-
"failure" => color("green"),
|
11
|
-
},
|
12
|
-
Test::Unit::ColorScheme["inverted"].to_hash)
|
13
|
-
end
|
14
|
-
|
15
|
-
def test_new_with_colors
|
16
|
-
scheme = Test::Unit::ColorScheme.new(:success => color("blue"),
|
17
|
-
"failure" => color("green",
|
18
|
-
:underline => true))
|
19
|
-
assert_equal({
|
20
|
-
"success" => color("blue"),
|
21
|
-
"failure" => color("green", :underline => true),
|
22
|
-
},
|
23
|
-
scheme.to_hash)
|
24
|
-
end
|
25
|
-
|
26
|
-
def test_new_with_spec
|
27
|
-
scheme = Test::Unit::ColorScheme.new(:success => {
|
28
|
-
:name => "blue",
|
29
|
-
:bold => true
|
30
|
-
},
|
31
|
-
"failure" => {:name => "green"})
|
32
|
-
assert_equal({
|
33
|
-
"success" => color("blue", :bold => true),
|
34
|
-
"failure" => color("green"),
|
35
|
-
},
|
36
|
-
scheme.to_hash)
|
37
|
-
end
|
38
|
-
|
39
|
-
private
|
40
|
-
def color(name, options={})
|
41
|
-
Test::Unit::Color.new(name, options)
|
42
|
-
end
|
43
|
-
|
44
|
-
module CleanEnvironment
|
45
|
-
def setup
|
46
|
-
@original_term, ENV["TERM"] = ENV["TERM"], nil
|
47
|
-
@original_color_term, ENV["COLORTERM"] = ENV["COLORTERM"], nil
|
48
|
-
@original_vte_version, ENV["VTE_VERSION"] = ENV["VTE_VERSION"], nil
|
49
|
-
ENV["TERM"] = "xterm"
|
50
|
-
end
|
51
|
-
|
52
|
-
def teardown
|
53
|
-
ENV["TERM"] = @original_term
|
54
|
-
ENV["COLORTERM"] = @original_color_term
|
55
|
-
ENV["VTE_VERSION"] = @original_vte_version
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
class TestFor8Colors < self
|
60
|
-
include CleanEnvironment
|
61
|
-
|
62
|
-
def test_default
|
63
|
-
expected_schema_keys = [
|
64
|
-
"pass",
|
65
|
-
"pass-marker",
|
66
|
-
"failure",
|
67
|
-
"failure-marker",
|
68
|
-
"pending",
|
69
|
-
"pending-marker",
|
70
|
-
"omission",
|
71
|
-
"omission-marker",
|
72
|
-
"notification",
|
73
|
-
"notification-marker",
|
74
|
-
"error",
|
75
|
-
"error-marker",
|
76
|
-
"case",
|
77
|
-
"suite",
|
78
|
-
"diff-inserted-tag",
|
79
|
-
"diff-deleted-tag",
|
80
|
-
"diff-difference-tag",
|
81
|
-
"diff-inserted",
|
82
|
-
"diff-deleted",
|
83
|
-
]
|
84
|
-
assert_equal(expected_schema_keys.sort,
|
85
|
-
Test::Unit::ColorScheme.default.to_hash.keys.sort)
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
class TestGuessAvailableColors < self
|
90
|
-
include CleanEnvironment
|
91
|
-
{
|
92
|
-
"rxvt" => 8,
|
93
|
-
"xterm-color" => 8,
|
94
|
-
"alacritty" => 256,
|
95
|
-
"iTerm.app" => 256,
|
96
|
-
"screen-256color" => 256,
|
97
|
-
"screenxterm-256color" => 256,
|
98
|
-
"tmux-256color" => 256,
|
99
|
-
"vte-256color" => 256,
|
100
|
-
"vscode-direct" => 2**24,
|
101
|
-
"vte-direct" => 2**24,
|
102
|
-
"xterm-direct" => 2**24,
|
103
|
-
}.each do |term, colors|
|
104
|
-
data("%20s => %8d" % [term, colors], {term: term, colors: colors})
|
105
|
-
end
|
106
|
-
def test_term_env(data)
|
107
|
-
ENV["TERM"] = data[:term]
|
108
|
-
assert_equal(data[:colors],
|
109
|
-
Test::Unit::ColorScheme.available_colors,
|
110
|
-
"Incorrect available_colors for TERM=%s" % [data[:term]])
|
111
|
-
end
|
112
|
-
end
|
113
|
-
|
114
|
-
class TestDefaultScheme < self
|
115
|
-
include CleanEnvironment
|
116
|
-
|
117
|
-
def test_direct_color
|
118
|
-
ENV["TERM"] = "xterm-direct"
|
119
|
-
assert_equal(Test::Unit::ColorScheme.default_for_256_colors,
|
120
|
-
Test::Unit::ColorScheme.default)
|
121
|
-
end
|
122
|
-
end
|
123
|
-
end
|
data/test/test-color.rb
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
class TestUnitColor < Test::Unit::TestCase
|
2
|
-
def test_color_escape_sequence
|
3
|
-
assert_escape_sequence(["31"], color("red"))
|
4
|
-
assert_escape_sequence(["32", "1"], color("green", :bold => true))
|
5
|
-
assert_escape_sequence(["0"], color("reset"))
|
6
|
-
assert_escape_sequence(["45"], color("magenta", :background => true))
|
7
|
-
end
|
8
|
-
|
9
|
-
def test_mix_color_escape_sequence
|
10
|
-
assert_escape_sequence(["34", "1"],
|
11
|
-
mix_color([color("blue"),
|
12
|
-
color("none", :bold => true)]))
|
13
|
-
assert_escape_sequence(["34", "1", "4"],
|
14
|
-
mix_color([color("blue"),
|
15
|
-
color("none", :bold => true)]) +
|
16
|
-
color("none", :underline => true))
|
17
|
-
assert_escape_sequence(["34", "1", "4"],
|
18
|
-
color("blue") +
|
19
|
-
color("none", :bold => true) +
|
20
|
-
color("none", :underline => true))
|
21
|
-
end
|
22
|
-
|
23
|
-
def test_equal
|
24
|
-
red = color("red")
|
25
|
-
red_bold = color("red", :bold => true)
|
26
|
-
|
27
|
-
assert_operator(red, :==, red)
|
28
|
-
assert_not_equal(red, nil)
|
29
|
-
assert_equal(red, color("red"))
|
30
|
-
assert_not_equal(red, red_bold)
|
31
|
-
end
|
32
|
-
|
33
|
-
private
|
34
|
-
def color(name, options={})
|
35
|
-
Test::Unit::Color.new(name, options)
|
36
|
-
end
|
37
|
-
|
38
|
-
def mix_color(colors)
|
39
|
-
Test::Unit::MixColor.new(colors)
|
40
|
-
end
|
41
|
-
|
42
|
-
def assert_escape_sequence(expected, color)
|
43
|
-
assert_equal(expected, color.sequence)
|
44
|
-
assert_match(/\e\[(?:\d+;)*\d+m/, color.escape_sequence)
|
45
|
-
assert_equal(expected, color.escape_sequence[2..-2].split(";"))
|
46
|
-
end
|
47
|
-
end
|