File: test_session_test.rb

package info (click to toggle)
rails 2%3A7.2.2.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 43,352 kB
  • sloc: ruby: 349,799; javascript: 30,703; yacc: 46; sql: 43; sh: 29; makefile: 27
file content (83 lines) | stat: -rw-r--r-- 2,484 bytes parent folder | download | duplicates (2)
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
# frozen_string_literal: true

require "abstract_unit"
require "stringio"

class ActionController::TestSessionTest < ActiveSupport::TestCase
  def test_initialize_with_values
    session = ActionController::TestSession.new(one: "one", two: "two")
    assert_equal("one", session[:one])
    assert_equal("two", session[:two])
  end

  def test_setting_session_item_sets_item
    session = ActionController::TestSession.new
    session[:key] = "value"
    assert_equal("value", session[:key])
  end

  def test_calling_delete_removes_item_and_returns_its_value
    session = ActionController::TestSession.new
    session[:key] = "value"
    assert_equal("value", session[:key])
    assert_equal("value", session.delete(:key))
    assert_nil(session[:key])
  end

  def test_calling_update_with_params_passes_to_attributes
    session = ActionController::TestSession.new
    session.update("key" => "value")
    assert_equal("value", session[:key])
  end

  def test_clear_empties_session
    session = ActionController::TestSession.new(one: "one", two: "two")
    session.clear
    assert_nil(session[:one])
    assert_nil(session[:two])
  end

  def test_keys_and_values
    session = ActionController::TestSession.new(one: "1", two: "2")
    assert_equal %w(one two), session.keys
    assert_equal %w(1 2), session.values
  end

  def test_dig
    session = ActionController::TestSession.new(one: { two: { three: "3" } })
    assert_equal("3", session.dig(:one, :two, :three))
    assert_nil(session.dig(:ruby, :on, :rails))
  end

  def test_fetch_returns_default
    session = ActionController::TestSession.new(one: "1")
    assert_equal("2", session.fetch(:two, "2"))
  end

  def test_fetch_on_symbol_returns_value
    session = ActionController::TestSession.new(one: "1")
    assert_equal("1", session.fetch(:one))
  end

  def test_fetch_on_string_returns_value
    session = ActionController::TestSession.new(one: "1")
    assert_equal("1", session.fetch("one"))
  end

  def test_fetch_returns_block_value
    session = ActionController::TestSession.new(one: "1")
    assert_equal(2, session.fetch("2") { |key| key.to_i })
  end

  def test_session_id
    session = ActionController::TestSession.new
    assert_instance_of String, session.id.public_id
    assert_equal(session.id.public_id, session["session_id"])
  end

  def test_merge!
    session = ActionController::TestSession.new
    session.merge!({ key: "value" })
    assert_equal("value", session["key"])
  end
end