File: test_line_protocol.rb

package info (click to toggle)
ruby-eventmachine 1.0.3-6%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,000 kB
  • ctags: 3,178
  • sloc: ruby: 8,641; cpp: 5,217; java: 827; makefile: 5
file content (33 lines) | stat: -rw-r--r-- 632 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require 'em_test_helper'

class TestLineProtocol < Test::Unit::TestCase
  class LineProtocolTestClass
    include EM::Protocols::LineProtocol

    def lines
      @lines ||= []
    end

    def receive_line(line)
      lines << line
    end
  end

  def setup
    @proto = LineProtocolTestClass.new
  end

  def test_simple_split_line
    @proto.receive_data("this is")
    assert_equal([], @proto.lines)

    @proto.receive_data(" a test\n")
    assert_equal(["this is a test"], @proto.lines)
  end

  def test_simple_lines
    @proto.receive_data("aaa\nbbb\r\nccc\nddd")
    assert_equal(%w(aaa bbb ccc), @proto.lines)
  end

end