Subversion to use provider example group API for specs

This commit is contained in:
Bruce Williams 2010-03-18 01:02:02 -07:00
parent dfb28337ce
commit af86e9ba81
10 changed files with 62 additions and 89 deletions

View File

@ -20,7 +20,7 @@ Puppet::Type.type(:vcsrepo).provide(:svn, :parent => Puppet::Provider::Vcsrepo)
end end
def exists? def exists?
File.directory?(@resource.value(:path)) File.directory?(File.join(@resource.value(:path), '.svn'))
end end
def destroy def destroy

View File

@ -4,7 +4,7 @@ $LOAD_PATH.unshift(dir, dir + 'lib', dir + '../lib')
require 'mocha' require 'mocha'
require 'puppet' require 'puppet'
gem 'rspec', '=1.2.9' gem 'rspec', '>= 1.2.9'
require 'spec/autorun' require 'spec/autorun'
Dir[File.join(File.dirname(__FILE__), 'support', '*.rb')].each do |support_file| Dir[File.join(File.dirname(__FILE__), 'support', '*.rb')].each do |support_file|
@ -14,7 +14,7 @@ end
Spec::Runner.configure do |config| Spec::Runner.configure do |config|
config.mock_with :mocha config.mock_with :mocha
config.include(FixtureHelpers) config.include(FixtureHelpers)
config.include(VcsrepoHelpers) config.include(FilesystemHelpers)
end end
# We need this because the RAL uses 'should' as a method. This # We need this because the RAL uses 'should' as a method. This

View File

@ -1,7 +0,0 @@
module ProviderSubject
def provider
subject
end
end

View File

@ -13,10 +13,6 @@ class ProviderExampleGroup < Spec::Example::ExampleGroup
subject { described_class.new(@resource) } subject { described_class.new(@resource) }
alias :provider :subject alias :provider :subject
def _(name)
resource.value(name)
end
class << self class << self
def field(field, &block) def field(field, &block)

View File

@ -1,11 +0,0 @@
module VcsrepoHelpers
def expects_chdir(path = resource.value(:path))
Dir.expects(:chdir).with(path).at_least_once.yields
end
def expects_mkdir(path = resource.value(:path))
Dir.expects(:mkdir).with(path).at_least_once
end
end

View File

@ -27,14 +27,14 @@ describe_provider :vcsrepo, :bzr, :resource => {:path => '/tmp/vcsrepo'} do
describe 'destroying' do describe 'destroying' do
it "it should remove the directory" do it "it should remove the directory" do
FileUtils.expects(:rm_rf).with(resource.value(:path)) expects_rm_rf
provider.destroy provider.destroy
end end
end end
describe "checking existence" do describe "checking existence" do
it "should check for the directory" do it "should check for the directory" do
File.expects(:directory?).with(File.join(resource.value(:path), '.bzr')) expects_directory?(true, File.join(resource.value(:path), '.bzr'))
provider.exists? provider.exists?
end end
end end

View File

@ -39,7 +39,7 @@ describe_provider :vcsrepo, :cvs, :resource => {:path => '/tmp/vcsrepo'} do
describe 'destroying' do describe 'destroying' do
it "it should remove the directory" do it "it should remove the directory" do
FileUtils.expects(:rm_rf).with(resource.value(:path)) expects_rm_rf
provider.destroy provider.destroy
end end
end end

View File

@ -45,8 +45,8 @@ describe_provider :vcsrepo, :git, :resource => {:path => '/tmp/vcsrepo'} do
it "should execute 'git init'" do it "should execute 'git init'" do
expects_mkdir expects_mkdir
expects_chdir expects_chdir
expects_directory?(false)
provider.expects(:bare_exists?).returns(false) provider.expects(:bare_exists?).returns(false)
File.expects(:directory?).with(resource.value(:path)).returns(false)
provider.expects(:git).with('init') provider.expects(:git).with('init')
provider.create provider.create
end end
@ -62,7 +62,7 @@ describe_provider :vcsrepo, :git, :resource => {:path => '/tmp/vcsrepo'} do
context "when the path is not a repository" do context "when the path is not a repository" do
it "should raise an exception" do it "should raise an exception" do
File.expects(:directory?).with(resource.value(:path)).returns(true) expects_directory?(true)
provider.expects(:bare_exists?).returns(false) provider.expects(:bare_exists?).returns(false)
proc { provider.create }.should raise_error(Puppet::Error) proc { provider.create }.should raise_error(Puppet::Error)
end end
@ -74,7 +74,7 @@ describe_provider :vcsrepo, :git, :resource => {:path => '/tmp/vcsrepo'} do
it "should execute 'git init --bare'" do it "should execute 'git init --bare'" do
expects_chdir expects_chdir
expects_mkdir expects_mkdir
File.expects(:directory?).with(resource.value(:path)).returns(false) expects_directory?(false)
provider.expects(:working_copy_exists?).returns(false) provider.expects(:working_copy_exists?).returns(false)
provider.expects(:git).with('init', '--bare') provider.expects(:git).with('init', '--bare')
provider.create provider.create
@ -91,7 +91,7 @@ describe_provider :vcsrepo, :git, :resource => {:path => '/tmp/vcsrepo'} do
context "when the path is not a repository" do context "when the path is not a repository" do
it "should raise an exception" do it "should raise an exception" do
File.expects(:directory?).with(resource.value(:path)).returns(true) expects_directory?(true)
provider.expects(:working_copy_exists?).returns(false) provider.expects(:working_copy_exists?).returns(false)
proc { provider.create }.should raise_error(Puppet::Error) proc { provider.create }.should raise_error(Puppet::Error)
end end
@ -101,7 +101,7 @@ describe_provider :vcsrepo, :git, :resource => {:path => '/tmp/vcsrepo'} do
context 'destroying' do context 'destroying' do
it "it should remove the directory" do it "it should remove the directory" do
FileUtils.expects(:rm_rf).with(resource.value(:path)) expects_rm_rf
provider.destroy provider.destroy
end end
end end

