mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-30 17:53:21 -04:00 
			
		
		
		
	add positive tests to TestTLS function (#5330)
Signed-off-by: Marius Kimmina <mar.kimmina@gmail.com>
This commit is contained in:
		| @@ -17,6 +17,12 @@ func TestTLS(t *testing.T) { | |||||||
| 		expectedErrContent string // substring from the expected error. Empty for positive cases. | 		expectedErrContent string // substring from the expected error. Empty for positive cases. | ||||||
| 	}{ | 	}{ | ||||||
| 		// positive | 		// positive | ||||||
|  | 		{"tls test_cert.pem test_key.pem test_ca.pem", false, "", ""}, | ||||||
|  | 		{"tls test_cert.pem test_key.pem test_ca.pem {\nclient_auth nocert\n}", false, "", ""}, | ||||||
|  | 		{"tls test_cert.pem test_key.pem test_ca.pem {\nclient_auth request\n}", false, "", ""}, | ||||||
|  | 		{"tls test_cert.pem test_key.pem test_ca.pem {\nclient_auth require\n}", false, "", ""}, | ||||||
|  | 		{"tls test_cert.pem test_key.pem test_ca.pem {\nclient_auth verify_if_given\n}", false, "", ""}, | ||||||
|  | 		{"tls test_cert.pem test_key.pem test_ca.pem {\nclient_auth require_and_verify\n}", false, "", ""}, | ||||||
| 		// negative | 		// negative | ||||||
| 		{"tls test_cert.pem test_key.pem test_ca.pem {\nunknown\n}", true, "", "unknown option"}, | 		{"tls test_cert.pem test_key.pem test_ca.pem {\nunknown\n}", true, "", "unknown option"}, | ||||||
| 		// client_auth takes exactly one parameter, which must be one of known keywords. | 		// client_auth takes exactly one parameter, which must be one of known keywords. | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user