Sha256: 72cdc7ca7d99b1108939e4000681a624474577d4fd053d12a19565a9ca09c183

Contents?: true

Size: 1.29 KB

Versions: 1

Compression:

Stored size: 1.29 KB

Contents

#!/usr/bin/env ruby
#
# SynCache tests
#
#   Copyright (c) 2002-2009  Dmitry Borodaenko <angdraug@debian.org>
#
#   This program is free software.
#   You can distribute/modify this program under the terms of
#   the GNU General Public License version 3 or later.
#
# vim: et sw=2 sts=2 ts=8 tw=0

require 'helper'

include SynCache

class TC_Cache < Test::Unit::TestCase

  def test_initialize
    cache = Cache.new(3, 5)
  end

  def test_flush
    cache = Cache.new(3, 5)
    cache['t'] = 'test'
    cache.flush
    assert_equal nil, cache['t']
  end

  def test_add_fetch
    cache = Cache.new(3, 5)
    cache['t'] = 'test'
    assert_equal 'test', cache['t']
  end

  def test_fetch_or_add
    cache = Cache.new(3, 5)
    assert_equal nil, cache['t']
    cache.fetch_or_add('t') { 'test' }
    assert_equal 'test', cache['t']
  end

  def test_truncate
    cache = Cache.new(3, 5)
    1.upto(5) {|i| cache[i] = i }
    1.upto(5) do |i|
      assert_equal i, cache[i]
    end
    6.upto(10) {|i| cache[i] = i }
    1.upto(5) do |i|
      assert_equal nil, cache[i]
    end
  end

  def test_timeout
    cache = Cache.new(0.01, 5)
    1.upto(5) {|i| cache[i] = i }
    1.upto(5) do |i|
      assert_equal i, cache[i]
    end
    sleep(0.02)
    1.upto(5) do |i|
      assert_equal nil, cache[i]
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
syncache-1.0.0 test/test_syncache.rb