View File

@ -13,6 +13,7 @@ describe_provider :vcsrepo, :hg, :resource => {:path => '/tmp/vcsrepo'} do
provider.create provider.create
end end
end end
context_without :revision do context_without :revision do
it "should just execute 'hg clone' without a revision" do it "should just execute 'hg clone' without a revision" do
provider.expects(:hg).with('clone', resource.value(:source), resource.value(:path)) provider.expects(:hg).with('clone', resource.value(:source), resource.value(:path))
@ -20,6 +21,7 @@ describe_provider :vcsrepo, :hg, :resource => {:path => '/tmp/vcsrepo'} do
end end
end end
end end
context "when a source is not given" do context "when a source is not given" do
it "should execute 'hg init'" do it "should execute 'hg init'" do
provider.expects(:hg).with('init', resource.value(:path)) provider.expects(:hg).with('init', resource.value(:path))
@ -30,14 +32,14 @@ describe_provider :vcsrepo, :hg, :resource => {:path => '/tmp/vcsrepo'} do
describe 'destroying' do describe 'destroying' do
it "it should remove the directory" do it "it should remove the directory" do
FileUtils.expects(:rm_rf).with(resource.value(:path)) expects_rm_rf
provider.destroy provider.destroy
end end
end end
describe "checking existence" do describe "checking existence" do
it "should check for the directory" do it "should check for the directory" do
File.expects(:directory?).with(File.join(resource.value(:path), '.hg')) expects_directory?(true, File.join(resource.value(:path), '.hg'))
provider.exists? provider.exists?
end end
end end
@ -46,16 +48,19 @@ describe_provider :vcsrepo, :hg, :resource => {:path => '/tmp/vcsrepo'} do
before do before do
expects_chdir expects_chdir
end end
context "when given a non-SHA as the resource revision" do context "when given a non-SHA as the resource revision" do
before do before do
provider.expects(:hg).with('parents').returns(fixture(:hg_parents)) provider.expects(:hg).with('parents').returns(fixture(:hg_parents))
provider.expects(:hg).with('tags').returns(fixture(:hg_tags)) provider.expects(:hg).with('tags').returns(fixture(:hg_tags))
end end
context "when its SHA is not different than the current SHA", :resource => {:revision => '0.6'} do context "when its SHA is not different than the current SHA", :resource => {:revision => '0.6'} do
it "should return the ref" do it "should return the ref" do
provider.revision.should == '0.6' provider.revision.should == '0.6'
end end
end end
context "when its SHA is different than the current SHA", :resource => {:revision => '0.5.3'} do context "when its SHA is different than the current SHA", :resource => {:revision => '0.5.3'} do
it "should return the current SHA" do it "should return the current SHA" do
provider.revision.should == '34e6012c783a' provider.revision.should == '34e6012c783a'
@ -66,12 +71,14 @@ describe_provider :vcsrepo, :hg, :resource => {:path => '/tmp/vcsrepo'} do
before do before do
provider.expects(:hg).with('parents').returns(fixture(:hg_parents)) provider.expects(:hg).with('parents').returns(fixture(:hg_parents))
end end
context "when it is the same as the current SHA", :resource => {:revision => '34e6012c783a'} do context "when it is the same as the current SHA", :resource => {:revision => '34e6012c783a'} do
it "should return it" do it "should return it" do
provider.expects(:hg).with('tags').never provider.expects(:hg).with('tags').never
provider.revision.should == resource.value(:revision) provider.revision.should == resource.value(:revision)
end end
end end
context "when it is not the same as the current SHA", :resource => {:revision => 'not-the-same'} do context "when it is not the same as the current SHA", :resource => {:revision => 'not-the-same'} do
it "should return the current SHA" do it "should return the current SHA" do
provider.expects(:hg).with('tags').returns(fixture(:hg_tags)) provider.expects(:hg).with('tags').returns(fixture(:hg_tags))

