diff options
| -rw-r--r-- | client/client_test.go | 3 | ||||
| -rw-r--r-- | lib/util_test.go | 1 | ||||
| -rw-r--r-- | server/handlers_test.go | 5 | ||||
| -rw-r--r-- | server/signer/signer_test.go | 3 | ||||
| -rw-r--r-- | server/store/store_test.go | 4 | 
5 files changed, 0 insertions, 16 deletions
| diff --git a/client/client_test.go b/client/client_test.go index b7df3fd..713b2d5 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -19,7 +19,6 @@ import (  )  func TestLoadCert(t *testing.T) { -	t.Parallel()  	priv, _ := ssh.ParseRawPrivateKey(testdata.Priv)  	key := priv.(*rsa.PrivateKey)  	pub, _ := ssh.NewPublicKey(&key.PublicKey) @@ -59,7 +58,6 @@ func TestLoadCert(t *testing.T) {  }  func TestSignGood(t *testing.T) { -	t.Parallel()  	res := &lib.SignResponse{  		Status:   "ok",  		Response: string(testdata.Cert), @@ -88,7 +86,6 @@ func TestSignGood(t *testing.T) {  }  func TestSignBad(t *testing.T) { -	t.Parallel()  	res := &lib.SignResponse{  		Status:   "error",  		Response: `{"response": "error"}`, diff --git a/lib/util_test.go b/lib/util_test.go index b1f18a8..17e08f3 100644 --- a/lib/util_test.go +++ b/lib/util_test.go @@ -9,7 +9,6 @@ import (  )  func TestGetPublicKey(t *testing.T) { -	t.Parallel()  	c, _, _, _, _ := ssh.ParseAuthorizedKey(testdata.Cert)  	if !reflect.DeepEqual(GetPublicKey(c.(*ssh.Certificate)), testdata.Cert) {  		t.Fail() diff --git a/server/handlers_test.go b/server/handlers_test.go index b2646a3..a08d638 100644 --- a/server/handlers_test.go +++ b/server/handlers_test.go @@ -49,7 +49,6 @@ func newContext(t *testing.T) *appContext {  }  func TestLoginHandler(t *testing.T) { -	t.Parallel()  	req, _ := http.NewRequest("GET", "/auth/login", nil)  	resp := httptest.NewRecorder()  	loginHandler(newContext(t), resp, req) @@ -59,7 +58,6 @@ func TestLoginHandler(t *testing.T) {  }  func TestCallbackHandler(t *testing.T) { -	t.Parallel()  	req, _ := http.NewRequest("GET", "/auth/callback", nil)  	req.Form = url.Values{"state": []string{"state"}, "code": []string{"abcdef"}}  	resp := httptest.NewRecorder() @@ -72,7 +70,6 @@ func TestCallbackHandler(t *testing.T) {  }  func TestRootHandler(t *testing.T) { -	t.Parallel()  	req, _ := http.NewRequest("GET", "/", nil)  	resp := httptest.NewRecorder()  	ctx := newContext(t) @@ -88,7 +85,6 @@ func TestRootHandler(t *testing.T) {  }  func TestRootHandlerNoSession(t *testing.T) { -	t.Parallel()  	req, _ := http.NewRequest("GET", "/", nil)  	resp := httptest.NewRecorder()  	ctx := newContext(t) @@ -99,7 +95,6 @@ func TestRootHandlerNoSession(t *testing.T) {  }  func TestSignRevoke(t *testing.T) { -	t.Parallel()  	s, _ := json.Marshal(&lib.SignRequest{  		Key:        string(testdata.Pub),  		ValidUntil: time.Now().UTC().Add(1 * time.Hour), diff --git a/server/signer/signer_test.go b/server/signer/signer_test.go index 3bbdbf9..726a69b 100644 --- a/server/signer/signer_test.go +++ b/server/signer/signer_test.go @@ -25,7 +25,6 @@ var (  )  func TestCert(t *testing.T) { -	t.Parallel()  	r := &lib.SignRequest{  		Key:        string(testdata.Pub),  		ValidUntil: time.Now().Add(1 * time.Hour), @@ -54,7 +53,6 @@ func TestCert(t *testing.T) {  }  func TestRevocationList(t *testing.T) { -	t.Parallel()  	r := &lib.SignRequest{  		Key:        string(testdata.Pub),  		ValidUntil: time.Now().Add(1 * time.Hour), @@ -82,7 +80,6 @@ func TestRevocationList(t *testing.T) {  }  func TestPermissions(t *testing.T) { -	t.Parallel()  	r := &lib.SignRequest{  		Key:        string(testdata.Pub),  		ValidUntil: time.Now().Add(1 * time.Hour), diff --git a/server/store/store_test.go b/server/store/store_test.go index 71a74c0..9a8a4be 100644 --- a/server/store/store_test.go +++ b/server/store/store_test.go @@ -20,7 +20,6 @@ import (  )  func TestParseCertificate(t *testing.T) { -	t.Parallel()  	a := assert.New(t)  	now := uint64(time.Now().Unix())  	r, _ := rsa.GenerateKey(rand.Reader, 1024) @@ -104,13 +103,11 @@ func testStore(t *testing.T, db CertStorer) {  }  func TestMemoryStore(t *testing.T) { -	t.Parallel()  	db := NewMemoryStore()  	testStore(t, db)  }  func TestMySQLStore(t *testing.T) { -	t.Parallel()  	if os.Getenv("MYSQL_TEST") == "" {  		t.Skip("No MYSQL_TEST environment variable")  	} @@ -133,7 +130,6 @@ func TestMySQLStore(t *testing.T) {  }  func TestSQLiteStore(t *testing.T) { -	t.Parallel()  	f, err := ioutil.TempFile("", "sqlite_test_db")  	if err != nil {  		t.Error(err) | 
