2010-01-29 16:45:42 +00:00
|
|
|
require File.join(File.dirname(__FILE__), 'test_helper')
|
|
|
|
|
|
|
|
class MasterTest < Test::Unit::TestCase
|
|
|
|
context "with a file to test and a destination to verify" do
|
|
|
|
setup do
|
2010-01-29 19:56:02 +00:00
|
|
|
FileUtils.rm_f(target_file)
|
2010-01-29 16:45:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
teardown do
|
2010-01-29 19:56:02 +00:00
|
|
|
FileUtils.rm_f(target_file)
|
2010-01-29 16:45:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
should "run a test" do
|
2010-01-29 20:26:32 +00:00
|
|
|
Hydra::Master.new(
|
|
|
|
:files => [test_file]
|
|
|
|
)
|
2010-01-29 19:56:02 +00:00
|
|
|
assert File.exists?(target_file)
|
|
|
|
assert_equal "HYDRA", File.read(target_file)
|
2010-01-29 16:45:42 +00:00
|
|
|
end
|
2010-01-29 20:26:32 +00:00
|
|
|
|
|
|
|
should "run a test 6 times on 1 worker with 2 runners" do
|
|
|
|
Hydra::Master.new(
|
|
|
|
:files => [test_file]*6,
|
|
|
|
:local => {
|
|
|
|
:runners => 2
|
|
|
|
}
|
|
|
|
)
|
|
|
|
assert File.exists?(target_file)
|
|
|
|
assert_equal "HYDRA"*6, File.read(target_file)
|
|
|
|
end
|
|
|
|
|
|
|
|
# The test being run sleeps for 2 seconds. So, if this was run in
|
|
|
|
# series, it would take at least 20 seconds. This test ensures that
|
|
|
|
# in runs in less than that amount of time. Since there are 10
|
|
|
|
# runners to run the file 10 times, it should only take 2-4 seconds
|
|
|
|
# based on overhead.
|
|
|
|
should "run a slow test 10 times on 1 worker with 10 runners quickly" do
|
|
|
|
start = Time.now
|
|
|
|
Hydra::Master.new(
|
|
|
|
:files => [File.join(File.dirname(__FILE__), 'fixtures', 'slow.rb')]*10,
|
|
|
|
:workers => [
|
|
|
|
{ :type => :local, :runners => 10 }
|
|
|
|
]
|
|
|
|
)
|
|
|
|
finish = Time.now
|
|
|
|
|
|
|
|
assert (finish-start) < 15, "took #{finish-start} seconds"
|
|
|
|
end
|
2010-01-29 16:45:42 +00:00
|
|
|
end
|
|
|
|
end
|