raindrops.git  about / heads / tags
real-time stats for preforking Rack servers
blob 12a35bac197da7a464110b419bb0837a96bba35e 1425 bytes (raw)
$ git show HEAD:test/test_linux_all_tcp_listen_stats.rb	# shows this blob on the CLI

 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
56
57
58
59
60
61
62
63
64
65
66
67
 
# -*- encoding: binary -*-
# frozen_string_literal: false
require 'test/unit'
require 'socket'
require 'raindrops'
require 'pp'
$stderr.sync = $stdout.sync = true

class TestLinuxAllTcpListenStats < Test::Unit::TestCase
  include Raindrops::Linux
  TEST_ADDR = ENV['UNICORN_TEST_ADDR'] || '127.0.0.1'

  def test_print_all
    puts "EVERYTHING"
    pp Raindrops::Linux.tcp_listener_stats
    puts("-" * 72)
  end if $stdout.tty?

  def setup
    @socks = []
  end

  def teardown
    @socks.each { |io| io.closed? or io.close }
  end

  def new_server
    s = TCPServer.new TEST_ADDR, 0
    @socks << s
    [ s, s.addr[1] ]
  end

  def new_client(port)
    s = TCPSocket.new("127.0.0.1", port)
    @socks << s
    s
  end

  def new_accept(srv)
    c = srv.accept
    @socks << c
    c
  end

  def test_all_ports
    srv, port = new_server
    addr = "#{TEST_ADDR}:#{port}"
    all = Raindrops::Linux.tcp_listener_stats
    assert_equal [0,0], all[addr].to_a

    new_client(port)
    all = Raindrops::Linux.tcp_listener_stats
    assert_equal [0,1], all[addr].to_a

    new_client(port)
    all = Raindrops::Linux.tcp_listener_stats
    assert_equal [0,2], all[addr].to_a

    new_accept(srv)
    all = Raindrops::Linux.tcp_listener_stats
    assert_equal [1,1], all[addr].to_a

    new_accept(srv)
    all = Raindrops::Linux.tcp_listener_stats
    assert_equal [2,0], all[addr].to_a
  end
end if RUBY_PLATFORM =~ /linux/

git clone https://yhbt.net/raindrops.git