about summary refs log tree commit homepage
path: root/test/test_mcache.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_mcache.rb')
-rw-r--r--test/test_mcache.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/test_mcache.rb b/test/test_mcache.rb
new file mode 100644
index 0000000..6957021
--- /dev/null
+++ b/test/test_mcache.rb
@@ -0,0 +1,19 @@
+# Copyright (C) 2016 all contributors <dtas-all@nongnu.org>
+# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
+# frozen_string_literal: true
+require './test/helper'
+require 'dtas/mcache'
+
+class TestMcache < Testcase
+  def test_mcache
+    mc = DTAS::Mcache.new
+    exist = nil
+    mc.lookup('hello') { |infile, hash| exist = hash }
+    assert_kind_of Hash, exist
+    assert_equal 'hello', exist[:infile]
+    assert_operator exist[:btime], :<=, DTAS.now
+    assert_same exist, mc.lookup('hello')
+    assert_nil mc.lookup('HELLO')
+    assert_same exist, mc.lookup('hello'), 'no change after miss'
+  end
+end