为什么我得到 puppet-rspec 'class does not exist' 呢?
Why do I get puppet-rspec 'class does not exist' when it does?
我使用以下 Gemfile
设置了一个新的 puppet demo
模块,当我 运行 一个简单的 puppet-rspec 测试时它按预期工作。
Gemfile
source 'https://rubygems.org'
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', '3.7.5'
end
gem 'metadata-json-lint'
gem 'puppetlabs_spec_helper', '>= 0.1.0'
gem 'puppet-lint', '>= 1.0.0'
gem 'facter', '>= 1.7.0'
gem 'rspec-puppet-facts'
# rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
gem 'rspec', '~> 2.0'
end
然而,当我克隆一个现有模块 (silex
) 并将 Gemfile 更新为如上所示时,我 运行:
bundle exec rake spec
我收到以下错误:
vagrant$ bundle exec rake spec
/usr/bin/ruby -S rspec spec/classes/init_spec.rb --color
F
Failures:
1) silex with defaults for all parameters should contain Class[silex]
Failure/Error: it { should contain_class('silex') }
Puppet::Error:
Could not find class silex for centos65-box-1 on node centos65-box-1
# ./spec/classes/init_spec.rb:5
Finished in 0.31963 seconds
1 example, 1 failure
Failed examples:
rspec ./spec/classes/init_spec.rb:5 # silex with defaults for all parameters should contain Class[silex]
存在class,我已经做了人偶运行。有人可以帮助我理解为什么会这样吗?
更多信息
# Tree
.
├── files
│ └── httpd.patch
├── Gemfile
├── Gemfile.lock
├── lib
│ └── facter
│ └── vendor_dir.rb
├── manifests
│ ├── backup.pp
│ ├── config.pp
│ ├── init.pp
│ ├── install.pp
│ ├── params.pp
│ └── service.pp
├── metadata.json
├── Rakefile
├── README.md
├── spec
│ ├── classes
│ │ └── init_spec.rb
│ ├── fixtures
│ │ ├── manifests
│ │ │ └── site.pp
│ │ └── modules
│ └── spec_helper.rb
├── templates
│ └── var
│ └── config
│ └── settings.json.erb
└── tests
└── init.pp
# spec_helper.rb
require 'puppetlabs_spec_helper/module_spec_helper'
require 'rspec-puppet-facts'
include RspecPuppetFacts
#init_spec.rb
require 'spec_helper'
describe 'silex' do
context 'with defaults for all parameters' do
it { should contain_class('silex') }
end
end
原来我在 fixtures
目录中遗漏了 module
导致了 could not find class
错误。
立即解决
我不得不 运行 rspec-puppet-init
将我的 spec
目录更新为以下 spec_helper.rb
文件:
require 'rspec-puppet'
fixture_path = File.expand_path(File.join(__FILE__, '..', 'fixtures'))
RSpec.configure do |c|
c.module_path = File.join(fixture_path, 'modules')
c.manifest_dir = File.join(fixture_path, 'manifests')
c.environmentpath = File.join(Dir.pwd, 'spec')
end
详解
以下是我为使其正常工作所采取的所有步骤。如果这是最好的方法,我很乐意得到一些反馈:
1。添加到 Gemfile
和 运行:
#You may need to tweak the versions depending on what your environment is like.
bundle install
Gemfile:
source 'https://rubygems.org'
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', '3.7.5'
end
gem 'metadata-json-lint'
gem 'puppetlabs_spec_helper', '>= 0.1.0'
gem 'puppet-lint', '>= 1.0.0'
gem 'facter', '>= 1.7.0'
gem 'rspec-puppet-facts'
# rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
gem 'rspec', '~> 2.0'
end
2。初始化您的 spec
目录。 运行 来自模块根目录。
bundle exec rspec-puppet-init
3。我必须将自动生成的 Rakefile
更新为以下内容:
require 'rubygems'
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp"]
desc "Validate manifests, templates, and ruby files"
task :validate do
Dir['manifests/**/*.pp'].each do |manifest|
sh "puppet parser validate --noop #{manifest}"
end
Dir['spec/**/*.rb','lib/**/*.rb'].each do |ruby_file|
sh "ruby -c #{ruby_file}" unless ruby_file =~ /spec\/fixtures/
end
Dir['templates/**/*.erb'].each do |template|
sh "erb -P -x -T '-' #{template} | ruby -c"
end
end
4。 运行 bundle exec rake spec
来自模块根目录
我使用以下 Gemfile
设置了一个新的 puppet demo
模块,当我 运行 一个简单的 puppet-rspec 测试时它按预期工作。
Gemfile
source 'https://rubygems.org'
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', '3.7.5'
end
gem 'metadata-json-lint'
gem 'puppetlabs_spec_helper', '>= 0.1.0'
gem 'puppet-lint', '>= 1.0.0'
gem 'facter', '>= 1.7.0'
gem 'rspec-puppet-facts'
# rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
gem 'rspec', '~> 2.0'
end
然而,当我克隆一个现有模块 (silex
) 并将 Gemfile 更新为如上所示时,我 运行:
bundle exec rake spec
我收到以下错误:
vagrant$ bundle exec rake spec
/usr/bin/ruby -S rspec spec/classes/init_spec.rb --color
F
Failures:
1) silex with defaults for all parameters should contain Class[silex]
Failure/Error: it { should contain_class('silex') }
Puppet::Error:
Could not find class silex for centos65-box-1 on node centos65-box-1
# ./spec/classes/init_spec.rb:5
Finished in 0.31963 seconds
1 example, 1 failure
Failed examples:
rspec ./spec/classes/init_spec.rb:5 # silex with defaults for all parameters should contain Class[silex]
存在class,我已经做了人偶运行。有人可以帮助我理解为什么会这样吗?
更多信息
# Tree
.
├── files
│ └── httpd.patch
├── Gemfile
├── Gemfile.lock
├── lib
│ └── facter
│ └── vendor_dir.rb
├── manifests
│ ├── backup.pp
│ ├── config.pp
│ ├── init.pp
│ ├── install.pp
│ ├── params.pp
│ └── service.pp
├── metadata.json
├── Rakefile
├── README.md
├── spec
│ ├── classes
│ │ └── init_spec.rb
│ ├── fixtures
│ │ ├── manifests
│ │ │ └── site.pp
│ │ └── modules
│ └── spec_helper.rb
├── templates
│ └── var
│ └── config
│ └── settings.json.erb
└── tests
└── init.pp
# spec_helper.rb
require 'puppetlabs_spec_helper/module_spec_helper'
require 'rspec-puppet-facts'
include RspecPuppetFacts
#init_spec.rb
require 'spec_helper'
describe 'silex' do
context 'with defaults for all parameters' do
it { should contain_class('silex') }
end
end
原来我在 fixtures
目录中遗漏了 module
导致了 could not find class
错误。
立即解决
我不得不 运行 rspec-puppet-init
将我的 spec
目录更新为以下 spec_helper.rb
文件:
require 'rspec-puppet' fixture_path = File.expand_path(File.join(__FILE__, '..', 'fixtures')) RSpec.configure do |c| c.module_path = File.join(fixture_path, 'modules') c.manifest_dir = File.join(fixture_path, 'manifests') c.environmentpath = File.join(Dir.pwd, 'spec') end
详解
以下是我为使其正常工作所采取的所有步骤。如果这是最好的方法,我很乐意得到一些反馈:
1。添加到 Gemfile
和 运行:
#You may need to tweak the versions depending on what your environment is like. bundle install
Gemfile:
source 'https://rubygems.org'
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', '3.7.5'
end
gem 'metadata-json-lint'
gem 'puppetlabs_spec_helper', '>= 0.1.0'
gem 'puppet-lint', '>= 1.0.0'
gem 'facter', '>= 1.7.0'
gem 'rspec-puppet-facts'
# rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
gem 'rspec', '~> 2.0'
end
2。初始化您的 spec
目录。 运行 来自模块根目录。
bundle exec rspec-puppet-init
3。我必须将自动生成的 Rakefile
更新为以下内容:
require 'rubygems'
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp"]
desc "Validate manifests, templates, and ruby files"
task :validate do
Dir['manifests/**/*.pp'].each do |manifest|
sh "puppet parser validate --noop #{manifest}"
end
Dir['spec/**/*.rb','lib/**/*.rb'].each do |ruby_file|
sh "ruby -c #{ruby_file}" unless ruby_file =~ /spec\/fixtures/
end
Dir['templates/**/*.erb'].each do |template|
sh "erb -P -x -T '-' #{template} | ruby -c"
end
end