Sha256: d40d5fe7e09d639f398d42813175f1e85415339bfcc1fb64494de413852110d9
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
require_relative '../spec_helper' module Kamerling describe Handler do describe '#handle' do fakes :addr, :receiver, :registrar let(:handler) { Handler.new receiver: receiver, registrar: registrar } it 'handles RGST inputs' do input = 'RGST' + "\0" * 12 + '16B client UUID16B project UUID' handler.handle input, addr registrar.must_have_received :register, [{ addr: addr, client_uuid: UUID['16B client UUID'], project_uuid: UUID['16B project UUID'] }] end it 'handles RSLT inputs' do input = 'RSLT' + "\0" * 12 input << '16B client UUID16B project UUID16B task UUIDdata' handler.handle input, addr receiver.must_have_received :receive, [{ addr: addr, client_uuid: UUID['16B client UUID'], data: 'data', task_uuid: UUID['16B task UUID'] }] end it 'raises on unknown inputs' do ex = -> { handler.handle 'MESS', addr }.must_raise Handler::UnknownInput ex.message.must_equal 'MESS' end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kamerling-0.0.1 | spec/kamerling/handler_spec.rb |