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-02-16 21:13:51 +00:00
|
|
|
# avoid having other tests interfering with us
|
2010-02-18 18:11:00 +00:00
|
|
|
sleep(0.2)
|
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-02-17 21:28:32 +00:00
|
|
|
|
2010-08-28 02:35:11 +00:00
|
|
|
# this test simulates what happens when we have 2 tests with the same
|
|
|
|
# class name but with different parent classes. This can happen when
|
|
|
|
# we have a functional and an integration test class with the same name.
|
|
|
|
should "run even with a test that is invalidwill not require" do
|
|
|
|
sync_test = File.join(File.dirname(__FILE__), 'fixtures', 'sync_test.rb')
|
|
|
|
Hydra::Master.new(
|
|
|
|
# we want the actual test to run last to make sure the runner can still run tests
|
|
|
|
:files => [sync_test, conflicting_test_file, test_file],
|
|
|
|
:autosort => false
|
|
|
|
)
|
|
|
|
assert File.exists?(target_file)
|
|
|
|
assert_equal "HYDRA", File.read(target_file)
|
|
|
|
end
|
|
|
|
|
2010-04-20 10:33:28 +00:00
|
|
|
should "run a spec with pending examples" do
|
|
|
|
progress_bar = Hydra::Listener::ProgressBar.new(StringIO.new)
|
|
|
|
Hydra::Master.new(
|
|
|
|
:files => [rspec_file_with_pending],
|
|
|
|
:listeners => [progress_bar]
|
|
|
|
)
|
|
|
|
assert File.exists?(target_file)
|
|
|
|
assert_equal "HYDRA", File.read(target_file)
|
|
|
|
assert_equal false, progress_bar.instance_variable_get('@errors')
|
|
|
|
end
|
|
|
|
|
2010-02-17 21:28:32 +00:00
|
|
|
should "generate a report" do
|
2010-03-25 16:15:01 +00:00
|
|
|
Hydra::Master.new(:files => [test_file])
|
2010-02-17 21:28:32 +00:00
|
|
|
assert File.exists?(target_file)
|
|
|
|
assert_equal "HYDRA", File.read(target_file)
|
2010-06-09 18:24:32 +00:00
|
|
|
report_file = File.join(Dir.consistent_tmpdir, 'hydra_heuristics.yml')
|
2010-02-17 21:28:32 +00:00
|
|
|
assert File.exists?(report_file)
|
2010-03-25 16:15:01 +00:00
|
|
|
assert report = YAML.load_file(report_file)
|
|
|
|
assert_not_nil report[test_file]
|
2010-02-17 21:28:32 +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,
|
2010-02-04 15:33:21 +00:00
|
|
|
:workers => [ { :type => :local, :runners => 2 } ]
|
2010-01-29 20:26:32 +00:00
|
|
|
)
|
|
|
|
assert File.exists?(target_file)
|
|
|
|
assert_equal "HYDRA"*6, File.read(target_file)
|
|
|
|
end
|
|
|
|
|
2010-02-04 16:18:06 +00:00
|
|
|
# The test being run sleeps for 5 seconds. So, if this was run in
|
|
|
|
# series, it would take at least 50 seconds. This test ensures that
|
2010-01-29 20:26:32 +00:00
|
|
|
# in runs in less than that amount of time. Since there are 10
|
2010-02-04 16:18:06 +00:00
|
|
|
# runners to run the file 10 times, it should only take 5-10 seconds
|
2010-01-29 20:26:32 +00:00
|
|
|
# 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
|
2010-02-04 16:18:06 +00:00
|
|
|
assert (finish-start) < 30, "took #{finish-start} seconds"
|
2010-01-29 20:27:48 +00:00
|
|
|
end
|
2010-01-29 20:26:32 +00:00
|
|
|
|
2010-01-29 20:27:48 +00:00
|
|
|
should "run a slow test 10 times on 2 workers with 5 runners each quickly" do
|
|
|
|
start = Time.now
|
|
|
|
Hydra::Master.new(
|
|
|
|
:files => [File.join(File.dirname(__FILE__), 'fixtures', 'slow.rb')]*10,
|
|
|
|
:workers => [
|
|
|
|
{ :type => :local, :runners => 5 },
|
|
|
|
{ :type => :local, :runners => 5 }
|
|
|
|
]
|
|
|
|
)
|
|
|
|
finish = Time.now
|
2010-01-29 20:26:32 +00:00
|
|
|
assert (finish-start) < 15, "took #{finish-start} seconds"
|
|
|
|
end
|
2010-01-29 22:21:48 +00:00
|
|
|
|
|
|
|
should "run a test via ssh" do
|
|
|
|
Hydra::Master.new(
|
|
|
|
:files => [test_file],
|
|
|
|
:workers => [{
|
|
|
|
:type => :ssh,
|
|
|
|
:connect => 'localhost',
|
2010-02-03 21:03:16 +00:00
|
|
|
:directory => File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')),
|
2010-01-29 22:21:48 +00:00
|
|
|
:runners => 1
|
2010-02-03 21:03:16 +00:00
|
|
|
}]
|
2010-01-29 22:21:48 +00:00
|
|
|
)
|
|
|
|
assert File.exists?(target_file)
|
|
|
|
assert_equal "HYDRA", File.read(target_file)
|
|
|
|
end
|
2010-02-04 15:33:21 +00:00
|
|
|
|
|
|
|
should "run a test with config from a yaml file" do
|
|
|
|
Hydra::Master.new(
|
|
|
|
:files => [test_file],
|
|
|
|
:config => File.join(File.dirname(__FILE__), 'fixtures', 'config.yml')
|
|
|
|
)
|
|
|
|
assert File.exists?(target_file)
|
|
|
|
assert_equal "HYDRA", File.read(target_file)
|
|
|
|
end
|
2010-02-09 20:40:35 +00:00
|
|
|
|
|
|
|
should "synchronize a test file over ssh with rsync" do
|
2010-06-09 18:24:32 +00:00
|
|
|
local = File.join(Dir.consistent_tmpdir, 'hydra', 'local')
|
|
|
|
remote = File.join(Dir.consistent_tmpdir, 'hydra', 'remote')
|
2010-02-09 20:40:35 +00:00
|
|
|
sync_test = File.join(File.dirname(__FILE__), 'fixtures', 'sync_test.rb')
|
|
|
|
[local, remote].each{|f| FileUtils.rm_rf f; FileUtils.mkdir_p f}
|
|
|
|
|
|
|
|
# setup the folders:
|
|
|
|
# local:
|
|
|
|
# - test_a
|
|
|
|
# - test_c
|
|
|
|
# remote:
|
|
|
|
# - test_b
|
|
|
|
#
|
|
|
|
# add test_c to exludes
|
|
|
|
FileUtils.cp(sync_test, File.join(local, 'test_a.rb'))
|
|
|
|
FileUtils.cp(sync_test, File.join(local, 'test_c.rb'))
|
|
|
|
FileUtils.cp(sync_test, File.join(remote, 'test_b.rb'))
|
|
|
|
|
|
|
|
# ensure a is not on remote
|
|
|
|
assert !File.exists?(File.join(remote, 'test_a.rb')), "A should not be on remote"
|
|
|
|
# ensure c is not on remote
|
|
|
|
assert !File.exists?(File.join(remote, 'test_c.rb')), "C should not be on remote"
|
|
|
|
# ensure b is on remote
|
|
|
|
assert File.exists?(File.join(remote, 'test_b.rb')), "B should be on remote"
|
|
|
|
|
|
|
|
Hydra::Master.new(
|
|
|
|
:files => ['test_a.rb'],
|
|
|
|
:workers => [{
|
|
|
|
:type => :ssh,
|
|
|
|
:connect => 'localhost',
|
|
|
|
:directory => remote,
|
2010-03-25 16:15:01 +00:00
|
|
|
:runners => 1
|
2010-02-09 20:40:35 +00:00
|
|
|
}],
|
|
|
|
:sync => {
|
|
|
|
:directory => local,
|
|
|
|
:exclude => ['test_c.rb']
|
|
|
|
}
|
|
|
|
)
|
|
|
|
# ensure a is copied
|
|
|
|
assert File.exists?(File.join(remote, 'test_a.rb')), "A was not copied"
|
|
|
|
# ensure c is not copied
|
|
|
|
assert !File.exists?(File.join(remote, 'test_c.rb')), "C was copied, should be excluded"
|
|
|
|
# ensure b is deleted
|
|
|
|
assert !File.exists?(File.join(remote, 'test_b.rb')), "B was not deleted"
|
|
|
|
end
|
2010-01-29 16:45:42 +00:00
|
|
|
end
|
|
|
|
end
|