Sha256: 0b137effb6bb171b93a3664e5c68aafa89a445f0322aad0c08d336079a9c91e2

Contents?: true

Size: 1.57 KB

Versions: 7

Compression:

Stored size: 1.57 KB

Contents

require 'spec_helper'

require 'certmeister/policy/fcrdns'

describe Certmeister::Policy::Fcrdns do

  it "demands a request" do
    expect { subject.authenticate }.to raise_error(ArgumentError)
  end

  it "refuses to authenticate a request with a missing cn" do
    response = subject.authenticate({ip: '127.0.0.1'})
    expect(response).to_not be_authenticated
    expect(response.error).to eql "missing cn"
  end

  it "refuses to authenticate a request with a missing ip" do
    response = subject.authenticate({cn: 'localhost'})
    expect(response).to_not be_authenticated
    expect(response.error).to eql "missing ip"
  end

  it "refuses to authenticate a request with an ip that does not have fcrdns that matches the cn" do
    response = subject.authenticate({cn: 'bad.example.com', ip: '127.0.0.1'})
    expect(response).to_not be_authenticated
    expect(response.error).to eql "cn in unknown domain"
  end

  it "authenticates any request with an ip that does not have fcrdns that matches the cn" do
    response = subject.authenticate({cn: 'localhost', ip: '127.0.0.1'})
    expect(response).to be_authenticated
  end

  describe "error handling" do

    it "refuses to authenticate a request when a DNS failure occurs" do
      Resolv::DNS.any_instance.stub(:getnames).with('nonsense').and_raise(Resolv::ResolvError.new("cannot interpret as address: nonsense"))
      response = subject.authenticate({cn: 'localhost', ip: 'nonsense'})
      expect(response).to_not be_authenticated
      expect(response.error).to eql "DNS error (cannot interpret as address: nonsense)"
    end

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
certmeister-0.3.0 spec/certmeister/policy/fcrdns_spec.rb
certmeister-0.2.3 spec/certmeister/policy/fcrdns_spec.rb
certmeister-0.2.1 spec/certmeister/policy/fcrdns_spec.rb
certmeister-0.2.0 spec/certmeister/policy/fcrdns_spec.rb
certmeister-0.1.0 spec/certmeister/policy/fcrdns_spec.rb
certmeister-0.0.2 spec/certmeister/policy/fcrdns_spec.rb
certmeister-0.0.1 spec/certmeister/policy/fcrdns_spec.rb