require 'spec_helper' describe_provider :vcsrepo, :svn, :resource => {:path => '/tmp/vcsrepo'} do describe 'creating' do resource_with :source do resource_with :revision do it "should execute 'svn checkout' with a revision" do provider.expects(:svn).with('--non-interactive', 'checkout', '-r', resource.value(:revision), resource.value(:source), resource.value(:path)) provider.create end end resource_without :revision do it "should just execute 'svn checkout' without a revision" do provider.expects(:svn).with('--non-interactive', 'checkout', resource.value(:source), resource.value(:path)) provider.create end end end resource_without :source do resource_with :fstype do it "should execute 'svnadmin create' with an '--fs-type' option" do provider.expects(:svnadmin).with('create', '--fs-type', resource.value(:fstype), resource.value(:path)) provider.create end end resource_without :fstype do it "should execute 'svnadmin create' without an '--fs-type' option" do provider.expects(:svnadmin).with('create', resource.value(:path)) provider.create end end end end describe 'destroying' do it "it should remove the directory" do expects_rm_rf provider.destroy end end describe "checking existence" do it "should check for the directory" do expects_directory?(true, resource.value(:path)) expects_directory?(true, File.join(resource.value(:path), '.svn')) provider.exists? end end describe "checking the revision property" do before do provider.expects(:svn).with('--non-interactive', 'info').returns(fixture(:svn_info)) end it "should use 'svn info'" do expects_chdir provider.revision.should == '4' # From 'Revision', not 'Last Changed Rev' end end describe "setting the revision property" do before do @revision = '30' end resource_without :source do it "should use 'svn update'" do expects_chdir provider.expects(:svn).with('--non-interactive', 'update', '-r', @revision) provider.revision = @revision end end end describe "setting the revision property and repo source" do before do @revision = '30' end resource_with :source do it "should use 'svn switch'" do expects_chdir provider.expects(:svn).with('--non-interactive', 'switch', '-r', @revision, 'an-unimportant-value') provider.revision = @revision end end end end