カスタム LWRP を作成しましたが、ChefSpecユニット テストを実行すると、. それは私の LWRP アクションを知りません。
ここに私のリソースがあります:
actions :install, :uninstall
default_action :install
attribute :version, :kind_of => String
attribute :options, :kind_of => String
これが私のプロバイダーです:
def whyrun_supported?
true
end
action :install do
version = @new_resource.version
options = @new_resource.options
e = execute "sudo apt-get install postgresql-#{version} #{options}"
@new_resource.updated_by_last_action(e.updated_by_last_action?)
end
そして、これが私のChefSpecユニットテストです:
require_relative '../spec_helper'
describe 'app_cookbook::postgresql' do
let(:chef_run) do
ChefSpec::Runner.new do |node|
node.set[:app][:postgresql][:database_user] = 'test'
node.set[:app][:postgresql][:database_password] = 'test'
node.set[:app][:postgresql][:database_name] = 'testdb'
end.converge(described_recipe)
end
it 'installs postgresql 9.1 package' do
expect(chef_run).to run_execute('sudo apt-get install postgresql-9.1 -y --force-yes')
end
end
コンソール出力は次のとおりです。
app_cookbook::postgresql
expected "execute[sudo apt-get install postgresql-9.1 -y --force-yes] with" action :run to be in Chef run. Other execute resources:
./spec/recipes/postgresql_spec.rb:23:in `block (2 levels) in <top (required)>'
installs postgresql 9.1 package (FAILED - 1)
Failures:
1) app_cookbook::postgresql installs postgresql 9.1 package
Failure/Error: expect(chef_run).to run_execute('sudo apt-get install postgresql-9.1 -y --force-yes')
expected "execute[sudo apt-get install postgresql-9.1 -y --force-yes] with" action :run to be in Chef run. Other execute resources:
# ./spec/recipes/postgresql_spec.rb:23:in `block (2 levels) in <top (required)>'
1 example, 1 failure, 0 passed
LWRP アクションでテストを実行する ChefSpec にどのように言えますか?