mirror of
https://github.com/caddyserver/caddy.git
synced 2026-04-26 10:49:51 -04:00
Some checks failed
Tests / test (./cmd/caddy/caddy, ~1.26.0, ubuntu-latest, 0, 1.26, linux) (push) Failing after 1m17s
Tests / test (s390x on IBM Z) (push) Has been skipped
Tests / goreleaser-check (push) Has been skipped
Cross-Build / build (~1.26.0, 1.26, aix) (push) Successful in 1m24s
Cross-Build / build (~1.26.0, 1.26, darwin) (push) Successful in 1m27s
Cross-Build / build (~1.26.0, 1.26, dragonfly) (push) Successful in 1m23s
Cross-Build / build (~1.26.0, 1.26, freebsd) (push) Successful in 1m22s
Cross-Build / build (~1.26.0, 1.26, illumos) (push) Successful in 1m21s
Cross-Build / build (~1.26.0, 1.26, linux) (push) Successful in 1m22s
Cross-Build / build (~1.26.0, 1.26, netbsd) (push) Successful in 1m22s
Cross-Build / build (~1.26.0, 1.26, openbsd) (push) Successful in 1m27s
Cross-Build / build (~1.26.0, 1.26, solaris) (push) Successful in 1m25s
Cross-Build / build (~1.26.0, 1.26, windows) (push) Successful in 1m27s
Lint / lint (ubuntu-latest, linux) (push) Successful in 1m59s
Lint / govulncheck (push) Successful in 1m46s
Lint / dependency-review (push) Failing after 24s
OpenSSF Scorecard supply-chain security / Scorecard analysis (push) Failing after 6m45s
Tests / test (./cmd/caddy/caddy, ~1.26.0, macos-14, 0, 1.26, mac) (push) Has been cancelled
Tests / test (./cmd/caddy/caddy.exe, ~1.26.0, windows-latest, True, 1.26, windows) (push) Has been cancelled
Lint / lint (macos-14, mac) (push) Has been cancelled
Lint / lint (windows-latest, windows) (push) Has been cancelled
48 lines
884 B
Go
48 lines
884 B
Go
package caddyhttp
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestHTTPSRRALPNsDefaultProtocols(t *testing.T) {
|
|
srv := &Server{}
|
|
|
|
got := httpsRRALPNs(srv)
|
|
want := []string{"h3", "h2", "http/1.1"}
|
|
|
|
if !reflect.DeepEqual(got, want) {
|
|
t.Fatalf("unexpected ALPN values: got %v want %v", got, want)
|
|
}
|
|
}
|
|
|
|
func TestHTTPSRRALPNsListenProtocolOverrides(t *testing.T) {
|
|
srv := &Server{
|
|
Protocols: []string{"h1", "h2"},
|
|
ListenProtocols: [][]string{
|
|
{"h1"},
|
|
nil,
|
|
{},
|
|
{"h3", ""},
|
|
},
|
|
}
|
|
|
|
got := httpsRRALPNs(srv)
|
|
want := []string{"h3", "h2", "http/1.1"}
|
|
|
|
if !reflect.DeepEqual(got, want) {
|
|
t.Fatalf("unexpected ALPN values: got %v want %v", got, want)
|
|
}
|
|
}
|
|
|
|
func TestHTTPSRRALPNsIgnoresH2COnly(t *testing.T) {
|
|
srv := &Server{
|
|
Protocols: []string{"h2c"},
|
|
}
|
|
|
|
got := httpsRRALPNs(srv)
|
|
if len(got) != 0 {
|
|
t.Fatalf("unexpected ALPN values: got %v want none", got)
|
|
}
|
|
}
|