aboutsummaryrefslogtreecommitdiffstats
path: root/test/plum/test_connection_utils.rb
blob: 785c74c24c485361d233d4db46df5a1a5f79f1cc (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
require "test_helper"

using BinaryString

class ServerConnectionUtilsTest < Minitest::Test
  def test_server_ping
    open_server_connection { |con|
      con.ping("ABCABCAB")

      last = sent_frames.last
      assert_equal(:ping, last.type)
      assert_equal([], last.flags)
      assert_equal("ABCABCAB", last.payload)
    }
  end

  def test_server_goaway
    open_server_connection { |con|
      con << Frame::Headers.new(3, "", end_stream: true, end_headers: true).assemble
      con.goaway(:stream_closed)

      last = sent_frames.last
      assert_equal(:goaway, last.type)
      assert_equal([], last.flags)
      assert_equal(3, last.payload.uint32)
      assert_equal(HTTPError::ERROR_CODES[:stream_closed], last.payload.uint32(4))
    }
  end

  def test_push_enabled
    open_server_connection { |con|
      con << Frame::Settings.new(enable_push: 0).assemble
      assert_equal(false, con.push_enabled?)
      con << Frame::Settings.new(enable_push: 1).assemble
      assert_equal(true, con.push_enabled?)
    }
  end
end