# Copyright, 2017, by Samuel G. D. Williams. # # 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, subject 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. RSpec.describe Async::Reactor do # Shared port for localhost network tests. let(:port) {6779} def run_echo_server # Accept a single incoming connection and then finish. subject.async(server) do |server, task| task.with(server.accept) do |peer| data = peer.read(512) peer.write(data) end end yield subject.run server.close end describe 'basic tcp server' do # These may block: let(:server) {TCPServer.new("localhost", port)} let(:client) {TCPSocket.new("localhost", port)} let(:data) {"The quick brown fox jumped over the lazy dog."} it "should start server and send data" do run_echo_server do subject.with(client) do |client| client.write(data) expect(client.read(512)).to be == data end end expect(client).to be_closed end end describe 'non-blocking tcp connect' do # These may block: let(:server) {TCPServer.new("localhost", port)} let(:data) {"The quick brown fox jumped over the lazy dog."} it "should start server and send data" do run_echo_server do subject.async do |task| Async::TCPSocket.connect("localhost", port) do |client| client.write(data) expect(client.read(512)).to be == data end end end end it "can connect socket and read/write in a different task" do socket = nil run_echo_server do subject.async do |task| socket = Async::TCPSocket.connect("localhost", port) # Stop the reactor once the connection was made. subject.stop end subject.run expect(socket).to_not be_nil subject.async(socket) do |client| client.write(data) expect(client.read(512)).to be == data end subject.run end end it "can't use a socket in nested tasks" do socket = nil run_echo_server do subject.async do |task| socket = Async::TCPSocket.connect("localhost", port) # I'm not sure if this is the right behaviour or not. Without a significant amont of work, async sockets are tied to the task that creates them. expect do subject.async(socket) do |client| client.write(data) expect(client.read(512)).to be == data end end.to raise_error(ArgumentError, /already registered with selector/) end end end end end