From 3e09ac0c10c95bb24a08af62393b4f761e2743d0 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 24 Aug 2013 09:54:45 +0000 Subject: initial commit --- test/test_sink.rb | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 test/test_sink.rb (limited to 'test/test_sink.rb') diff --git a/test/test_sink.rb b/test/test_sink.rb new file mode 100644 index 0000000..959bbf0 --- /dev/null +++ b/test/test_sink.rb @@ -0,0 +1,32 @@ +# -*- encoding: binary -*- +# Copyright (C) 2013, Eric Wong +# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) +require './test/helper' +require 'dtas/sink' +require 'yaml' + +class TestSink < Minitest::Unit::TestCase + def test_serialize_reload + sink = DTAS::Sink.new + sink.name = "DAC" + hash = sink.to_hsh + assert_kind_of Hash, hash + refute_match(%r{ruby}i, hash.to_yaml, "ruby guts exposed: #{hash}") + + s2 = DTAS::Sink.load(hash) + assert_equal sink.to_hsh, s2.to_hsh + assert_equal hash, s2.to_hsh + end + + def test_name + sink = DTAS::Sink.new + sink.name = "dac1" + assert_equal({"name" => "dac1"}, sink.to_hsh) + end + + def test_inactive_load + orig = { "active" => false }.freeze + tmp = orig.to_yaml + assert_equal orig, YAML.load(tmp) + end +end -- cgit v1.2.3-24-ge0c7