jstorimer-deep-test 1.4.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/README.rdoc +41 -70
- data/Rakefile +47 -119
- data/TODO +2 -2
- data/VERSION +1 -1
- data/infrastructure/dynamic_teardown.rb +22 -0
- data/{test → infrastructure}/fake_deadlock_error.rb +0 -0
- data/infrastructure/load.rb +11 -0
- data/infrastructure/test_central_command.rb +15 -0
- data/infrastructure/test_exception.rb +7 -0
- data/{test → infrastructure}/test_factory.rb +0 -0
- data/infrastructure/test_logger.rb +11 -0
- data/infrastructure/test_operator.rb +15 -0
- data/infrastructure/test_result.rb +15 -0
- data/infrastructure/thread_agent.rb +21 -0
- data/infrastructure/timewarp/Rakefile +14 -0
- data/infrastructure/timewarp/lib/timewarp.rb +21 -0
- data/infrastructure/timewarp/test/timewarp_test.rb +45 -0
- data/lib/deep_test.rb +28 -40
- data/lib/deep_test/agent.rb +108 -0
- data/lib/deep_test/central_command.rb +165 -0
- data/lib/deep_test/cpu_info.rb +22 -0
- data/lib/deep_test/database/mysql_setup_listener.rb +11 -12
- data/lib/deep_test/database/setup_listener.rb +23 -23
- data/lib/deep_test/demon.rb +25 -0
- data/lib/deep_test/distributed/beachhead.rb +104 -0
- data/lib/deep_test/distributed/dispatch_controller.rb +17 -10
- data/lib/deep_test/distributed/establish_beachhead.rb +19 -0
- data/lib/deep_test/distributed/landing_fleet.rb +30 -0
- data/lib/deep_test/distributed/landing_ship.rb +60 -0
- data/lib/deep_test/distributed/remote_deployment.rb +56 -0
- data/lib/deep_test/distributed/rsync.rb +25 -12
- data/lib/deep_test/distributed/shell_environment.rb +50 -0
- data/lib/deep_test/distributed/ssh_client_connection_info.rb +14 -0
- data/lib/deep_test/failure_message.rb +19 -0
- data/lib/deep_test/lib_root.rb +4 -0
- data/lib/deep_test/listener_list.rb +1 -1
- data/lib/deep_test/local_deployment.rb +46 -0
- data/lib/deep_test/logger.rb +17 -2
- data/lib/deep_test/main.rb +41 -0
- data/lib/deep_test/marshallable_exception_wrapper.rb +4 -4
- data/lib/deep_test/metrics/data.rb +34 -0
- data/lib/deep_test/metrics/measurement.rb +39 -0
- data/lib/deep_test/{null_worker_listener.rb → null_listener.rb} +14 -14
- data/lib/deep_test/options.rb +41 -56
- data/lib/deep_test/proxy_io.rb +77 -0
- data/lib/deep_test/rake_tasks.rb +3 -1
- data/lib/deep_test/result_reader.rb +10 -6
- data/lib/deep_test/rspec_detector.rb +1 -1
- data/lib/deep_test/spec.rb +5 -1
- data/lib/deep_test/spec/extensions/example_methods.rb +7 -1
- data/lib/deep_test/spec/extensions/spec_task.rb +3 -2
- data/lib/deep_test/spec/runner.rb +32 -17
- data/lib/deep_test/spec/work_result.rb +2 -0
- data/lib/deep_test/test/run_test_suite.rb +5 -0
- data/lib/deep_test/test/runner.rb +2 -2
- data/lib/deep_test/test/supervised_test_suite.rb +9 -10
- data/lib/deep_test/test/work_result.rb +1 -0
- data/lib/deep_test/test_task.rb +1 -1
- data/lib/deep_test/ui/console.rb +9 -11
- data/lib/deep_test/warlock.rb +37 -25
- data/lib/telegraph.rb +29 -0
- data/lib/telegraph/ack_sequence.rb +14 -0
- data/lib/telegraph/logging.rb +20 -0
- data/lib/telegraph/message.rb +39 -0
- data/lib/telegraph/operator.rb +47 -0
- data/lib/telegraph/switchboard.rb +57 -0
- data/lib/telegraph/wire.rb +73 -0
- data/negative_acceptance_tests/dying_spec.rb +13 -0
- data/negative_acceptance_tests/dying_test.rb +13 -0
- data/negative_acceptance_tests/failing_spec.rb +9 -0
- data/{test/failing.rb → negative_acceptance_tests/failing_test.rb} +3 -1
- data/negative_acceptance_tests/kill_agent_one_on_start_work.rb +16 -0
- data/negative_acceptance_tests/passing_spec.rb +10 -0
- data/negative_acceptance_tests/passing_test.rb +12 -0
- data/negative_acceptance_tests/tasks.rake +87 -0
- data/negative_acceptance_tests/tests.rb +60 -0
- data/sample_rails_project/deep_test.rb +4 -0
- data/sample_rails_project/lib/{foreign_host_worker_simulation_listener.rb → foreign_host_agent_simulation_listener.rb} +6 -4
- data/sample_rails_project/lib/tasks/deep_test.rake +13 -4
- data/spec/deep_test/options_spec.rb +80 -59
- data/spec/deep_test/spec/extensions/example_methods_spec.rb +5 -4
- data/spec/deep_test/spec/extensions/spec_task_spec.rb +4 -6
- data/spec/deep_test/spec/runner_spec.rb +59 -32
- data/spec/spec_helper.rb +14 -6
- data/test/deep_test/agent_test.rb +175 -0
- data/test/deep_test/central_command_test.rb +147 -0
- data/test/deep_test/cpu_info_test.rb +33 -0
- data/test/deep_test/database/mysql_setup_listener_test.rb +13 -9
- data/test/deep_test/demon_test.rb +23 -0
- data/test/deep_test/distributed/beachhead_test.rb +67 -0
- data/test/deep_test/distributed/dispatch_controller_test.rb +130 -177
- data/test/deep_test/distributed/filename_resolver_test.rb +38 -34
- data/test/deep_test/distributed/landing_fleet_test.rb +55 -0
- data/test/deep_test/distributed/landing_ship_test.rb +48 -0
- data/test/deep_test/distributed/remote_deployment_test.rb +134 -0
- data/test/deep_test/distributed/rsync_test.rb +42 -62
- data/test/deep_test/distributed/shell_environment_fixtures/set_bar_to_foo +1 -0
- data/test/deep_test/distributed/shell_environment_fixtures/set_foo_to_bar +1 -0
- data/test/deep_test/distributed/shell_environment_fixtures/set_foo_to_baz +1 -0
- data/test/deep_test/distributed/shell_environment_test.rb +108 -0
- data/test/deep_test/distributed/ssh_client_connection_info_test.rb +34 -0
- data/test/deep_test/listener_list_test.rb +17 -15
- data/test/deep_test/local_deployment_test.rb +19 -0
- data/test/deep_test/logger_test.rb +34 -7
- data/test/deep_test/main_test.rb +12 -0
- data/test/deep_test/marshallable_exception_wrapper_test.rb +31 -29
- data/test/deep_test/metrics/data_test.rb +22 -0
- data/test/deep_test/metrics/measurement_test.rb +18 -0
- data/test/deep_test/proxy_io_test.rb +104 -0
- data/test/deep_test/result_reader_test.rb +95 -95
- data/test/deep_test/test/extensions/error_test.rb +38 -36
- data/test/deep_test/test/runner_test.rb +7 -3
- data/test/deep_test/test/supervised_test_suite_test.rb +89 -61
- data/test/deep_test/test/work_result_test.rb +80 -76
- data/test/deep_test/test/work_unit_test.rb +53 -51
- data/test/deep_test/test_task_test.rb +10 -38
- data/test/deep_test/ui/console_test.rb +8 -4
- data/test/deep_test/warlock_test.rb +33 -31
- data/test/test_helper.rb +20 -5
- data/test/test_task_test.rb +60 -57
- metadata +94 -84
- data/bin/deep_test +0 -15
- data/jstorimer-deep-test-0.1.0.gem +0 -0
- data/jstorimer-deep-test.gemspec +0 -1425
- data/lib/deep_test/distributed/drb_client_connection_info.rb +0 -15
- data/lib/deep_test/distributed/master_test_server.rb +0 -52
- data/lib/deep_test/distributed/multi_test_server_proxy.rb +0 -44
- data/lib/deep_test/distributed/null_work_unit.rb +0 -12
- data/lib/deep_test/distributed/remote_worker_client.rb +0 -54
- data/lib/deep_test/distributed/remote_worker_server.rb +0 -82
- data/lib/deep_test/distributed/show_status.rhtml +0 -41
- data/lib/deep_test/distributed/test_server.rb +0 -78
- data/lib/deep_test/distributed/test_server_status.rb +0 -9
- data/lib/deep_test/distributed/test_server_workers.rb +0 -24
- data/lib/deep_test/distributed/throughput_runner.rb +0 -42
- data/lib/deep_test/distributed/throughput_statistics.rb +0 -26
- data/lib/deep_test/distributed/throughput_worker_client.rb +0 -19
- data/lib/deep_test/extensions/drb_extension.rb +0 -34
- data/lib/deep_test/local_workers.rb +0 -55
- data/lib/deep_test/metrics/gatherer.rb +0 -67
- data/lib/deep_test/metrics/queue_lock_wait_time_measurement.rb +0 -133
- data/lib/deep_test/option.rb +0 -60
- data/lib/deep_test/process_orchestrator.rb +0 -49
- data/lib/deep_test/server.rb +0 -75
- data/lib/deep_test/spec/extensions/reporter.rb +0 -29
- data/lib/deep_test/worker.rb +0 -57
- data/script/internal/run_test_suite.rb +0 -7
- data/script/public/master_test_server.rb +0 -24
- data/script/public/test_server.rb +0 -18
- data/script/public/test_throughput.rb +0 -29
- data/spec/deep_test/option_spec.rb +0 -33
- data/spec/thread_worker.rb +0 -25
- data/test/deep_test/distributed/drb_client_connection_info_test.rb +0 -42
- data/test/deep_test/distributed/master_test_server_test.rb +0 -32
- data/test/deep_test/distributed/multi_test_server_proxy_test.rb +0 -96
- data/test/deep_test/distributed/remote_worker_client_test.rb +0 -180
- data/test/deep_test/distributed/remote_worker_server_test.rb +0 -99
- data/test/deep_test/distributed/test_server_test.rb +0 -94
- data/test/deep_test/distributed/test_server_workers_test.rb +0 -26
- data/test/deep_test/distributed/throughput_runner_test.rb +0 -68
- data/test/deep_test/distributed/throughput_worker_client_test.rb +0 -28
- data/test/deep_test/local_workers_test.rb +0 -22
- data/test/deep_test/metrics/gatherer_test.rb +0 -66
- data/test/deep_test/process_orchestrator_test.rb +0 -11
- data/test/deep_test/server_test.rb +0 -58
- data/test/deep_test/worker_test.rb +0 -94
- data/test/failing.rake +0 -11
- data/test/simple_test_blackboard.rb +0 -45
- data/test/simple_test_blackboard_test.rb +0 -33
@@ -1,40 +1,42 @@
|
|
1
1
|
require File.dirname(__FILE__) + "/../../../test_helper"
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
error
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
3
|
+
module DeepTest
|
4
|
+
unit_tests do
|
5
|
+
test "make_exception_marshallable wraps exception in a mashallable exception" do
|
6
|
+
error = ::Test::Unit::Error.new "test_name", Exception.new("message")
|
7
|
+
error.make_exception_marshallable
|
8
|
+
|
9
|
+
assert_kind_of MarshallableExceptionWrapper, error.exception
|
10
|
+
end
|
11
|
+
|
12
|
+
test "calling make_exception_marshallable twice only wraps exception once" do
|
13
|
+
error = ::Test::Unit::Error.new "test_name", Exception.new("message")
|
14
|
+
error.make_exception_marshallable
|
15
|
+
error.make_exception_marshallable
|
16
|
+
|
17
|
+
assert_kind_of MarshallableExceptionWrapper, error.exception
|
18
|
+
end
|
19
|
+
|
20
|
+
test "error is accessible as normal when it has not been made marshallable" do
|
21
|
+
error = ::Test::Unit::Error.new "test_name", e = Exception.new("message")
|
22
|
+
assert_equal e, error.exception
|
23
|
+
end
|
24
|
+
|
25
|
+
test "resolve_marshallable_exception restores the original exception" do
|
26
|
+
error = ::Test::Unit::Error.new "test_name", Exception.new("message")
|
27
|
+
error.make_exception_marshallable
|
28
|
+
error.resolve_marshallable_exception
|
29
|
+
|
30
|
+
assert_kind_of Exception, error.exception
|
31
|
+
assert_equal 'message', error.exception.message
|
32
|
+
end
|
33
|
+
|
34
|
+
test "resolve_marshallable_exception does not fail when exception has not been made marshallable" do
|
35
|
+
error = ::Test::Unit::Error.new "test_name", Exception.new("message")
|
36
|
+
error.resolve_marshallable_exception
|
37
|
+
|
38
|
+
assert_kind_of Exception, error.exception
|
39
|
+
assert_equal 'message', error.exception.message
|
40
|
+
end
|
39
41
|
end
|
40
42
|
end
|
@@ -1,7 +1,11 @@
|
|
1
1
|
require File.dirname(__FILE__) + "/../../test_helper"
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
module DeepTest
|
4
|
+
module Test
|
5
|
+
unit_tests do
|
6
|
+
test "no filters constant has empty filters" do
|
7
|
+
assert_equal [], Runner::NO_FILTERS.filters
|
8
|
+
end
|
9
|
+
end
|
6
10
|
end
|
7
11
|
end
|
@@ -1,79 +1,107 @@
|
|
1
1
|
require File.dirname(__FILE__) + "/../../test_helper"
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
3
|
+
module DeepTest
|
4
|
+
module Test
|
5
|
+
unit_tests do
|
6
|
+
test "run yields name for start and finished of underlying suite" do
|
7
|
+
options = Options.new({})
|
8
|
+
suite = ::Test::Unit::TestSuite.new("name")
|
9
|
+
supervised_suite = SupervisedTestSuite.new(suite, TestCentralCommand.start(options))
|
10
|
+
|
11
|
+
yielded = []
|
12
|
+
supervised_suite.run(stub_everything) do |channel,name|
|
13
|
+
yielded << [channel,name]
|
14
|
+
end
|
15
|
+
|
16
|
+
assert_equal [[::Test::Unit::TestSuite::STARTED, "name"],
|
17
|
+
[::Test::Unit::TestSuite::FINISHED, "name"]], yielded
|
18
|
+
end
|
12
19
|
|
13
|
-
|
14
|
-
|
15
|
-
|
20
|
+
test "run adds tests to central_command and reads results" do
|
21
|
+
options = Options.new({})
|
22
|
+
class AddTestsTestCase < ::Test::Unit::TestCase
|
23
|
+
test("1") {}
|
24
|
+
test("2") {assert_equal true, false}
|
25
|
+
end
|
26
|
+
central_command = TestCentralCommand.start options
|
27
|
+
supervised_suite = SupervisedTestSuite.new(AddTestsTestCase.suite, central_command)
|
28
|
+
result = ::Test::Unit::TestResult.new
|
29
|
+
|
30
|
+
agent = ThreadAgent.new options
|
31
|
+
Timeout.timeout(5) do
|
32
|
+
supervised_suite.run(result) {}
|
33
|
+
end
|
34
|
+
central_command.done_with_work
|
35
|
+
agent.wait_until_done
|
36
|
+
|
37
|
+
assert_equal 2, result.run_count
|
38
|
+
assert_equal 1, result.failure_count
|
39
|
+
end
|
16
40
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
blackboard = DeepTest::SimpleTestBlackboard.new
|
23
|
-
supervised_suite = DeepTest::Test::SupervisedTestSuite.new(test_case_class.suite, blackboard)
|
24
|
-
result = Test::Unit::TestResult.new
|
41
|
+
test "agent errors are counted as errors" do
|
42
|
+
options = Options.new({})
|
43
|
+
class AgentErrorTestCase < ::Test::Unit::TestCase
|
44
|
+
test("1") {}
|
45
|
+
end
|
25
46
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
end
|
30
|
-
worker.wait_until_done
|
47
|
+
central_command = TestCentralCommand.start options
|
48
|
+
supervised_suite = SupervisedTestSuite.new(AgentErrorTestCase.suite, central_command)
|
49
|
+
result = ::Test::Unit::TestResult.new
|
31
50
|
|
32
|
-
|
33
|
-
|
34
|
-
|
51
|
+
central_command.write_result Agent::Error.new(AgentErrorTestCase.new("test_1"), RuntimeError.new)
|
52
|
+
capture_stdout {supervised_suite.run(result) {}}
|
53
|
+
|
54
|
+
assert_equal 1, result.error_count
|
55
|
+
end
|
35
56
|
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
57
|
+
test "multiple agent errors are consolidated to be one error" do
|
58
|
+
options = Options.new({})
|
59
|
+
class MultipleAgentErrorTestCase < ::Test::Unit::TestCase
|
60
|
+
test("1") {}; test("2") {}
|
61
|
+
end
|
62
|
+
central_command = TestCentralCommand.start options
|
63
|
+
supervised_suite = SupervisedTestSuite.new(MultipleAgentErrorTestCase.suite, central_command)
|
64
|
+
result = ::Test::Unit::TestResult.new
|
40
65
|
|
41
|
-
|
42
|
-
|
43
|
-
|
66
|
+
central_command.write_result Agent::Error.new(MultipleAgentErrorTestCase.new("test_1"), RuntimeError.new)
|
67
|
+
central_command.write_result Agent::Error.new(MultipleAgentErrorTestCase.new("test_2"), RuntimeError.new)
|
68
|
+
capture_stdout {supervised_suite.run(result) {}}
|
44
69
|
|
45
|
-
|
46
|
-
|
70
|
+
assert_equal 1, result.error_count
|
71
|
+
end
|
47
72
|
|
48
|
-
|
49
|
-
|
73
|
+
test "run yields test case finished events" do
|
74
|
+
options = Options.new({})
|
75
|
+
class RunYieldsTestCase < ::Test::Unit::TestCase
|
76
|
+
test("1") {}
|
77
|
+
end
|
78
|
+
test_case = RunYieldsTestCase.new("test_1")
|
50
79
|
|
51
|
-
|
52
|
-
|
53
|
-
test("1") {}
|
54
|
-
end.new("test_1")
|
80
|
+
central_command = TestCentralCommand.start options
|
81
|
+
supervised_suite = SupervisedTestSuite.new(test_case, central_command)
|
55
82
|
|
56
|
-
|
57
|
-
supervised_suite = DeepTest::Test::SupervisedTestSuite.new(test_case, blackboard)
|
83
|
+
yielded = []
|
58
84
|
|
59
|
-
|
85
|
+
agent = ThreadAgent.new options
|
86
|
+
Timeout.timeout(5) do
|
87
|
+
supervised_suite.run(stub_everything) do |channel,name|
|
88
|
+
yielded << [channel, name]
|
89
|
+
end
|
90
|
+
end
|
91
|
+
central_command.done_with_work
|
92
|
+
agent.wait_until_done
|
60
93
|
|
61
|
-
|
62
|
-
Timeout.timeout(5) do
|
63
|
-
supervised_suite.run(stub_everything) do |channel,name|
|
64
|
-
yielded << [channel, name]
|
94
|
+
assert_equal true, yielded.include?([::Test::Unit::TestCase::FINISHED, test_case.name])
|
65
95
|
end
|
66
|
-
end
|
67
|
-
worker.wait_until_done
|
68
96
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
97
|
+
test "has same size as underlying suite" do
|
98
|
+
options = Options.new({})
|
99
|
+
suite = ::Test::Unit::TestSuite.new("name")
|
100
|
+
suite << "test"
|
101
|
+
supervised_suite = SupervisedTestSuite.new(suite, TestCentralCommand.start(options))
|
102
|
+
|
103
|
+
assert_equal suite.size, supervised_suite.size
|
104
|
+
end
|
105
|
+
end
|
78
106
|
end
|
79
107
|
end
|
@@ -1,81 +1,85 @@
|
|
1
1
|
require File.dirname(__FILE__) + "/../../test_helper"
|
2
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
|
-
|
3
|
+
module DeepTest
|
4
|
+
module Test
|
5
|
+
unit_tests do
|
6
|
+
test "add_to adds correct run_count" do
|
7
|
+
result_1 = WorkResult.new "test_name"
|
8
|
+
result_1.add_run
|
9
|
+
result_1.add_run
|
10
|
+
|
11
|
+
result_2 = ::Test::Unit::TestResult.new
|
12
|
+
result_1.add_to result_2
|
13
|
+
|
14
|
+
assert_equal 2, result_2.run_count
|
15
|
+
end
|
16
|
+
|
17
|
+
test "add_to adds correct assertion_count" do
|
18
|
+
result_1 = WorkResult.new "test_name"
|
19
|
+
result_1.add_assertion
|
20
|
+
result_1.add_assertion
|
21
|
+
|
22
|
+
result_2 = ::Test::Unit::TestResult.new
|
23
|
+
result_1.add_to result_2
|
24
|
+
|
25
|
+
assert_equal 2, result_2.assertion_count
|
26
|
+
end
|
27
|
+
|
28
|
+
test "add_to adds correct errors" do
|
29
|
+
result_1 = WorkResult.new "test_name"
|
30
|
+
result_1.add_error(e = ::Test::Unit::Error.new("test_name", Exception.new))
|
31
|
+
|
32
|
+
result_2 = ::Test::Unit::TestResult.new
|
33
|
+
result_1.add_to result_2
|
34
|
+
|
35
|
+
assert_equal [e], result_2.instance_variable_get(:@errors)
|
36
|
+
end
|
37
|
+
|
38
|
+
|
39
|
+
test "add_to adds correct failures" do
|
40
|
+
result_1 = WorkResult.new "test_name"
|
41
|
+
result_1.add_failure(:failure)
|
42
|
+
|
43
|
+
result_2 = ::Test::Unit::TestResult.new
|
44
|
+
result_1.add_to result_2
|
45
|
+
|
46
|
+
assert_equal [:failure], result_2.instance_variable_get(:@failures)
|
47
|
+
end
|
48
|
+
|
49
|
+
test "add_error wraps exceptions" do
|
50
|
+
result = WorkResult.new "test_name"
|
51
|
+
result.add_error ::Test::Unit::Error.new(
|
52
|
+
"test_wraps_exceptions",
|
53
|
+
SomeCustomException.new("the exception message")
|
54
|
+
)
|
55
|
+
|
56
|
+
error = result.instance_variable_get("@errors").last
|
57
|
+
assert_kind_of MarshallableExceptionWrapper, error.exception
|
58
|
+
end
|
59
|
+
|
60
|
+
test "add_to unwraps exception" do
|
61
|
+
work_result = WorkResult.new "test_name"
|
62
|
+
work_result.add_error ::Test::Unit::Error.new(
|
63
|
+
"test_wraps_exceptions",
|
64
|
+
SomeCustomException.new("the exception message")
|
65
|
+
)
|
66
|
+
|
67
|
+
test_result = ::Test::Unit::TestResult.new
|
68
|
+
work_result.add_to(test_result)
|
69
|
+
|
70
|
+
error = test_result.instance_variable_get("@errors").last
|
71
|
+
assert_kind_of SomeCustomException, error.exception
|
72
|
+
end
|
73
|
+
|
74
|
+
test "failed due to deadlock" do
|
75
|
+
result = WorkResult.new "test_name"
|
76
|
+
begin
|
77
|
+
raise FakeDeadlockError.new
|
78
|
+
rescue => ex
|
79
|
+
result.add_error ::Test::Unit::Error.new("test_", ex)
|
80
|
+
end
|
81
|
+
assert_equal true, result.failed_due_to_deadlock?
|
82
|
+
end
|
78
83
|
end
|
79
|
-
assert_equal true, result.failed_due_to_deadlock?
|
80
84
|
end
|
81
85
|
end
|
@@ -1,61 +1,63 @@
|
|
1
1
|
require File.dirname(__FILE__) + "/../../test_helper"
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
3
|
+
module DeepTest
|
4
|
+
module Test
|
5
|
+
unit_tests do
|
6
|
+
test "returns passed result for passing test" do
|
7
|
+
work_unit = WorkUnit.new TestFactory.passing_test
|
8
|
+
assert_equal true, work_unit.run.passed?
|
9
|
+
end
|
8
10
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
11
|
+
test "returns failed result for failing test" do
|
12
|
+
work_unit = WorkUnit.new TestFactory.failing_test
|
13
|
+
assert_equal false, work_unit.run.passed?
|
14
|
+
end
|
13
15
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
16
|
+
test "returns result with identifier of test name" do
|
17
|
+
test = TestFactory.passing_test
|
18
|
+
work_unit = WorkUnit.new test
|
19
|
+
assert_equal test.name, work_unit.run.identifier
|
20
|
+
end
|
19
21
|
|
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
|
-
|
22
|
+
test "capturing stdout" do
|
23
|
+
work_unit = WorkUnit.new TestFactory.passing_test_with_stdout
|
24
|
+
assert_equal "message printed to stdout", work_unit.run.output
|
25
|
+
end
|
26
|
+
|
27
|
+
test "retry on deadlock" do
|
28
|
+
work_unit = WorkUnit.new TestFactory.deadlock_once_test
|
29
|
+
result = work_unit.run
|
30
|
+
assert_equal 0, result.error_count
|
31
|
+
assert_equal 0, result.failure_count
|
32
|
+
assert_equal 1, result.assertion_count
|
33
|
+
end
|
34
|
+
|
35
|
+
test "skip on deadlock twice" do
|
36
|
+
work_unit = WorkUnit.new TestFactory.deadlock_always_test
|
37
|
+
result = work_unit.run
|
38
|
+
assert_equal 0, result.error_count
|
39
|
+
assert_equal 0, result.failure_count
|
40
|
+
assert_equal 0, result.assertion_count
|
41
|
+
end
|
42
|
+
|
43
|
+
test "set test_name as identifier on deadlock" do
|
44
|
+
test = TestFactory.deadlock_always_test
|
45
|
+
work_unit = WorkUnit.new test
|
46
|
+
assert_equal test.name, work_unit.run.identifier
|
47
|
+
end
|
46
48
|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
DeepTest::Test::WorkUnit.new(test_case_1)
|
49
|
+
test "equality is based on test_case" do
|
50
|
+
test_case_1 = TestFactory.passing_test
|
51
|
+
test_case_2 = TestFactory.failing_test
|
52
|
+
assert_equal WorkUnit.new(test_case_1), WorkUnit.new(test_case_1)
|
52
53
|
|
53
|
-
|
54
|
-
|
55
|
-
end
|
54
|
+
assert_not_equal WorkUnit.new(test_case_1), WorkUnit.new(test_case_2)
|
55
|
+
end
|
56
56
|
|
57
|
-
|
58
|
-
|
59
|
-
|
57
|
+
test "to_s is delegated to test case" do
|
58
|
+
test_case = TestFactory.passing_test
|
59
|
+
assert_equal test_case.to_s, WorkUnit.new(test_case).to_s
|
60
|
+
end
|
61
|
+
end
|
60
62
|
end
|
61
63
|
end
|