Sha256: 3f1901a4064e479e1fb5ff7354aedc3fc6223d41fdd1e1af832824425446cad3

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

require File.expand_path('../../../../spec/helper', __FILE__)

spec_require 'localmemcache'
spec_require 'sequel'

class SpecSession < Ramaze::Controller
  map '/'
  engine :None

  def index
    'No session here'
  end

  def init
    session[:counter] = 0
  end

  def view
    session[:counter]
  end

  def increment
    session[:counter] += 1
  end

  def decrement
    session[:counter] -= 1
  end

  def reset
    session.clear
  end
end

Ramaze::Cache.options.session = Ramaze::Cache::LocalMemCache

describe 'Sessions with Ramaze::Cache::LocalMemCache' do
  behaves_like :rack_test

  should 'initiate session as needed' do
    get '/'
    last_response.body.should == 'No session here'
    last_response['Set-Cookie'].should == nil

    get('/init')
    last_response.body.should == '0'

    1.upto(10) do |n|
      get('/increment').body.should == n.to_s
    end

    get('/reset')
    get('/view').body.should == ''
    get('/init').body.should == '0'

    -1.downto(-10) do |n|
      get('/decrement').body.should == n.to_s
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ramaze-2012.12.08 spec/ramaze/session/localmemcache.rb