Skip to content

Commit cccc461

Browse files
test: remove core tarantool server SSL cases
"empty" and "key_crt_client" test cases do not provide SSL files to a server started with SSL transport. In these cases server fails to start, and tests ensures that server fails. It doesn't related to go-tarantool connector testing in any way -- it's the test of a tarantool binary. Since testing core tarantool is not the part of go-tarantool project, this patch removes these cases. The main motivation of this patch is the next commit in the patchset, which separates check for server start and client success of fail.
1 parent e8d3d25 commit cccc461

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

ssl_test.go

-15
Original file line numberDiff line numberDiff line change
@@ -214,21 +214,6 @@ CaFile - optional,
214214
Ciphers - optional
215215
*/
216216
var tests = []test{
217-
{
218-
"empty",
219-
false,
220-
SslOpts{},
221-
SslOpts{},
222-
},
223-
{
224-
"key_crt_client",
225-
false,
226-
SslOpts{},
227-
SslOpts{
228-
KeyFile: "testdata/localhost.key",
229-
CertFile: "testdata/localhost.crt",
230-
},
231-
},
232217
{
233218
"key_crt_server",
234219
true,

0 commit comments

Comments
 (0)