wallet-sync-server/server/auth_test.go

132 lines
4.2 KiB
Go
Raw Normal View History

package server
2021-12-10 22:35:47 +01:00
import (
"bytes"
"encoding/json"
"fmt"
2021-12-10 22:35:47 +01:00
"io/ioutil"
"net/http"
"net/http/httptest"
"orblivion/lbry-id/auth"
"orblivion/lbry-id/store"
2021-12-10 22:35:47 +01:00
"testing"
)
func TestServerAuthHandlerSuccess(t *testing.T) {
2022-06-21 17:52:03 +02:00
testAuth := TestAuth{TestNewTokenString: auth.TokenString("seekrit")}
2021-12-10 22:35:47 +01:00
testStore := TestStore{}
s := Server{&testAuth, &testStore}
2021-12-10 22:35:47 +01:00
requestBody := []byte(`{"deviceId": "dev-1", "email": "abc@example.com", "password": "123"}`)
2021-12-10 22:35:47 +01:00
req := httptest.NewRequest(http.MethodPost, PathAuthToken, bytes.NewBuffer(requestBody))
2021-12-10 22:35:47 +01:00
w := httptest.NewRecorder()
s.getAuthToken(w, req)
2021-12-10 22:35:47 +01:00
body, _ := ioutil.ReadAll(w.Body)
2022-06-21 17:52:03 +02:00
expectStatusCode(t, w, http.StatusOK)
2021-12-10 22:35:47 +01:00
2022-06-20 00:54:59 +02:00
var result auth.AuthToken
2021-12-10 22:35:47 +01:00
err := json.Unmarshal(body, &result)
2022-06-21 17:52:03 +02:00
if err != nil || result.Token != testAuth.TestNewTokenString {
2021-12-10 22:35:47 +01:00
t.Errorf("Expected auth response to contain token: result: %+v err: %+v", string(body), err)
}
2022-06-21 17:52:03 +02:00
if testStore.Called.SaveToken != testAuth.TestNewTokenString {
t.Errorf("Expected Store.SaveToken to be called with %s", testAuth.TestNewTokenString)
2021-12-10 22:35:47 +01:00
}
}
func TestServerAuthHandlerErrors(t *testing.T) {
2021-12-10 22:35:47 +01:00
tt := []struct {
name string
expectedStatusCode int
expectedErrorString string
storeErrors TestStoreFunctionsErrors
2021-12-10 22:35:47 +01:00
authFailGenToken bool
}{
{
name: "login fail",
expectedStatusCode: http.StatusUnauthorized,
expectedErrorString: http.StatusText(http.StatusUnauthorized) + ": No match for email and password",
2021-12-10 22:35:47 +01:00
storeErrors: TestStoreFunctionsErrors{GetUserId: store.ErrNoUId},
2021-12-10 22:35:47 +01:00
},
{
name: "generate token fail",
expectedStatusCode: http.StatusInternalServerError,
expectedErrorString: http.StatusText(http.StatusInternalServerError),
2021-12-10 22:35:47 +01:00
authFailGenToken: true,
},
{
name: "save token fail",
expectedStatusCode: http.StatusInternalServerError,
expectedErrorString: http.StatusText(http.StatusInternalServerError),
2021-12-10 22:35:47 +01:00
storeErrors: TestStoreFunctionsErrors{SaveToken: fmt.Errorf("TestStore.SaveToken fail")},
2021-12-10 22:35:47 +01:00
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
// Set this up to fail according to specification
2022-06-21 17:52:03 +02:00
testAuth := TestAuth{TestNewTokenString: auth.TokenString("seekrit")}
testStore := TestStore{Errors: tc.storeErrors}
if tc.authFailGenToken { // TODO - TestAuth{Errors:authErrors}
2021-12-10 22:35:47 +01:00
testAuth.FailGenToken = true
}
server := Server{&testAuth, &testStore}
2021-12-10 22:35:47 +01:00
// Make request
// So long as the JSON is well-formed, the content doesn't matter here since the password check will be stubbed out
requestBody := `{"deviceId": "dev-1", "email": "abc@example.com", "password": "123"}`
req := httptest.NewRequest(http.MethodPost, PathAuthToken, bytes.NewBuffer([]byte(requestBody)))
2021-12-10 22:35:47 +01:00
w := httptest.NewRecorder()
server.getAuthToken(w, req)
2021-12-10 22:35:47 +01:00
2022-06-21 17:52:03 +02:00
expectStatusCode(t, w, tc.expectedStatusCode)
expectErrorString(t, w, tc.expectedErrorString)
2021-12-10 22:35:47 +01:00
})
}
}
func TestServerValidateAuthRequest(t *testing.T) {
2022-06-08 02:08:41 +02:00
authRequest := AuthRequest{DeviceId: "dId", Email: "joe@example.com", Password: "aoeu"}
if !authRequest.validate() {
t.Fatalf("Expected valid AuthRequest to successfully validate")
}
authRequest = AuthRequest{Email: "joe@example.com", Password: "aoeu"}
if authRequest.validate() {
t.Fatalf("Expected AuthRequest with missing device to not successfully validate")
}
authRequest = AuthRequest{DeviceId: "dId", Email: "joe-example.com", Password: "aoeu"}
if authRequest.validate() {
t.Fatalf("Expected AuthRequest with invalid email to not successfully validate")
}
// Note that Golang's email address parser, which I use, will accept
// "Joe <joe@example.com>" so we need to make sure to avoid accepting it. See
// the implementation.
authRequest = AuthRequest{DeviceId: "dId", Email: "Joe <joe@example.com>", Password: "aoeu"}
if authRequest.validate() {
t.Fatalf("Expected AuthRequest with email with unexpected formatting to not successfully validate")
}
2022-06-17 22:15:27 +02:00
authRequest = AuthRequest{DeviceId: "dId", Password: "aoeu"}
if authRequest.validate() {
t.Fatalf("Expected AuthRequest with missing email to not successfully validate")
}
2022-06-08 02:08:41 +02:00
authRequest = AuthRequest{DeviceId: "dId", Email: "joe@example.com"}
if authRequest.validate() {
t.Fatalf("Expected AuthRequest with missing password to not successfully validate")
}
}