Skip to content

Commit

Permalink
fix: disable revocation test
Browse files Browse the repository at this point in the history
  • Loading branch information
fortuna committed Nov 7, 2024
1 parent 111d01c commit 851a01a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions transport/tls/stream_dialer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ package tls
import (
"context"
"crypto/x509"
"runtime"
"testing"

"github.com/Jigsaw-Code/outline-sdk/transport"
Expand Down Expand Up @@ -55,9 +54,10 @@ func TestExpired(t *testing.T) {
}

func TestRevoked(t *testing.T) {
if runtime.GOOS == "linux" || runtime.GOOS == "windows" {
t.Skip("Certificate revocation list is not up-to-date in Linux and Windows")
}
t.Skip("Certificate revocation list is not working")

// TODO(fortuna): implement proper revocation test.
// See https://www.cossacklabs.com/blog/tls-validation-implementing-ocsp-and-crl-in-go/

sd, err := NewStreamDialer(&transport.TCPDialer{})
require.NoError(t, err)
Expand Down

0 comments on commit 851a01a

Please sign in to comment.