Sha256: 1c1b1a2057ab9726841e3853478230e7243622255b459496f3d226c0959f4967

Contents?: true

Size: 1.54 KB

Versions: 35

Compression:

Stored size: 1.54 KB

Contents

#! /usr/bin/env ruby

require 'spec_helper'
require 'matchers/json'
require 'puppet/util/instrumentation'
require 'puppet/util/instrumentation/data'

describe Puppet::Util::Instrumentation::Data do
  Puppet::Util::Instrumentation::Data

  before(:each) do
    @listener = stub 'listener', :name => "name"
    Puppet::Util::Instrumentation.stubs(:[]).with("name").returns(@listener)
  end

  it "should indirect instrumentation_data" do
    Puppet::Util::Instrumentation::Data.indirection.name.should == :instrumentation_data
  end

  it "should lookup the corresponding listener" do
    Puppet::Util::Instrumentation.expects(:[]).with("name").returns(@listener)
    Puppet::Util::Instrumentation::Data.new("name")
  end

  it "should error if the listener can not be found" do
    Puppet::Util::Instrumentation.expects(:[]).with("name").returns(nil)
    expect { Puppet::Util::Instrumentation::Data.new("name") }.to raise_error
  end

  it "should return pson data" do
    data = Puppet::Util::Instrumentation::Data.new("name")
    @listener.stubs(:data).returns({ :this_is_data  => "here also" })
    data.should set_json_attribute('name').to("name")
    data.should set_json_attribute('this_is_data').to("here also")
  end

  it "should not error if the underlying listener doesn't have data" do
    lambda { Puppet::Util::Instrumentation::Data.new("name").to_pson }.should_not raise_error
  end

  it "should return a hash containing data when unserializing from pson" do
    Puppet::Util::Instrumentation::Data.from_pson({:name => "name"}).should == {:name => "name"}
  end
end

Version data entries

35 entries across 35 versions & 2 rubygems

Version Path
puppet-3.4.3 spec/unit/util/instrumentation/data_spec.rb
puppet-3.4.2 spec/unit/util/instrumentation/data_spec.rb
puppet-3.4.1 spec/unit/util/instrumentation/data_spec.rb
puppet-3.4.0 spec/unit/util/instrumentation/data_spec.rb
puppet-3.4.0.rc2 spec/unit/util/instrumentation/data_spec.rb
puppet-3.4.0.rc1 spec/unit/util/instrumentation/data_spec.rb
puppet-3.3.2 spec/unit/util/instrumentation/data_spec.rb
puppet-3.3.1 spec/unit/util/instrumentation/data_spec.rb
puppet-3.3.1.rc3 spec/unit/util/instrumentation/data_spec.rb
puppet-3.3.1.rc2 spec/unit/util/instrumentation/data_spec.rb
puppet-3.3.1.rc1 spec/unit/util/instrumentation/data_spec.rb
puppet-3.3.0 spec/unit/util/instrumentation/data_spec.rb
puppet-3.3.0.rc3 spec/unit/util/instrumentation/data_spec.rb
puppet-3.3.0.rc2 spec/unit/util/instrumentation/data_spec.rb
puppet-3.2.4 spec/unit/util/instrumentation/data_spec.rb
puppet-3.2.3 spec/unit/util/instrumentation/data_spec.rb
puppet-3.2.3.rc1 spec/unit/util/instrumentation/data_spec.rb
puppet-3.2.2 spec/unit/util/instrumentation/data_spec.rb
puppet-3.2.1 spec/unit/util/instrumentation/data_spec.rb
puppet-3.2.1.rc1 spec/unit/util/instrumentation/data_spec.rb