175 lines
5.2 KiB
Ruby
175 lines
5.2 KiB
Ruby
require File.join(File.dirname(__FILE__), '..', '..', 'test_helper')
|
|
|
|
class LinuxSystemTest < Test::Unit::TestCase
|
|
setup do
|
|
@klass = Vagrant::Systems::Linux
|
|
@ssh = mock("ssh")
|
|
@mock_env = mock_environment
|
|
@vm = mock("vm")
|
|
@vm.stubs(:env).returns(@mock_env)
|
|
@instance = @klass.new(@vm)
|
|
end
|
|
|
|
context "halting" do
|
|
setup do
|
|
@ssh_session = mock("ssh_session")
|
|
@ssh.stubs(:execute).yields(@ssh_session)
|
|
@vm.stubs(:ssh).returns(@ssh)
|
|
|
|
@real_vm = mock("real_vm")
|
|
@real_vm.stubs(:state).returns(:powered_off)
|
|
@vm.stubs(:vm).returns(@real_vm)
|
|
end
|
|
|
|
should "execute halt via SSH" do
|
|
@ssh_session.expects(:exec!).with("sudo halt").once
|
|
@instance.halt
|
|
end
|
|
end
|
|
|
|
context "mounting shared folders" do
|
|
setup do
|
|
@name = "foo"
|
|
@guestpath = "/bar"
|
|
end
|
|
|
|
should "create the dir, mount the folder, then set permissions" do
|
|
mount_seq = sequence("mount_seq")
|
|
@ssh.expects(:exec!).with("sudo mkdir -p #{@guestpath}").in_sequence(mount_seq)
|
|
@instance.expects(:mount_folder).with(@ssh, @name, @guestpath).in_sequence(mount_seq)
|
|
@ssh.expects(:exec!).with("sudo chown #{@vm.env.config.ssh.username} #{@guestpath}").in_sequence(mount_seq)
|
|
|
|
@instance.mount_shared_folder(@ssh, @name, @guestpath)
|
|
end
|
|
end
|
|
|
|
context "preparing rsync" do
|
|
setup do
|
|
@ssh.stubs(:exec!)
|
|
@vm.stubs(:ssh).returns(@ssh)
|
|
@vm.ssh.stubs(:upload!)
|
|
end
|
|
|
|
should "upload the rsync template" do
|
|
@vm.ssh.expects(:upload!).with do |string_io, guest_path|
|
|
string_io.string =~ /#!\/bin\/sh/ && guest_path == @mock_env.config.vm.rsync_script
|
|
end
|
|
|
|
@instance.prepare_rsync(@ssh)
|
|
end
|
|
|
|
should "remove old crontab entries file" do
|
|
@ssh.expects(:exec!).with("sudo rm #{@mock_env.config.vm.rsync_crontab_entry_file}")
|
|
@instance.prepare_rsync(@ssh)
|
|
end
|
|
|
|
should "prepare the rsync template for execution" do
|
|
@ssh.expects(:exec!).with("sudo chmod +x #{@mock_env.config.vm.rsync_script}")
|
|
@instance.prepare_rsync(@ssh)
|
|
end
|
|
end
|
|
|
|
context "setting up an rsync folder" do
|
|
setup do
|
|
@ssh.stubs(:exec!)
|
|
end
|
|
|
|
should "create the new rysnc destination directory" do
|
|
rsync_path = 'foo'
|
|
@ssh.expects(:exec!).with("sudo mkdir -p #{rsync_path}")
|
|
@instance.create_rsync(@ssh, :rsyncpath => "foo")
|
|
end
|
|
|
|
should "add an entry to the crontab file" do
|
|
@instance.expects(:render_crontab_entry).returns('foo')
|
|
@ssh.expects(:exec!).with do |cmd|
|
|
cmd =~ /echo/ && cmd =~ /foo/ && cmd =~ /#{@mock_env.config.vm.rsync_crontab_entry_file}/
|
|
end
|
|
@instance.create_rsync(@ssh, {})
|
|
end
|
|
|
|
should "use the crontab entry file to define vagrant users cron entries" do
|
|
@ssh.expects(:exec!).with("crontab #{@mock_env.config.vm.rsync_crontab_entry_file}")
|
|
@instance.create_rsync(@ssh, {})
|
|
end
|
|
|
|
should "chown the rsync directory" do
|
|
@instance.expects(:chown).with(@ssh, "foo")
|
|
@instance.create_rsync(@ssh, :rsyncpath => "foo")
|
|
end
|
|
|
|
should "return provide a formatted crontab entry that runs every minute" do
|
|
assert @instance.render_crontab_entry({}).include?("* * * * *")
|
|
end
|
|
end
|
|
|
|
#-------------------------------------------------------------------
|
|
# "Private" methods tests
|
|
#-------------------------------------------------------------------
|
|
context "mounting the main folder" do
|
|
setup do
|
|
@name = "foo"
|
|
@guestpath = "bar"
|
|
@sleeptime = 0
|
|
@limit = 10
|
|
|
|
@success_return = false
|
|
end
|
|
|
|
def mount_folder
|
|
@instance.mount_folder(@ssh, @name, @guestpath, @sleeptime)
|
|
end
|
|
|
|
should "execute the proper mount command" do
|
|
@ssh.expects(:exec!).with("sudo mount -t vboxsf -o uid=#{@vm.env.config.ssh.username},gid=#{@vm.env.config.ssh.username} #{@name} #{@guestpath}").returns(@success_return)
|
|
mount_folder
|
|
end
|
|
|
|
should "test type of text and text string to detect error" do
|
|
data = mock("data")
|
|
data.expects(:[]=).with(:result, !@success_return)
|
|
|
|
@ssh.expects(:exec!).yields(data, :stderr, "No such device").returns(@success_return)
|
|
mount_folder
|
|
end
|
|
|
|
should "test type of text and test string to detect success" do
|
|
data = mock("data")
|
|
data.expects(:[]=).with(:result, @success_return)
|
|
|
|
@ssh.expects(:exec!).yields(data, :stdout, "Nothing such device").returns(@success_return)
|
|
mount_folder
|
|
end
|
|
|
|
should "raise an ActionException if the command fails constantly" do
|
|
@ssh.expects(:exec!).times(@limit).returns(!@success_return)
|
|
|
|
assert_raises(Vagrant::Actions::ActionException) {
|
|
mount_folder
|
|
}
|
|
end
|
|
|
|
should "not raise any exception if the command succeeded" do
|
|
@ssh.expects(:exec!).once.returns(@success_return)
|
|
|
|
assert_nothing_raised {
|
|
mount_folder
|
|
}
|
|
end
|
|
|
|
should "add uid AND gid to mount" do
|
|
uid = "foo"
|
|
gid = "bar"
|
|
env = mock_environment do |config|
|
|
config.vm.shared_folder_uid = uid
|
|
config.vm.shared_folder_gid = gid
|
|
end
|
|
|
|
@vm.stubs(:env).returns(env)
|
|
|
|
@ssh.expects(:exec!).with("sudo mount -t vboxsf -o uid=#{uid},gid=#{gid} #{@name} #{@guestpath}").returns(@success_return)
|
|
mount_folder
|
|
end
|
|
end
|
|
end
|