浏览代码

fix test break

Darien Raymond 8 年之前
父节点
当前提交
3cc0783d9c
共有 2 个文件被更改,包括 5 次插入3 次删除
  1. 1 1
      transport/internet/tls/config.go
  2. 4 2
      transport/internet/websocket/ws_test.go

+ 1 - 1
transport/internet/tls/config.go

@@ -26,7 +26,7 @@ func (v *Config) BuildCertificates() []tls.Certificate {
 func (v *Config) GetTLSConfig() *tls.Config {
 	config := &tls.Config{
 		ClientSessionCache: globalSessionCache,
-		NextProtos:         []string{"http/2", "spdy/3"},
+		//NextProtos:         []string{"http/2.0", "spdy/3", "http/1.1"},
 	}
 	if v == nil {
 		return config

+ 4 - 2
transport/internet/websocket/ws_test.go

@@ -2,6 +2,8 @@ package websocket_test
 
 import (
 	"io/ioutil"
+	"os"
+	"path/filepath"
 	"testing"
 	"time"
 
@@ -100,8 +102,8 @@ func Test_listenWSAndDial_TLS(t *testing.T) {
 		AllowInsecure: true,
 		Certificate: []*v2tls.Certificate{
 			{
-				Certificate: ReadFile("./../../../testing/tls/cert.pem", assert),
-				Key:         ReadFile("./../../../testing/tls/key.pem", assert),
+				Certificate: ReadFile(filepath.Join(os.Getenv("GOPATH"), "src", "v2ray.com", "core", "testing", "tls", "cert.pem"), assert),
+				Key:         ReadFile(filepath.Join(os.Getenv("GOPATH"), "src", "v2ray.com", "core", "testing", "tls", "key.pem"), assert),
 			},
 		},
 	}