mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-08 19:28:21 -05:00
42 lines
1.4 KiB
Go
42 lines
1.4 KiB
Go
|
package http
|
||
|
|
||
|
import (
|
||
|
"bufio"
|
||
|
"github.com/v2ray/v2ray-core/testing/assert"
|
||
|
"net/http"
|
||
|
"strings"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestHopByHopHeadersStrip(t *testing.T) {
|
||
|
var rawRequest = `GET /pkg/net/http/ HTTP/1.1
|
||
|
Host: golang.org
|
||
|
Connection: keep-alive,Foo, Bar
|
||
|
Foo: foo
|
||
|
Bar: bar
|
||
|
Proxy-Connection: keep-alive
|
||
|
Proxy-Authenticate: abc
|
||
|
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; de-de) AppleWebKit/523.10.3 (KHTML, like Gecko) Version/3.0.4 Safari/523.10
|
||
|
Accept-Encoding: gzip
|
||
|
Accept-Charset: ISO-8859-1,UTF-8;q=0.7,*;q=0.7
|
||
|
Cache-Control: no-cache
|
||
|
Accept-Language: de,en;q=0.7,en-us;q=0.3
|
||
|
|
||
|
`
|
||
|
b := bufio.NewReader(strings.NewReader(rawRequest))
|
||
|
req, err := http.ReadRequest(b)
|
||
|
assert.Error(err).IsNil()
|
||
|
assert.StringLiteral(req.Header.Get("Foo")).Equals("foo")
|
||
|
assert.StringLiteral(req.Header.Get("Bar")).Equals("bar")
|
||
|
assert.StringLiteral(req.Header.Get("Connection")).Equals("keep-alive,Foo, Bar")
|
||
|
assert.StringLiteral(req.Header.Get("Proxy-Connection")).Equals("keep-alive")
|
||
|
assert.StringLiteral(req.Header.Get("Proxy-Authenticate")).Equals("abc")
|
||
|
|
||
|
stripHopByHopHeaders(req)
|
||
|
assert.StringLiteral(req.Header.Get("Connection")).Equals("close")
|
||
|
assert.StringLiteral(req.Header.Get("Foo")).Equals("")
|
||
|
assert.StringLiteral(req.Header.Get("Bar")).Equals("")
|
||
|
assert.StringLiteral(req.Header.Get("Proxy-Connection")).Equals("")
|
||
|
assert.StringLiteral(req.Header.Get("Proxy-Authenticate")).Equals("")
|
||
|
}
|