Я пытаюсь протестировать сетевое приложение. НО у меня мог бы быть узел в моем мозгу. Насколько я знаю, тесты в minitest проходят параллельно. Исходя из этого, я думаю, ясно, что, когда я выделить порт в настройках() он терпит неудачу, когда несколько тестов выполняются:Как написать несколько тестов для TCPSocket в Minitest
RuntimeError: Address already in use - bind(2) for nil port 2000 TCPServer new failed
Так что это лучшая практика, чтобы сделать несколько тестов на сервере, который прослушивает порт?
class ServerTest < Minitest::Test
def setup
# -- set env variable
ENV["conf"] = "./tc_gpio.config"
Thread::abort_on_exception = true
@my_thr = Thread.start() do
@server = Server.new
@server.start
assert @server.hi() != nil
end
end
def teardown
Thread.kill(@my_thr) # sends exit() to thr
end
def test_connect_and_disconnect
sleep 1
hostname = 'localhost'
port = 2000
s = TCPSocket.open(hostname, port)
my_s = s.recvmsg()
s.sendmsg(:set.to_s, 0) # Failes since a serialized object is expected
my_s2 = s.recvmsg()
assert_equal( "READY" , my_s[0])
assert_equal("eeFIN" , my_s2[0])
end
def test_send_command
# fill command
com = Command.new
com.type = :set
com.device_name = 'pump0'
com.device_address = 'resource0'
com.value = 2
serial_com = YAML::dump(com)
sleep 1
hostname = 'localhost'
port = 2000
s = TCPSocket.open(hostname, port)
my_s = s.recvmsg()
s.sendmsg(serial_com, 0)
my_s2 = s.recvmsg()
assert_equal( "READY" , my_s[0])
assert_equal("FIN" , my_s2[0])
end
end