forked from grpc/grpc-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTTPVersionParserTests.swift
85 lines (72 loc) · 3.27 KB
/
HTTPVersionParserTests.swift
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
* Copyright 2020, gRPC Authors All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@testable import GRPC
import NIOCore
import XCTest
class HTTPVersionParserTests: GRPCTestCase {
private let preface = "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n"
func testHTTP2ExactlyTheRightBytes() {
let buffer = ByteBuffer(string: self.preface)
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP2ConnectionPreface(buffer), .accepted)
}
func testHTTP2TheRightBytesAndMore() {
var buffer = ByteBuffer(string: self.preface)
buffer.writeRepeatingByte(42, count: 1024)
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP2ConnectionPreface(buffer), .accepted)
}
func testHTTP2NoBytes() {
let empty = ByteBuffer()
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP2ConnectionPreface(empty), .notEnoughBytes)
}
func testHTTP2NotEnoughBytes() {
var buffer = ByteBuffer(string: self.preface)
buffer.moveWriterIndex(to: buffer.writerIndex - 1)
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP2ConnectionPreface(buffer), .notEnoughBytes)
}
func testHTTP2EnoughOfTheWrongBytes() {
let buffer = ByteBuffer(string: String(self.preface.reversed()))
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP2ConnectionPreface(buffer), .rejected)
}
func testHTTP1RequestLine() {
let buffer = ByteBuffer(staticString: "GET https://grpc.io/index.html HTTP/1.1\r\n")
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP1RequestLine(buffer), .accepted)
}
func testHTTP1RequestLineAndMore() {
let buffer = ByteBuffer(staticString: "GET https://grpc.io/index.html HTTP/1.1\r\nMore")
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP1RequestLine(buffer), .accepted)
}
func testHTTP1RequestLineWithoutCRLF() {
let buffer = ByteBuffer(staticString: "GET https://grpc.io/index.html HTTP/1.1")
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP1RequestLine(buffer), .notEnoughBytes)
}
func testHTTP1NoBytes() {
let empty = ByteBuffer()
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP1RequestLine(empty), .notEnoughBytes)
}
func testHTTP1IncompleteRequestLine() {
let buffer = ByteBuffer(staticString: "GET https://grpc.io/index.html")
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP1RequestLine(buffer), .notEnoughBytes)
}
func testHTTP1MalformedVersion() {
let buffer = ByteBuffer(staticString: "GET https://grpc.io/index.html ptth/1.1\r\n")
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP1RequestLine(buffer), .rejected)
}
func testTooManyIncorrectBytes() {
let buffer = ByteBuffer(repeating: UInt8(ascii: "\r"), count: 2048)
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP2ConnectionPreface(buffer), .rejected)
XCTAssertEqual(HTTPVersionParser.prefixedWithHTTP1RequestLine(buffer), .rejected)
}
}