░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/gems/request_context/spec/request_context
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: session_spec.rb
# frozen_string_literal: true # # Copyright (C) 2015 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. require "spec_helper" describe "RequestContext::Session" do it "finds the session_id from the rack session and add it a cookie" do app_class = Class.new do def config self end def session_options {} end end Rails.application = app_class.new env = { "rack.session.options" => { id: "abc" } } RequestContext::Session.new(lambda do |_env| [200, {}, []] end).call(env) expect(env["action_dispatch.cookies"]["log_session_id"]).to eq "abc" end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 generator_spec.rb
RB
8 KB
2023-09-24 03:36
EDIT
📄 session_spec.rb
RB
1.2 KB
2023-09-24 03:36
EDIT