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



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

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

Instance Method Details

#<<(new_cookie) ⇒ Object



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

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

  @cookies << new_cookie
  @cookies.sort!
end

#[](name) ⇒ Object



120
121
122
123
124
# File 'lib/rack/test/cookie_jar.rb', line 120

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

#[]=(name, value) ⇒ Object



126
127
128
# File 'lib/rack/test/cookie_jar.rb', line 126

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

#delete(name) ⇒ Object



134
135
136
137
138
# File 'lib/rack/test/cookie_jar.rb', line 134

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

#for(uri) ⇒ Object

:api: private



164
165
166
# File 'lib/rack/test/cookie_jar.rb', line 164

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


130
131
132
# File 'lib/rack/test/cookie_jar.rb', line 130

def get_cookie(name)
  hash_for(nil).fetch(name,nil)
end

#merge(raw_cookies, uri = nil) ⇒ Object



140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/rack/test/cookie_jar.rb', line 140

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



168
169
170
171
172
173
174
175
176
# File 'lib/rack/test/cookie_jar.rb', line 168

def to_hash
  cookies = {}

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

  return cookies
end