test/test_msgthr.rb in msgthr-1.0.1 vs test/test_msgthr.rb in msgthr-1.1.0

- old
+ new

@@ -9,12 +9,13 @@ thr.add('a', %w(c b), 'abc') thr.add('b', %w(c), 'B') thr.add('c', nil, 'c') thr.add('D', nil, 'D') thr.add('d', %w(missing), 'd') - thr.thread! + rset = thr.thread! rootset = thr.order! { |c| c.sort_by!(&:mid) } + assert_same rset, rootset assert_equal %w(D c missing), rootset.map(&:mid) assert_equal 'D', rootset[0].msg assert_equal %w(b), rootset[1].children.map(&:mid) out = ''.b thr.walk_thread do |level, container, index| @@ -28,9 +29,70 @@ 1. c 0. B 0. abc 2. [missing: <missing>] 0. d +EOF + assert_equal exp, out + end + + def test_order_in_thread + thr = Msgthr.new + thr.add(1, nil, 'a') + thr.add(2, [1], 'b') + thr.thread! do |ary| + ary.sort_by! do |cont| + cur = cont.topmost + cur ? cur : 0 + end + end + out = '' + thr.walk_thread do |level, container, index| + msg = container.msg + out << "#{level} [#{index}] #{msg}\n" + end + exp = <<EOF.b +0 [0] a +1 [0] b +EOF + assert_equal exp, out + end + + def test_out_of_order + thr = Msgthr.new + thr.thread! + assert_raise(Msgthr::StateError) { thr.add(1, nil, 'a') } + thr.clear # make things good again, following should not raise: + thr.add(1, nil, 'a') + thr.thread! + assert_raise(Msgthr::StateError) { thr.thread! } + + out = [] + thr.walk_thread do |level, container, index| + msg = container.msg + out << "#{level} [#{index}] #{msg}" + end + assert_equal [ '0 [0] a' ], out + assert_raise(Msgthr::StateError) { thr.thread! { raise "DO NOT CALL" } } + assert_raise(Msgthr::StateError) { thr.order! { |_| raise "DO NOT CALL" } } + + # this is legal, even if non-sensical + thr.clear + thr.walk_thread { |level, container, index| raise "DO NOT CALL" } + end + + def test_short_add_to_walk + thr = Msgthr.new + thr.add(1, nil, 'a') + thr.add(2, [1], 'b') + out = '' + thr.walk_thread do |level, container, index| + msg = container.msg + out << "#{level} [#{index}] #{msg}\n" + end + exp = <<EOF.b +0 [0] a +1 [0] b EOF assert_equal exp, out end end