Sha256: d63a5b5a73f216581db33085c3344d01e372e6f15ba0d538bb58b001fc60948b

Contents?: true

Size: 1.35 KB

Versions: 11

Compression:

Stored size: 1.35 KB

Contents

require File.expand_path(File.join(File.dirname(__FILE__), "test_helper"))

class SettingsTest < Test::Unit::TestCase

  context "Settings" do
    setup do
      @settings = Cie::Saml::Settings.new
    end
    should "should provide getters and settings" do
      accessors = [
        :assertion_consumer_service_url, :issuer, :sp_name_qualifier,
        :idp_sso_target_url, :idp_cert_fingerprint, :name_identifier_format,
        :idp_slo_target_url, :name_identifier_value, :sessionindex
      ]

      accessors.each do |accessor|
        value = Kernel.rand
        @settings.send("#{accessor}=".to_sym, value)
        assert_equal value, @settings.send(accessor)
      end
    end

    should "create settings from hash" do

      config = {
          :assertion_consumer_service_url => "http://app.muda.no/sso",
          :issuer => "http://muda.no",
          :sp_name_qualifier => "http://sso.muda.no",
          :idp_sso_target_url => "http://sso.muda.no/sso",
          :idp_slo_target_url => "http://sso.muda.no/slo",
          :idp_cert_fingerprint => "00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00",
          :name_identifier_format => "urn:oasis:names:tc:SAML:2.0:nameid-format:transient",
      }
      @settings = Cie::Saml::Settings.new(config)

      config.each do |k,v|
        assert_equal v, @settings.send(k)
      end
    end

  end

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
cie-es-0.0.11 test/settings_test.rb
cie-es-0.0.10 test/settings_test.rb
cie-es-0.0.9 test/settings_test.rb
cie-es-0.0.8 test/settings_test.rb
cie-es-0.0.7 test/settings_test.rb
cie-es-0.0.6 test/settings_test.rb
cie-es-0.0.5 test/settings_test.rb
cie-es-0.0.4 test/settings_test.rb
cie-es-0.0.3 test/settings_test.rb
cie-es-0.0.2 test/settings_test.rb
cie-es-0.0.1 test/settings_test.rb