blob: b061af0450fe35153f2875749f743fe2f7c2f164 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
# frozen_string_literal: true
require './test/helper'
require 'tempfile'
require 'dtas/unix_server'
require 'stringio'
class TestUNIXServer < Testcase
def setup
@tmp = Tempfile.new(%w(dtas-unix_server-test .sock))
File.unlink(@tmp.path)
@clients = []
@srv = DTAS::UNIXServer.new(@tmp.path)
end
def test_close
assert File.exist?(@tmp.path)
assert_nil @srv.close
refute File.exist?(@tmp.path)
end
def teardown
@clients.each { |io| io.close unless io.closed? }
if File.exist?(@tmp.path)
@tmp.close!
else
@tmp.close
end
end
def new_client
c = Socket.new(:AF_UNIX, :SEQPACKET, 0)
@clients << c
c.connect(Socket.pack_sockaddr_un(@tmp.path))
c
end
def test_server_loop
client = new_client
@srv.run_once # nothing
msgs = []
clients = []
client.send("HELLO", Socket::MSG_EOR)
@srv.run_once do |c, msg|
clients << c
msgs << msg
end
assert_equal %w(HELLO), msgs, clients.inspect
assert_equal 1, clients.size
c = clients[0]
c.emit "HIHI"
assert_equal "HIHI", client.recv(4)
end
end
|