Sha256: 3ab6cb189873986bf31dedf4de2d9dcf2d1e74acdfb40285123cb625c108f9da

Contents?: true

Size: 1.66 KB

Versions: 14

Compression:

Stored size: 1.66 KB

Contents

#! /usr/bin/env ruby
require 'spec_helper'

describe Puppet::Type.type(:postgresql_conf) do
  before do
    @provider_class = described_class.provide(:simple) { mk_resource_methods }
    @provider_class.stubs(:suitable?).returns true
    described_class.stubs(:defaultprovider).returns @provider_class
  end

  describe "namevar validation" do
    it "should have :name as its namevar" do
      described_class.key_attributes.should == [:name]
    end
    it "should not invalid names" do
      expect { described_class.new(:name => 'foo bar') }.to raise_error(Puppet::Error, /Invalid value/)
    end
    it "should allow dots in names" do
      expect { described_class.new(:name => 'foo.bar') }.to_not raise_error
    end
  end

  describe "when validating attributes" do
    [:name, :provider].each do |param|
      it "should have a #{param} parameter" do
        described_class.attrtype(param).should == :param
      end
    end

    [:value, :target].each do |property|
      it "should have a #{property} property" do
        described_class.attrtype(property).should == :property
      end
    end
  end

  describe "when validating values" do
    describe "ensure" do
      it "should support present as a value for ensure" do
        expect { described_class.new(:name => 'foo', :ensure => :present) }.to_not raise_error
      end
      it "should support absent as a value for ensure" do
        expect { described_class.new(:name => 'foo', :ensure => :absent) }.to_not raise_error
      end
      it "should not support other values" do
        expect { described_class.new(:name => 'foo', :ensure => :foo) }.to raise_error(Puppet::Error, /Invalid value/)
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
freighthop-0.6.1 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.6.0 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.5.2 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.5.1 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.5.0 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.4.1 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.4.0 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.3.3 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.3.2 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.3.1 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.3.0 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.2.1 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.2.0 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
freighthop-0.1.0 modules/postgresql/spec/unit/type/postgresql_conf_spec.rb