-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split TLS client tests to handle Go 1.21+ error strings (#188)
* Split TLS client tests to handle Go 1.21+ error strings Go 1.21 introduced more granular / specific error strings for certain "bad certificate" scenarios[1]. As such, we need to split these tests and conditionally compile based on build tags. Fixes: #171, #187 [1]: golang/go@62a9948 --------- Signed-off-by: Daniel Swarbrick <[email protected]> Co-authored-by: Ben Kochie <[email protected]>
- Loading branch information
1 parent
da3e658
commit 342e23e
Showing
3 changed files
with
99 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters