Some checks are pending
/ release (push) Waiting to run
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-e2e (push) Blocked by required conditions
testing / test-remote-cacher (redis) (push) Blocked by required conditions
testing / test-remote-cacher (valkey) (push) Blocked by required conditions
testing / test-remote-cacher (garnet) (push) Blocked by required conditions
testing / test-remote-cacher (redict) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
testing / security-check (push) Blocked by required conditions
34 lines
686 B
Go
34 lines
686 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package public
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forgejo.org/modules/container"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestParseAcceptEncoding(t *testing.T) {
|
|
kases := []struct {
|
|
Header string
|
|
Expected container.Set[string]
|
|
}{
|
|
{
|
|
Header: "deflate, gzip;q=1.0, *;q=0.5",
|
|
Expected: container.SetOf("deflate", "gzip"),
|
|
},
|
|
{
|
|
Header: " gzip, deflate, br",
|
|
Expected: container.SetOf("deflate", "gzip", "br"),
|
|
},
|
|
}
|
|
|
|
for _, kase := range kases {
|
|
t.Run(kase.Header, func(t *testing.T) {
|
|
assert.EqualValues(t, kase.Expected, parseAcceptEncoding(kase.Header))
|
|
})
|
|
}
|
|
}
|