Test TLS connection with pg_stat_ssl

Because of the nbconn wrapper it is no longer possible to check if the
conn is a *tls.Conn directly. This is actually a more reliable test
anyway.
pull/1281/head
Jack Christensen 2022-06-25 13:43:16 -05:00
parent 82ca09e645
commit 125ee9670e
1 changed files with 5 additions and 4 deletions

View File

@ -4,7 +4,6 @@ import (
"bytes"
"compress/gzip"
"context"
"crypto/tls"
"errors"
"fmt"
"io"
@ -66,9 +65,11 @@ func TestConnectTLS(t *testing.T) {
conn, err := pgconn.Connect(context.Background(), connString)
require.NoError(t, err)
if _, ok := conn.Conn().(*tls.Conn); !ok {
t.Error("not a TLS connection")
}
result := conn.ExecParams(context.Background(), `select ssl from pg_stat_ssl where pg_backend_pid() = pid;`, nil, nil, nil, nil).Read()
require.NoError(t, result.Err)
require.Len(t, result.Rows, 1)
require.Len(t, result.Rows[0], 1)
require.Equalf(t, "t", string(result.Rows[0][0]), "not a TLS connection")
closeConn(t, conn)
}