文件操作 - compiler.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/vendor_modules/yumrepo_core/spec/lib/puppet_spec/compiler.rb
编辑文件内容
module PuppetSpec::Compiler module_function def compile_to_catalog(string, node = Puppet::Node.new('test')) Puppet[:code] = string # see lib/puppet/indirector/catalog/compiler.rb#filter Puppet::Parser::Compiler.compile(node).filter { |r| r.virtual? } end def compile_to_ral(manifest, node = Puppet::Node.new('test')) catalog = compile_to_catalog(manifest, node) ral = catalog.to_ral ral.finalize ral end def apply_compiled_manifest(manifest, prioritizer = Puppet::Graph::SequentialPrioritizer.new) args = [] if Puppet.version.to_f < 5.0 args << 'apply' # rubocop:disable RSpec/AnyInstance allow_any_instance_of(Puppet::Transaction::Persistence).to receive(:save) # rubocop:enable RSpec/AnyInstance end catalog = compile_to_ral(manifest) if block_given? catalog.resources.each { |res| yield res } end transaction = Puppet::Transaction.new(catalog, Puppet::Transaction::Report.new(*args), prioritizer) transaction.evaluate transaction.report.finalize_report transaction end def apply_with_error_check(manifest) apply_compiled_manifest(manifest) do |res| expect(res).not_to receive(:err) end end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件