1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet_spec/files'
require 'puppet/application/doc'
describe Puppet::Application::Doc do
include PuppetSpec::Files
it "should not generate an error when module dir overlaps parent of site.pp (#4798)",
:if => (Puppet.features.rdoc1? and not Puppet.features.microsoft_windows?) do
begin
# Note: the directory structure below is more complex than it
# needs to be, but it's representative of the directory structure
# used in bug #4798.
old_dir = Dir.getwd # Note: can't use chdir with a block because it will generate bogus warnings
tmpdir = tmpfile('doc_spec')
Dir.mkdir(tmpdir)
Dir.chdir(tmpdir)
site_file = 'site.pp'
File.open(site_file, 'w') do |f|
f.puts '# A comment'
end
modules_dir = 'modules'
Dir.mkdir(modules_dir)
rt_dir = File.join(modules_dir, 'rt')
Dir.mkdir(rt_dir)
manifests_dir = File.join(rt_dir, 'manifests')
Dir.mkdir(manifests_dir)
rt_file = File.join(manifests_dir, 'rt.pp')
File.open(rt_file, 'w') do |f|
f.puts '# A class'
f.puts 'class foo { }'
f.puts '# A definition'
f.puts 'define bar { }'
end
puppet = Puppet::Application[:doc]
puppet.options[:mode] = :rdoc
env = Puppet::Node::Environment.create(:rdoc, [modules_dir], site_file)
Puppet.override(:current_environment => env) do
expect { puppet.run_command }.to exit_with 0
end
Puppet::FileSystem.exist?('doc').should be_true
ensure
Dir.chdir(old_dir)
end
end
it "should respect the -o option" do
puppetdoc = Puppet::Application[:doc]
puppetdoc.command_line.stubs(:args).returns(['foo', '-o', 'bar'])
puppetdoc.parse_options
puppetdoc.options[:outputdir].should == 'bar'
end
end
|