Sha256: e0c18a77f4aa19f5c0728d85996bbb3a1fea6d1b98f6d66a71590e91c1c03a16

Contents?: true

Size: 1.35 KB

Versions: 10

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 = Ciam::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 = Ciam::Saml::Settings.new(config)

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

  end

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ciam-es-0.1.0 test/settings_test.rb
ciam-es-0.0.9 test/settings_test.rb
ciam-es-0.0.8 test/settings_test.rb
ciam-es-0.0.7 test/settings_test.rb
ciam-es-0.0.6 test/settings_test.rb
ciam-es-0.0.5 test/settings_test.rb
ciam-es-0.0.4 test/settings_test.rb
ciam-es-0.0.3 test/settings_test.rb
ciam-es-0.0.2 test/settings_test.rb
ciam-es-0.0.1 test/settings_test.rb