1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
#require 'simplecov'
require 'pathname'
#SimpleCov.start do
# add_filter "test/"
# add_filter "vendor/"
# add_filter "lib/onelogin/ruby-saml/logging.rb"
#end
require 'stringio'
require 'rubygems'
#require 'bundler'
require 'minitest/autorun'
require 'mocha/setup'
require 'timecop'
require 'onelogin/ruby-saml/http_error'
#Bundler.require :default, :test
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'onelogin/ruby-saml/logging'
TEST_LOGGER = Logger.new(StringIO.new)
OneLogin::RubySaml::Logging.logger = TEST_LOGGER
class Minitest::Test
def fixture(document, base64 = true)
response = Dir.glob(File.join(File.dirname(__FILE__), "responses", "#{document}*")).first
if base64 && response =~ /\.xml$/
Base64.encode64(File.read(response))
else
File.read(response)
end
end
def read_response(response)
File.read(File.join(File.dirname(__FILE__), "responses", response))
end
def read_invalid_response(response)
File.read(File.join(File.dirname(__FILE__), "responses", "invalids", response))
end
def read_logout_request(request)
File.read(File.join(File.dirname(__FILE__), "logout_requests", request))
end
def read_certificate(certificate)
File.read(File.join(File.dirname(__FILE__), "certificates", certificate))
end
def response_document_valid_signed
@response_document_valid_signed ||= read_response("valid_response.xml.base64")
end
def response_document_valid_signed_without_x509certificate
@response_document_valid_signed_without_x509certificate ||= read_response("valid_response_without_x509certificate.xml.base64")
end
def response_document_without_recipient
@response_document_without_recipient ||= read_response("response_with_undefined_recipient.xml.base64")
end
def response_document_without_recipient_with_time_updated
doc = Base64.decode64(response_document_without_recipient)
doc.gsub!(/NotBefore=\"(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})Z\"/, "NotBefore=\"#{(Time.now-300).getutc.strftime("%Y-%m-%dT%XZ")}\"")
doc.gsub!(/NotOnOrAfter=\"(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})Z\"/, "NotOnOrAfter=\"#{(Time.now+300).getutc.strftime("%Y-%m-%dT%XZ")}\"")
Base64.encode64(doc)
end
def response_document_without_attributes
@response_document_without_attributes ||= read_response("response_without_attributes.xml.base64")
end
def response_document_without_reference_uri
@response_document_without_reference_uri ||= read_response("response_without_reference_uri.xml.base64")
end
def response_document_with_signed_assertion
@response_document_with_signed_assertion ||= read_response("response_with_signed_assertion.xml.base64")
end
def response_document_with_signed_assertion_2
@response_document_with_signed_assertion_2 ||= read_response("response_with_signed_assertion_2.xml.base64")
end
def response_document_with_ds_namespace_at_the_root
@response_document_with_ds_namespace_at_the_root ||= read_response("response_with_ds_namespace_at_the_root.xml.base64")
end
def response_document_unsigned
@response_document_unsigned ||= read_response("response_unsigned_xml_base64")
end
def response_document_with_saml2_namespace
@response_document_with_saml2_namespace ||= read_response("response_with_saml2_namespace.xml.base64")
end
def ampersands_document
@ampersands_response ||= read_response("response_with_ampersands.xml.base64")
end
def response_document_no_cert_and_encrypted_attrs
@response_document_no_cert_and_encrypted_attrs ||= Base64.encode64(read_response("response_no_cert_and_encrypted_attrs.xml"))
end
def response_document_wrapped
@response_document_wrapped ||= read_response("response_wrapped.xml.base64")
end
def response_document_assertion_wrapped
@response_document_assertion_wrapped ||= read_response("response_assertion_wrapped.xml.base64")
end
def response_document_encrypted_nameid
@response_document_encrypted_nameid ||= File.read(File.join(File.dirname(__FILE__), 'responses', 'response_encrypted_nameid.xml.base64'))
end
def signed_message_encrypted_unsigned_assertion
@signed_message_encrypted_unsigned_assertion ||= File.read(File.join(File.dirname(__FILE__), 'responses', 'signed_message_encrypted_unsigned_assertion.xml.base64'))
end
def signed_message_encrypted_signed_assertion
@signed_message_encrypted_signed_assertion ||= File.read(File.join(File.dirname(__FILE__), 'responses', 'signed_message_encrypted_signed_assertion.xml.base64'))
end
def unsigned_message_encrypted_signed_assertion
@unsigned_message_encrypted_signed_assertion ||= File.read(File.join(File.dirname(__FILE__), 'responses', 'unsigned_message_encrypted_signed_assertion.xml.base64'))
end
def unsigned_message_encrypted_unsigned_assertion
@unsigned_message_encrypted_unsigned_assertion ||= File.read(File.join(File.dirname(__FILE__), 'responses', 'unsigned_message_encrypted_unsigned_assertion.xml.base64'))
end
def response_document_encrypted_attrs
@response_document_encrypted_attrs ||= File.read(File.join(File.dirname(__FILE__), 'responses', 'response_encrypted_attrs.xml.base64'))
end
def signature_fingerprint_1
@signature_fingerprint1 ||= "C5:19:85:D9:47:F1:BE:57:08:20:25:05:08:46:EB:27:F6:CA:B7:83"
end
# certificate used on response_with_undefined_recipient
def signature_1
@signature1 ||= read_certificate("certificate1")
end
# certificate used on response_document_with_signed_assertion_2
def certificate_without_head_foot
@certificate_without_head_foot ||= read_certificate("certificate_without_head_foot")
end
def idp_metadata
@idp_metadata ||= read_response("idp_descriptor.xml")
end
def logout_request_document
unless @logout_request_document
xml = read_logout_request("slo_request.xml")
deflated = Zlib::Deflate.deflate(xml, 9)[2..-5]
@logout_request_document = Base64.encode64(deflated)
end
@logout_request_document
end
def logout_request_xml_with_session_index
@logout_request_xml_with_session_index ||= File.read(File.join(File.dirname(__FILE__), 'logout_requests', 'slo_request_with_session_index.xml'))
end
def invalid_logout_request_document
unless @invalid_logout_request_document
xml = File.read(File.join(File.dirname(__FILE__), 'logout_requests', 'invalid_slo_request.xml'))
deflated = Zlib::Deflate.deflate(xml, 9)[2..-5]
@invalid_logout_request_document = Base64.encode64(deflated)
end
@invalid_logout_request_document
end
def logout_request_base64
@logout_request_base64 ||= File.read(File.join(File.dirname(__FILE__), 'logout_requests', 'slo_request.xml.base64'))
end
def logout_request_deflated_base64
@logout_request_deflated_base64 ||= File.read(File.join(File.dirname(__FILE__), 'logout_requests', 'slo_request_deflated.xml.base64'))
end
def ruby_saml_cert
@ruby_saml_cert ||= OpenSSL::X509::Certificate.new(ruby_saml_cert_text)
end
def ruby_saml_cert_fingerprint
@ruby_saml_cert_fingerprint ||= Digest::SHA1.hexdigest(ruby_saml_cert.to_der).scan(/../).join(":")
end
def ruby_saml_cert_text
read_certificate("ruby-saml.crt")
end
def ruby_saml_key
@ruby_saml_key ||= OpenSSL::PKey::RSA.new(ruby_saml_key_text)
end
def ruby_saml_key_text
read_certificate("ruby-saml.key")
end
#
# logoutresponse fixtures
#
def random_id
"_#{OneLogin::RubySaml::Utils.uuid}"
end
#
# decodes a base64 encoded SAML response for use in SloLogoutresponse tests
#
def decode_saml_response_payload(unauth_url)
payload = CGI.unescape(unauth_url.split("SAMLResponse=").last)
decoded = Base64.decode64(payload)
zstream = Zlib::Inflate.new(-Zlib::MAX_WBITS)
inflated = zstream.inflate(decoded)
zstream.finish
zstream.close
inflated
end
#
# decodes a base64 encoded SAML request for use in Logoutrequest tests
#
def decode_saml_request_payload(unauth_url)
payload = CGI.unescape(unauth_url.split("SAMLRequest=").last)
decoded = Base64.decode64(payload)
zstream = Zlib::Inflate.new(-Zlib::MAX_WBITS)
inflated = zstream.inflate(decoded)
zstream.finish
zstream.close
inflated
end
RELATIVE_SCHEMA_DIR = File.expand_path(File.join(__FILE__, '../../lib/schemas'))
SYSTEM_SCHEMA_DIR = File.expand_path(File.join(File.dirname(`gem which ruby-saml`),'schemas'))
SCHEMA_DIR = Pathname.new(RELATIVE_SCHEMA_DIR).directory? ? RELATIVE_SCHEMA_DIR : SYSTEM_SCHEMA_DIR
#
# validate an xml document against the given schema
#
def validate_xml!(document, schema)
Dir.chdir(SCHEMA_DIR) do
xsd = if schema.is_a? Nokogiri::XML::Schema
schema
else
Nokogiri::XML::Schema(File.read(schema))
end
xml = if document.is_a? Nokogiri::XML::Document
document
else
Nokogiri::XML(document) { |c| c.strict }
end
result = xsd.validate(xml)
if result.length != 0
raise "Schema validation failed! XSD validation errors: #{result.join(", ")}"
else
true
end
end
end
end
|