Sha256: d49d324d26e51d5ff88eefe999a067c5067766eea80d6ae3b42688ee2eb246fe

Contents?: true

Size: 1.91 KB

Versions: 1

Compression:

Stored size: 1.91 KB

Contents

# Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, reactor to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

require 'async/io/tcp_socket'

RSpec.describe Async::IO::TCPSocket do
	include_context Async::RSpec::Reactor
	
	# Shared port for localhost network tests.
	let(:server_address) {Async::IO::Address.tcp("localhost", 6788)}
	let(:data) {"The quick brown fox jumped over the lazy dog."}
	
	describe 'basic tcp server' do
		it "should start server and send data" do
			# Accept a single incoming connection and then finish.
			server_task = reactor.async do |task|
				server = Async::IO::TCPServer.new("localhost", 6788)
				peer, address = server.accept
				
				data = peer.gets
				peer.puts(data)
				
				peer.close
				server.close
			end
			
			client = Async::IO::TCPSocket.new("localhost", 6788)
			
			client.puts(data)
			expect(client.gets).to be == data
			
			client.close
			server_task.wait
		end
	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
async-io-1.4.0 spec/async/io/tcp_socket_spec.rb