2020-12-24 05:25:17 +01:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package public
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-10-12 07:18:26 +02:00
|
|
|
"code.gitea.io/gitea/modules/container"
|
|
|
|
|
2020-12-24 05:25:17 +01:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParseAcceptEncoding(t *testing.T) {
|
2022-01-20 18:46:10 +01:00
|
|
|
kases := []struct {
|
2020-12-24 05:25:17 +01:00
|
|
|
Header string
|
2022-10-12 07:18:26 +02:00
|
|
|
Expected container.Set[string]
|
2020-12-24 05:25:17 +01:00
|
|
|
}{
|
|
|
|
{
|
2022-10-12 07:18:26 +02:00
|
|
|
Header: "deflate, gzip;q=1.0, *;q=0.5",
|
|
|
|
Expected: container.SetOf("deflate", "gzip"),
|
2020-12-24 05:25:17 +01:00
|
|
|
},
|
|
|
|
{
|
2022-10-12 07:18:26 +02:00
|
|
|
Header: " gzip, deflate, br",
|
|
|
|
Expected: container.SetOf("deflate", "gzip", "br"),
|
2020-12-24 05:25:17 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, kase := range kases {
|
|
|
|
t.Run(kase.Header, func(t *testing.T) {
|
|
|
|
assert.EqualValues(t, kase.Expected, parseAcceptEncoding(kase.Header))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|