2020-12-24 04:25:17 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-12-24 04:25:17 +00:00
|
|
|
|
|
|
|
package public
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-10-12 05:18:26 +00:00
|
|
|
"code.gitea.io/gitea/modules/container"
|
|
|
|
|
2020-12-24 04:25:17 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParseAcceptEncoding(t *testing.T) {
|
2022-01-20 17:46:10 +00:00
|
|
|
kases := []struct {
|
2020-12-24 04:25:17 +00:00
|
|
|
Header string
|
2022-10-12 05:18:26 +00:00
|
|
|
Expected container.Set[string]
|
2020-12-24 04:25:17 +00:00
|
|
|
}{
|
|
|
|
{
|
2022-10-12 05:18:26 +00:00
|
|
|
Header: "deflate, gzip;q=1.0, *;q=0.5",
|
|
|
|
Expected: container.SetOf("deflate", "gzip"),
|
2020-12-24 04:25:17 +00:00
|
|
|
},
|
|
|
|
{
|
2022-10-12 05:18:26 +00:00
|
|
|
Header: " gzip, deflate, br",
|
|
|
|
Expected: container.SetOf("deflate", "gzip", "br"),
|
2020-12-24 04:25:17 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, kase := range kases {
|
|
|
|
t.Run(kase.Header, func(t *testing.T) {
|
|
|
|
assert.EqualValues(t, kase.Expected, parseAcceptEncoding(kase.Header))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|