Sha256: d29ae0370ad49e32b717a60202258ad76d895555e0ae5166e7c834650f933c48

Contents?: true

Size: 570 Bytes

Versions: 64

Compression:

Stored size: 570 Bytes

Contents

# encoding: utf-8

Shindo.tests('AWS | signed_params', ['aws']) do
  returns( Fog::AWS.escape( "'Stöp!' said Fred_-~./" ) ) { "%27St%C3%B6p%21%27%20said%20Fred_-~.%2F" }

  tests('Unicode characters should be escaped') do
    unicode = ["00E9".to_i(16)].pack("U*")
    escaped = "%C3%A9"
    returns( escaped ) { Fog::AWS.escape( unicode ) }
  end

  tests('Unicode characters with combining marks should be escaped') do
    unicode = ["0065".to_i(16), "0301".to_i(16)].pack("U*")
    escaped = "e%CC%81"
    returns( escaped ) { Fog::AWS.escape( unicode ) }
  end
end

Version data entries

64 entries across 62 versions & 6 rubygems

Version Path
ns-fog-1.22.3 tests/aws/signed_params_tests.rb
ns-fog-1.22.2 tests/aws/signed_params_tests.rb
fog-1.22.1 tests/aws/signed_params_tests.rb
fog-1.22.0 tests/aws/signed_params_tests.rb