2013-03-30 22:18:05 +00:00
|
|
|
require 'unit_helper'
|
|
|
|
|
|
|
|
require 'vagrant-lxc/action/compress_rootfs'
|
|
|
|
|
|
|
|
describe Vagrant::LXC::Action::CompressRootFS do
|
2013-07-13 16:41:39 +00:00
|
|
|
let(:app) { double(:app, call: true) }
|
|
|
|
let(:env) { {machine: machine, ui: double(info: true)} }
|
2013-07-13 16:33:09 +00:00
|
|
|
let(:machine) { instance_double('Vagrant::Machine', provider: provider) }
|
|
|
|
let(:provider) { instance_double('Vagrant::LXC::Provider', driver: driver) }
|
|
|
|
let(:driver) { instance_double('Vagrant::LXC::Driver', compress_rootfs: compressed_rootfs_path) }
|
2013-03-30 22:18:05 +00:00
|
|
|
let(:compressed_rootfs_path) { '/path/to/rootfs.tar.gz' }
|
|
|
|
|
|
|
|
subject { described_class.new(app, env) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
provider.stub_chain(:state, :id).and_return(:stopped)
|
|
|
|
subject.call(env)
|
|
|
|
end
|
|
|
|
|
2013-04-05 05:23:30 +00:00
|
|
|
it "asks the driver to compress container's rootfs" do
|
|
|
|
driver.should have_received(:compress_rootfs)
|
2013-03-30 22:18:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets export.temp_dir on action env' do
|
|
|
|
env['package.rootfs'].should == compressed_rootfs_path
|
|
|
|
end
|
|
|
|
end
|