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
|
# frozen_string_literal: true
require "abstract_unit"
require "action_dispatch/middleware/session/abstract_store"
module ActionDispatch
class Request
class SessionTest < ActiveSupport::TestCase
attr_reader :req
def setup
@req = ActionDispatch::Request.empty
end
def test_create_adds_itself_to_env
s = Session.create(store, req, {})
assert_equal s, req.env[Rack::RACK_SESSION]
end
def test_to_hash
s = Session.create(store, req, {})
s["foo"] = "bar"
assert_equal "bar", s["foo"]
assert_equal({ "foo" => "bar" }, s.to_hash)
assert_equal({ "foo" => "bar" }, s.to_h)
end
def test_create_merges_old
s = Session.create(store, req, {})
s["foo"] = "bar"
s1 = Session.create(store, req, {})
assert_not_equal s, s1
assert_equal "bar", s1["foo"]
end
def test_find
assert_nil Session.find(req)
s = Session.create(store, req, {})
assert_equal s, Session.find(req)
end
def test_destroy
s = Session.create(store, req, {})
s["rails"] = "ftw"
s.destroy
assert_empty s
end
def test_keys
s = Session.create(store, req, {})
s["rails"] = "ftw"
s["adequate"] = "awesome"
assert_equal %w[rails adequate], s.keys
end
def test_keys_with_deferred_loading
s = Session.create(store_with_data, req, {})
assert_equal %w[sample_key], s.keys
end
def test_values
s = Session.create(store, req, {})
s["rails"] = "ftw"
s["adequate"] = "awesome"
assert_equal %w[ftw awesome], s.values
end
def test_values_with_deferred_loading
s = Session.create(store_with_data, req, {})
assert_equal %w[sample_value], s.values
end
def test_clear
s = Session.create(store, req, {})
s["rails"] = "ftw"
s["adequate"] = "awesome"
s.clear
assert_empty(s.values)
end
def test_update
s = Session.create(store, req, {})
s["rails"] = "ftw"
s.update(rails: "awesome")
assert_equal(["rails"], s.keys)
assert_equal("awesome", s["rails"])
end
def test_delete
s = Session.create(store, req, {})
s["rails"] = "ftw"
s.delete("rails")
assert_empty(s.keys)
end
def test_fetch
session = Session.create(store, req, {})
session["one"] = "1"
assert_equal "1", session.fetch(:one)
assert_equal "2", session.fetch(:two, "2")
assert_nil session.fetch(:two, nil)
assert_equal "three", session.fetch(:three) { |el| el.to_s }
assert_raise KeyError do
session.fetch(:three)
end
end
def test_dig
session = Session.create(store, req, {})
session["one"] = { "two" => "3" }
assert_equal "3", session.dig("one", "two")
assert_equal "3", session.dig(:one, "two")
assert_nil session.dig("three", "two")
assert_nil session.dig("one", "three")
assert_nil session.dig("one", :two)
end
def test_id_was_for_new_session_that_does_not_exist
session = Session.create(store_for_session_that_does_not_exist, req, {})
assert_nil session.id_was
end
def test_id_was_for_session_that_does_not_exist_after_writing
session = Session.create(store_for_session_that_does_not_exist, req, {})
session["one"] = "1"
assert_nil session.id_was
end
def test_id_was_for_session_that_does_not_exist_after_destroying
session = Session.create(store_for_session_that_does_not_exist, req, {})
session.destroy
assert_nil session.id_was
end
def test_id_was_for_existing_session
session = Session.create(store, req, {})
assert_equal 1, session.id_was
end
def test_id_was_for_existing_session_after_write
session = Session.create(store, req, {})
session["one"] = "1"
assert_equal 1, session.id_was
end
def test_id_was_for_existing_session_after_destroy
session = Session.create(store, req, {})
session.destroy
assert_equal 1, session.id_was
end
private
def store
Class.new {
def load_session(env); [1, {}]; end
def session_exists?(env); true; end
def delete_session(env, id, options); 123; end
}.new
end
def store_with_data
Class.new {
def load_session(env); [1, { "sample_key" => "sample_value" }]; end
def session_exists?(env); true; end
def delete_session(env, id, options); 123; end
}.new
end
def store_for_session_that_does_not_exist
Class.new {
def load_session(env); [1, {}]; end
def session_exists?(env); false; end
def delete_session(env, id, options); 123; end
}.new
end
end
class SessionIntegrationTest < ActionDispatch::IntegrationTest
class MySessionApp
def call(env)
request = Rack::Request.new(env)
request.session["hello"] = "Hello from MySessionApp!"
[ 200, {}, ["Hello from MySessionApp!"] ]
end
end
Router = ActionDispatch::Routing::RouteSet.new
Router.draw do
get "/mysessionapp" => MySessionApp.new
end
def app
@app ||= RoutedRackApp.new(Router)
end
def test_session_follows_rack_api_contract_1
get "/mysessionapp"
assert_response :ok
assert_equal "Hello from MySessionApp!", @response.body
assert_equal "Hello from MySessionApp!", session["hello"]
end
end
end
end
|