View File

@ -1,89 +1,77 @@
require 'pathname'; Pathname.new(__FILE__).realpath.ascend { |x| begin; require (x + 'spec_helper.rb'); break; rescue LoadError; end } require 'pathname'; Pathname.new(__FILE__).realpath.ascend { |x| begin; require (x + 'spec_helper.rb'); break; rescue LoadError; end }
provider_class = Puppet::Type.type(:vcsrepo).provider(:svn) describe_provider :vcsrepo, :svn, :resource => {:path => '/tmp/vcsrepo'} do
describe provider_class do describe 'creating' do
context_with :source do
before :each do context_with :revision do
@resource = stub("resource")
@provider = provider_class.new(@resource)
@path = '/tmp/vcsrepo'
end
describe 'when creating' do
context "when a source is given" do
context "and when a revision is given" do
it "should execute 'svn checkout' with a revision" do it "should execute 'svn checkout' with a revision" do
@resource.expects(:value).with(:path).returns(@path).at_least_once provider.expects(:svn).with('checkout', '-r',
@resource.expects(:value).with(:source).returns('svn://example.com/repo').at_least_once resource.value(:revision),
@resource.expects(:value).with(:revision).returns('1234').at_least_once resource.value(:source),
@provider.expects(:svn).with('checkout', '-r', '1234', 'svn://example.com/repo', @path) resource.value(:path))
@provider.create provider.create
end end
end end
context "and when a revision is not given" do context_without :revision do
it "should just execute 'svn checkout' without a revision" do it "should just execute 'svn checkout' without a revision" do
@resource.expects(:value).with(:path).returns(@path).at_least_once provider.expects(:svn).with('checkout',
@resource.expects(:value).with(:source).returns('svn://example.com/repo').at_least_once resource.value(:source),
@resource.expects(:value).with(:revision).returns(nil).at_least_once resource.value(:path))
@provider.expects(:svn).with('checkout','svn://example.com/repo', @path) provider.create
@provider.create
end end
end end
end end
context "when a source is not given" do context_without :source do
context "when a fstype is given" do context_with :fstype do
it "should execute 'svnadmin create' with an '--fs-type' option" do it "should execute 'svnadmin create' with an '--fs-type' option" do
@resource.expects(:value).with(:path).returns(@path).at_least_once provider.expects(:svnadmin).with('create', '--fs-type',
@resource.expects(:value).with(:fstype).returns('fsfs').at_least_once resource.value(:fstype),
@resource.expects(:value).with(:source).returns(nil) resource.value(:path))
@provider.expects(:svnadmin).with('create', '--fs-type', 'fsfs', @path) provider.create
@provider.create
end end
end end
context "when a fstype is not given" do context_without :fstype do
it "should execute 'svnadmin create' without an '--fs-type' option" do it "should execute 'svnadmin create' without an '--fs-type' option" do
@resource.expects(:value).with(:path).returns(@path).at_least_once provider.expects(:svnadmin).with('create', resource.value(:path))
@resource.expects(:value).with(:source).returns(nil) provider.create
@resource.expects(:value).with(:fstype).returns(nil).at_least_once
@provider.expects(:svnadmin).with('create', @path)
@provider.create
end end
end end
end end
end end
describe 'when destroying' do describe 'destroying' do
it "it should remove the directory" do it "it should remove the directory" do
@resource.expects(:value).with(:path).returns(@path).at_least_once expects_rm_rf
FileUtils.expects(:rm_rf).with(@path) provider.destroy
@provider.destroy
end end
end end
describe "when checking existence" do describe "checking existence" do
it "should check for the directory" do it "should check for the directory" do
@resource.expects(:value).with(:path).returns(@path) expects_directory?(true, File.join(resource.value(:path), '.svn'))
File.expects(:directory?).with(@path) provider.exists?
@provider.exists?
end end
end end
describe "when checking the revision property" do describe "checking the revision property" do
before do
provider.expects('svn').with('info').returns(fixture(:svn_info))
end
it "should use 'svn info'" do it "should use 'svn info'" do
@resource.expects(:value).with(:path).returns(@path) expects_chdir
@provider.expects('svn').with('info').returns(fixture(:svn_info)) provider.revision.should == '4'
Dir.expects(:chdir).with(@path).yields
@provider.revision.should == '4'
end end
end end
describe "when setting the revision property" do describe "setting the revision property" do
before do
@revision = '30'
end
it "should use 'svn update'" do it "should use 'svn update'" do
@resource.expects(:value).with(:path).returns(@path) expects_chdir
@provider.expects('svn').with('update', '-r', '30') provider.expects('svn').with('update', '-r', @revision)
Dir.expects(:chdir).with(@path).yields provider.revision = @revision
@provider.revision = '30'
end end
end end