Class: Rack::Test::CookieJar

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/test/cookie_jar.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(cookies = [], default_host = DEFAULT_HOST) ⇒ CookieJar

:api: private



102
103
104
105
106
# File 'lib/rack/test/cookie_jar.rb', line 102

def initialize(cookies = [], default_host = DEFAULT_HOST)
  @default_host = default_host
  @cookies = cookies
  @cookies.sort!
end

Instance Method Details

#<<(new_cookie) ⇒ Object



138
139
140
141
142
143
144
145
# File 'lib/rack/test/cookie_jar.rb', line 138

def <<(new_cookie)
  @cookies.reject! do |existing_cookie|
    new_cookie.replaces?(existing_cookie)
  end

  @cookies << new_cookie
  @cookies.sort!
end

#[](name) ⇒ Object



108
109
110
111
112
# File 'lib/rack/test/cookie_jar.rb', line 108

def [](name)
  cookies = hash_for(nil)
  # TODO: Should be case insensitive
  cookies[name] && cookies[name].value
end

#[]=(name, value) ⇒ Object



114
115
116
# File 'lib/rack/test/cookie_jar.rb', line 114

def []=(name, value)
  merge("#{name}=#{Rack::Utils.escape(value)}")
end

#delete(name) ⇒ Object



118
119
120
121
122
# File 'lib/rack/test/cookie_jar.rb', line 118

def delete(name)
  @cookies.reject! do |cookie|
    cookie.name == name
  end
end

#for(uri) ⇒ Object

:api: private



148
149
150
# File 'lib/rack/test/cookie_jar.rb', line 148

def for(uri)
  hash_for(uri).values.map { |c| c.raw }.join(';')
end

#merge(raw_cookies, uri = nil) ⇒ Object



124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/rack/test/cookie_jar.rb', line 124

def merge(raw_cookies, uri = nil)
  return unless raw_cookies

  if raw_cookies.is_a? String
    raw_cookies = raw_cookies.split("\n")
    raw_cookies.reject!{|c| c.empty? }
  end

  raw_cookies.each do |raw_cookie|
    cookie = Cookie.new(raw_cookie, uri, @default_host)
    self << cookie if cookie.valid?(uri)
  end
end

#to_hashObject



152
153
154
155
156
157
158
159
160
# File 'lib/rack/test/cookie_jar.rb', line 152

def to_hash
  cookies = {}

  hash_for(nil).each do |name, cookie|
    cookies[name] = cookie.value
  end

  return cookies
end