summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/namespaced_session_store_spec.rb
blob: e177c44ad671c278bc42831d9d535c49eb441b5d (plain)
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
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::NamespacedSessionStore do
  let(:key) { :some_key }

  context 'current session' do
    subject { described_class.new(key) }

    it 'stores data under the specified key' do
      Gitlab::Session.with_session({}) do
        subject[:new_data] = 123

        expect(Thread.current[:session_storage][key]).to eq(new_data: 123)
      end
    end

    it 'retrieves data from the given key' do
      Thread.current[:session_storage] = { key => { existing_data: 123 } }

      expect(subject[:existing_data]).to eq 123
    end
  end

  context 'passed in session' do
    let(:data) { { 'data' => 42 } }
    let(:session) { { 'some_key' => data } }

    subject { described_class.new(key, session.with_indifferent_access) }

    it 'retrieves data from the given key' do
      expect(subject['data']).to eq 42
    end
  end
end