We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7de0237 commit bdd112eCopy full SHA for bdd112e
tests/integration.rs
@@ -61,6 +61,30 @@ t! {
61
;
62
}
63
64
+// Test that clients get responses when the server sends a response with
65
+// headers that are too large by just a bit.
66
+t! {
67
+ long_header_response,
68
+ client:
69
+ request:
70
+ ;
71
+ response:
72
+ status: 500,
73
+ headers: {
74
+ },
75
76
+ server:
77
78
79
80
81
82
+ // Just above DEFAULT_SETTINGS_MAX_HEADER_LIST_SIZE.
83
+ "error" => ("a".repeat(16 << 10 + 1)),
84
85
86
+}
87
+
88
t! {
89
get_body,
90
client:
0 commit comments