Sha256: 2dafc63233d0fc7f5c2b3a7f39cb0c0b39a41f4a4eeb16029583bba68a69bcbb

Contents?: true

Size: 1.32 KB

Versions: 6

Compression:

Stored size: 1.32 KB

Contents

#!/usr/bin/env ruby
#
#  Created by Rick Bradley on 2007-10-03.
#  Copyright (c) 2007. All rights reserved.

require File.dirname(__FILE__) + '/../../spec_helper'

require 'puppet/network/http'

describe Puppet::Network::HTTP do
    it "should return the webrick HTTP server class when asked for a webrick server" do
        Puppet::Network::HTTP.server_class_by_type(:webrick).should be(Puppet::Network::HTTP::WEBrick)
    end

    describe "when asked for a mongrel server" do
        if Puppet.features.mongrel?
            it "should return the mongrel server class" do
                Puppet::Network::HTTP.server_class_by_type(:mongrel).should be(Puppet::Network::HTTP::Mongrel)
            end
        else
            it "should fail" do
                lambda { Puppet::Network::HTTP.server_class_by_type(:mongrel) }.should raise_error(ArgumentError)
            end
        end
    end

    it "should fail to return the mongrel HTTP server class if mongrel is not available " do
        Puppet.features.expects(:mongrel?).returns(false)
        Proc.new { Puppet::Network::HTTP.server_class_by_type(:mongrel) }.should raise_error(ArgumentError)
    end

    it "should return an error when asked for an unknown server" do
        Proc.new { Puppet::Network::HTTP.server_class_by_type :foo }.should raise_error(ArgumentError)
    end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
puppet-0.25.5 spec/unit/network/http.rb
puppet-0.25.4 spec/unit/network/http.rb
puppet-0.25.3 spec/unit/network/http.rb
puppet-0.25.2 spec/unit/network/http.rb
puppet-0.25.1 spec/unit/network/http.rb
puppet-0.25.0 spec/unit/network/http.rb