summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Lewis <nick@puppetlabs.com>2011-01-07 12:09:24 -0800
committerNick Lewis <nick@puppetlabs.com>2011-01-07 12:09:24 -0800
commit814f56fdb3d360531bc2a2fc85ac71127a4c779d (patch)
treeedfc4af8f043dce969f216d4f89cf1492d851246
parent80c5f4c267b6008ba1c08c72753027cf85029b93 (diff)
parent8aa8b9dbc2437cea8109e4d272018437afe13794 (diff)
downloadpuppet-814f56fdb3d360531bc2a2fc85ac71127a4c779d.tar.gz
puppet-814f56fdb3d360531bc2a2fc85ac71127a4c779d.tar.xz
puppet-814f56fdb3d360531bc2a2fc85ac71127a4c779d.zip
Merge branch 'ticket/2.6.next/5799' into 2.6.next
-rw-r--r--lib/puppet/reports/store.rb20
-rw-r--r--spec/unit/reports/store_spec.rb31
2 files changed, 32 insertions, 19 deletions
diff --git a/lib/puppet/reports/store.rb b/lib/puppet/reports/store.rb
index 30f24591c..99a9fc177 100644
--- a/lib/puppet/reports/store.rb
+++ b/lib/puppet/reports/store.rb
@@ -8,24 +8,6 @@ Puppet::Reports.register_report(:store) do
to perform some maintenance on them if you use this report (it's the only
default report)."
- def mkclientdir(client, dir)
- config = Puppet::Util::Settings.new
-
- config.setdefaults(
- "reportclient-#{client}".to_sym,
- "client-#{client}-dir" => { :default => dir,
- :mode => 0750,
- :desc => "Client dir for #{client}",
- :owner => 'service',
- :group => 'service'
- },
-
- :noop => [false, "Used by settings internally."]
- )
-
- config.use("reportclient-#{client}".to_sym)
- end
-
def process
# We don't want any tracking back in the fs. Unlikely, but there
# you go.
@@ -33,7 +15,7 @@ Puppet::Reports.register_report(:store) do
dir = File.join(Puppet[:reportdir], client)
- mkclientdir(client, dir) unless FileTest.exists?(dir)
+ Dir.mkdir(dir, 0750) unless FileTest.exists?(dir)
# Now store the report.
now = Time.now.gmtime
diff --git a/spec/unit/reports/store_spec.rb b/spec/unit/reports/store_spec.rb
new file mode 100644
index 000000000..1acb5badd
--- /dev/null
+++ b/spec/unit/reports/store_spec.rb
@@ -0,0 +1,31 @@
+#!/usr/bin/env ruby
+
+Dir.chdir(File.dirname(__FILE__)) { (s = lambda { |f| File.exist?(f) ? require(f) : Dir.chdir("..") { s.call(f) } }).call("spec/spec_helper.rb") }
+
+require 'puppet/reports'
+require 'time'
+
+processor = Puppet::Reports.report(:store)
+
+describe processor do
+ describe "#process" do
+ include PuppetSpec::Files
+ before :each do
+ Puppet[:reportdir] = tmpdir('reports')
+ @report = YAML.load_file(File.join(PuppetSpec::FIXTURE_DIR, 'yaml/report2.6.x.yaml')).extend processor
+ end
+
+ it "should create a report directory for the client if one doesn't exist" do
+ @report.process
+
+ File.should be_directory(File.join(Puppet[:reportdir], @report.host))
+ end
+
+ it "should write the report to the file in YAML" do
+ Time.stubs(:now).returns(Time.parse("2011-01-06 12:00:00 UTC"))
+ @report.process
+
+ File.read(File.join(Puppet[:reportdir], @report.host, "201101061200.yaml")).should == @report.to_yaml
+ end
+ end
+end