Sha256: 77edbc88ac4dca6415ab558017aa95958e149ac5def6864de285912ac3e58e45

Contents?: true

Size: 631 Bytes

Versions: 11

Compression:

Stored size: 631 Bytes

Contents

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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
eventmachine-le-1.1.7 tests/test_line_protocol.rb
eventmachine-le-1.1.6 tests/test_line_protocol.rb
eventmachine-le-1.1.5 tests/test_line_protocol.rb
eventmachine-le-1.1.4 tests/test_line_protocol.rb
eventmachine-le-1.1.4.beta.2 tests/test_line_protocol.rb
eventmachine-le-1.1.3 tests/test_line_protocol.rb
eventmachine-le-1.1.2 tests/test_line_protocol.rb
eventmachine-le-1.1.1 tests/test_line_protocol.rb
eventmachine-le-1.1.0 tests/test_line_protocol.rb
eventmachine-le-1.1.0.beta.2 tests/test_line_protocol.rb
eventmachine-le-1.1.0.beta.1 tests/test_line_protocol.rb