Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split TLS client tests to handle Go 1.21+ error strings #188

Merged
merged 3 commits into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions web/tls_config_go118_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
// Copyright 2023 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build go1.18 && !go1.21
// +build go1.18,!go1.21

package web

import (
"testing"
)

func TestServerBehaviour118(t *testing.T) {
testTables := []*TestInputs{
{
Name: `valid tls config yml and tls client with RequireAnyClientCert`,
YAMLConfigPath: "testdata/tls_config_noAuth.requireanyclientcert.good.yml",
UseTLSClient: true,
ExpectedError: ErrorMap["Bad certificate"],
},
{
Name: `valid tls config yml and tls client with RequireAndVerifyClientCert`,
YAMLConfigPath: "testdata/tls_config_noAuth.requireandverifyclientcert.good.yml",
UseTLSClient: true,
ExpectedError: ErrorMap["Bad certificate"],
},
{
Name: `valid tls config yml and tls client with RequireAndVerifyClientCert (present wrong certificate)`,
YAMLConfigPath: "testdata/tls_config_noAuth.requireandverifyclientcert.good.yml",
UseTLSClient: true,
ClientCertificate: "client2_selfsigned",
ExpectedError: ErrorMap["Bad certificate"],
},
}
for _, testInputs := range testTables {
t.Run(testInputs.Name, testInputs.Test)
}
}
48 changes: 48 additions & 0 deletions web/tls_config_go121_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
// Copyright 2023 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build go1.21
// +build go1.21

package web

import (
"testing"
)

func TestServerBehaviour121(t *testing.T) {
testTables := []*TestInputs{
{
Name: `valid tls config yml and tls client with RequireAnyClientCert`,
YAMLConfigPath: "testdata/tls_config_noAuth.requireanyclientcert.good.yml",
UseTLSClient: true,
ExpectedError: ErrorMap["Certificate required"],
},
{
Name: `valid tls config yml and tls client with RequireAndVerifyClientCert`,
YAMLConfigPath: "testdata/tls_config_noAuth.requireandverifyclientcert.good.yml",
UseTLSClient: true,
ExpectedError: ErrorMap["Certificate required"],
},
{
Name: `valid tls config yml and tls client with RequireAndVerifyClientCert (present wrong certificate)`,
YAMLConfigPath: "testdata/tls_config_noAuth.requireandverifyclientcert.good.yml",
UseTLSClient: true,
ClientCertificate: "client2_selfsigned",
ExpectedError: ErrorMap["Unknown CA"],
},
}
for _, testInputs := range testTables {
t.Run(testInputs.Name, testInputs.Test)
}
}
22 changes: 3 additions & 19 deletions web/tls_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ var (
"Invalid value": regexp.MustCompile(`invalid value for`),
"Invalid header": regexp.MustCompile(`HTTP header ".*" can not be configured`),
"Invalid client cert": regexp.MustCompile(`bad certificate`),
// Introduced in Go 1.21
"Certificate required": regexp.MustCompile(`certificate required`),
"Unknown CA": regexp.MustCompile(`unknown certificate authority`),
}
)

Expand Down Expand Up @@ -312,12 +315,6 @@ func TestServerBehaviour(t *testing.T) {
UseTLSClient: true,
ExpectedError: ErrorMap["No HTTP2 cipher"],
},
{
Name: `valid tls config yml and tls client with RequireAnyClientCert`,
YAMLConfigPath: "testdata/tls_config_noAuth.requireanyclientcert.good.yml",
UseTLSClient: true,
ExpectedError: ErrorMap["Bad certificate"],
},
{
Name: `valid headers config`,
YAMLConfigPath: "testdata/web_config_headers.good.yml",
Expand Down Expand Up @@ -351,26 +348,13 @@ func TestServerBehaviour(t *testing.T) {
ClientCertificate: "client_selfsigned",
ExpectedError: nil,
},
{
Name: `valid tls config yml and tls client with RequireAndVerifyClientCert`,
YAMLConfigPath: "testdata/tls_config_noAuth.requireandverifyclientcert.good.yml",
UseTLSClient: true,
ExpectedError: ErrorMap["Bad certificate"],
},
{
Name: `valid tls config yml and tls client with RequireAndVerifyClientCert (present certificate)`,
YAMLConfigPath: "testdata/tls_config_noAuth.requireandverifyclientcert.good.yml",
UseTLSClient: true,
ClientCertificate: "client_selfsigned",
ExpectedError: nil,
},
{
Name: `valid tls config yml and tls client with RequireAndVerifyClientCert (present wrong certificate)`,
YAMLConfigPath: "testdata/tls_config_noAuth.requireandverifyclientcert.good.yml",
UseTLSClient: true,
ClientCertificate: "client2_selfsigned",
ExpectedError: ErrorMap["Bad certificate"],
},
{
Name: `valid tls config yml and tls client with VerifyPeerCertificate (present good SAN DNS entry)`,
YAMLConfigPath: "testdata/web_config_auth_client_san.good.yaml",
Expand Down
Loading