//go:build test // +build test package user // Package user contains tests for user profile and account management endpoints. // // Test Coverage: // - GetProfileHandler: GET /api/user/profile - Get authenticated user's profile // - UpdateProfileHandler: PUT /api/user/profile - Update user profile (name, phone) // - ChangePasswordHandler: PUT /api/user/password - Change user password // - DeleteAccountHandler: DELETE /api/user/account - Delete user account // - GetLoyaltyHandler: GET /api/user/loyalty - Get user's loyalty stamps and stats // - Profile picture upload: POST /api/user/profile-picture - Upload profile picture // // Authentication: All endpoints require auth (401 for unauthenticated). // Validation: Tests cover invalid inputs (missing fields, invalid phone, weak passwords). import ( "bytes" "context" "encoding/json" "mime/multipart" "net/http" "net/http/httptest" "testing" "crussell/db" "crussell/mw" "crussell/testutils/fixtures" "crussell/testutils/jwt" "crussell/testutils/testdb" "github.com/jackc/pgx/v5/pgxpool" ) func setupTest(t *testing.T) (func(), *pgxpool.Pool) { pool := testdb.Pool(t) testdb.Migrate(t, pool) testdb.TruncateTables(t, pool) // Set the global DB pool db.DB = pool // Initialize JWT jwt.Init() return func() { pool.Close() }, pool } // TestProfile_Get verifies that an authenticated user can retrieve their own profile data. func TestProfile_Get(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } token := jwt.GenerateUserToken(userID) req := httptest.NewRequest(http.MethodGet, "/api/user/profile", nil) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) rr := httptest.NewRecorder() GetProfileHandler(rr, req) if rr.Code != http.StatusOK { t.Errorf("expected status 200, got %d", rr.Code) t.Logf("response body: %s", rr.Body.String()) } var profile UserProfile if err := json.Unmarshal(rr.Body.Bytes(), &profile); err != nil { t.Fatalf("failed to unmarshal response: %v", err) } if profile.ID != userID { t.Errorf("expected user ID %s, got %s", userID, profile.ID) } } // TestProfile_Get_NoAuth verifies that an unauthenticated request to get profile returns 401 Unauthorized. func TestProfile_Get_NoAuth(t *testing.T) { cleanup, _ := setupTest(t) defer cleanup() req := httptest.NewRequest(http.MethodGet, "/api/user/profile", nil) rr := httptest.NewRecorder() GetProfileHandler(rr, req) if rr.Code != http.StatusUnauthorized { t.Errorf("expected status 401, got %d", rr.Code) } } // TestProfile_Update verifies that a user can update their profile with valid first name, last name, and phone. func TestProfile_Update(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } token := jwt.GenerateUserToken(userID) updateReq := UpdateProfileRequest{ FirstName: "John", LastName: "Doe", Phone: "07123456789", } body, _ := json.Marshal(updateReq) req := httptest.NewRequest(http.MethodPut, "/api/user/profile", bytes.NewReader(body)) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) req.Header.Set("Content-Type", "application/json") rr := httptest.NewRecorder() UpdateProfileHandler(rr, req) if rr.Code != http.StatusOK { t.Errorf("expected status 200, got %d", rr.Code) t.Logf("response body: %s", rr.Body.String()) } } // TestPasswordChange_Success verifies that a user can successfully change their password with valid credentials. func TestPasswordChange_Success(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } token := jwt.GenerateUserToken(userID) changeReq := ChangePasswordRequest{ CurrentPassword: "testpassword123", NewPassword: "newpassword456", } body, _ := json.Marshal(changeReq) req := httptest.NewRequest(http.MethodPut, "/api/user/change-password", bytes.NewReader(body)) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) req.Header.Set("Content-Type", "application/json") rr := httptest.NewRecorder() ChangePasswordHandler(rr, req) if rr.Code != http.StatusOK { t.Errorf("expected status 200, got %d", rr.Code) t.Logf("response body: %s", rr.Body.String()) } } // TestPasswordChange_WrongOld verifies that providing an incorrect current password returns 401 Unauthorized. func TestPasswordChange_WrongOld(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } token := jwt.GenerateUserToken(userID) changeReq := ChangePasswordRequest{ CurrentPassword: "wrongpassword", NewPassword: "newpassword456", } body, _ := json.Marshal(changeReq) req := httptest.NewRequest(http.MethodPut, "/api/user/change-password", bytes.NewReader(body)) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) req.Header.Set("Content-Type", "application/json") rr := httptest.NewRecorder() ChangePasswordHandler(rr, req) if rr.Code != http.StatusUnauthorized { t.Errorf("expected status 401, got %d", rr.Code) } } // TestPasswordChange_InvalidNewPassword verifies that invalid new passwords (too short or too long for bcrypt) // are rejected with 400 Bad Request. func TestPasswordChange_InvalidNewPassword(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } token := jwt.GenerateUserToken(userID) tests := []struct { name string newPassword string }{ {"too_short", "short"}, {"too_long", "passwordthatiswaytoolongandexceedsseventytwocharacterswhichisthemaximumallowedbybcrypt"}, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { changeReq := ChangePasswordRequest{ CurrentPassword: "testpassword123", NewPassword: tt.newPassword, } body, _ := json.Marshal(changeReq) req := httptest.NewRequest(http.MethodPut, "/api/user/change-password", bytes.NewReader(body)) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) req.Header.Set("Content-Type", "application/json") rr := httptest.NewRecorder() ChangePasswordHandler(rr, req) if rr.Code != http.StatusBadRequest { t.Errorf("expected status 400, got %d", rr.Code) t.Logf("response body: %s", rr.Body.String()) } }) } } // TestAccount_Delete verifies that a user can delete their own account, returning 204 No Content. func TestAccount_Delete(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } token := jwt.GenerateUserToken(userID) req := httptest.NewRequest(http.MethodDelete, "/api/user/account", nil) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) rr := httptest.NewRecorder() DeleteAccountHandler(rr, req) if rr.Code != http.StatusNoContent { t.Errorf("expected status 204, got %d", rr.Code) t.Logf("response body: %s", rr.Body.String()) } } // TestLoyalty_Get verifies that a user can retrieve their loyalty stamps count and referral code. func TestLoyalty_Get(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } // Add some loyalty stamps _, err = pool.Exec(context.Background(), `UPDATE users SET loyalty_stamps = 10 WHERE id = $1`, userID) if err != nil { t.Fatalf("failed to update loyalty stamps: %v", err) } token := jwt.GenerateUserToken(userID) req := httptest.NewRequest(http.MethodGet, "/api/user/loyalty", nil) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) rr := httptest.NewRecorder() GetLoyaltyHandler(rr, req) if rr.Code != http.StatusOK { t.Errorf("expected status 200, got %d", rr.Code) t.Logf("response body: %s", rr.Body.String()) } var loyalty LoyaltyResponse if err := json.Unmarshal(rr.Body.Bytes(), &loyalty); err != nil { t.Fatalf("failed to unmarshal response: %v", err) } if loyalty.Stamps != 10 { t.Errorf("expected 10 stamps, got %d", loyalty.Stamps) } if loyalty.ReferralCode == "" { t.Error("expected referral code to be set") } } // TestProfile_Update_InvalidInput verifies that profile update validation rejects invalid inputs: // missing first name, missing last name, missing phone, invalid phone format, invalid characters in name, name too long. func TestProfile_Update_InvalidInput(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } token := jwt.GenerateUserToken(userID) tests := []struct { name string req UpdateProfileRequest expected int }{ { name: "missing_first_name", req: UpdateProfileRequest{FirstName: "", LastName: "Doe", Phone: "+447700900000"}, expected: http.StatusBadRequest, }, { name: "missing_last_name", req: UpdateProfileRequest{FirstName: "John", LastName: "", Phone: "+447700900000"}, expected: http.StatusBadRequest, }, { name: "missing_phone", req: UpdateProfileRequest{FirstName: "John", LastName: "Doe", Phone: ""}, expected: http.StatusBadRequest, }, { name: "invalid_phone", req: UpdateProfileRequest{FirstName: "John", LastName: "Doe", Phone: "not-a-phone"}, expected: http.StatusBadRequest, }, { name: "invalid_characters_in_name", req: UpdateProfileRequest{FirstName: "John123", LastName: "Doe", Phone: "+447700900000"}, expected: http.StatusBadRequest, }, { name: "name_too_long", req: UpdateProfileRequest{FirstName: string(make([]byte, 51)), LastName: "Doe", Phone: "+447700900000"}, expected: http.StatusBadRequest, }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { body, _ := json.Marshal(tt.req) req := httptest.NewRequest(http.MethodPut, "/api/user/profile", bytes.NewReader(body)) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) req.Header.Set("Content-Type", "application/json") rr := httptest.NewRecorder() UpdateProfileHandler(rr, req) if rr.Code != tt.expected { t.Errorf("expected status %d, got %d", tt.expected, rr.Code) t.Logf("response body: %s", rr.Body.String()) } }) } } // TestProfile_Update_Success verifies that a valid profile update succeeds and the changes are persisted in the database. func TestProfile_Update_Success(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } token := jwt.GenerateUserToken(userID) updateReq := UpdateProfileRequest{ FirstName: "John", LastName: "Doe", Phone: "+447123456789", } body, _ := json.Marshal(updateReq) req := httptest.NewRequest(http.MethodPut, "/api/user/profile", bytes.NewReader(body)) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) req.Header.Set("Content-Type", "application/json") rr := httptest.NewRecorder() UpdateProfileHandler(rr, req) if rr.Code != http.StatusOK { t.Errorf("expected status 200, got %d", rr.Code) t.Logf("response body: %s", rr.Body.String()) return } // Verify DB was updated var firstName, lastName, phone string err = pool.QueryRow(context.Background(), "SELECT n_first_name, n_last_name, phone FROM users WHERE id = $1", userID).Scan(&firstName, &lastName, &phone) if err != nil { t.Fatalf("failed to query user: %v", err) } if firstName != "John" { t.Errorf("expected first name 'John', got '%s'", firstName) } if lastName != "Doe" { t.Errorf("expected last name 'Doe', got '%s'", lastName) } if phone != "+447123456789" { t.Errorf("expected phone '+447700900000', got '%s'", phone) } } // TestPasswordChange_SameAsOld verifies that attempting to change password to the same value returns 400 Bad Request. func TestPasswordChange_SameAsOld(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } token := jwt.GenerateUserToken(userID) // Try to change password to the same one changeReq := ChangePasswordRequest{ CurrentPassword: "testpassword123", NewPassword: "testpassword123", } body, _ := json.Marshal(changeReq) req := httptest.NewRequest(http.MethodPut, "/api/user/change-password", bytes.NewReader(body)) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) req.Header.Set("Content-Type", "application/json") rr := httptest.NewRecorder() ChangePasswordHandler(rr, req) // Should return 400 Bad Request - cannot use same password if rr.Code != http.StatusBadRequest { t.Errorf("expected status 400, got %d", rr.Code) t.Logf("response body: %s", rr.Body.String()) } } // TestProfile_UploadPicture verifies that a user can upload a profile picture. May return 500 if S3 is not configured. func TestProfile_UploadPicture(t *testing.T) { cleanup, pool := setupTest(t) defer cleanup() userID, err := fixtures.CreateTestUser(pool) if err != nil { t.Fatalf("failed to create test user: %v", err) } token := jwt.GenerateUserToken(userID) // Create a small valid JPEG image (1x1 pixel) // This is a minimal valid JPEG fakeImage := []byte{ 0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, 0x07, 0x07, 0x09, 0x09, 0x08, 0x0A, 0x0C, 0x14, 0x0D, 0x0C, 0x0B, 0x0B, 0x0C, 0x19, 0x12, 0x13, 0x0F, 0x14, 0x1D, 0x1A, 0x1F, 0x1E, 0x1D, 0x1A, 0x1C, 0x1C, 0x20, 0x24, 0x2E, 0x27, 0x20, 0x22, 0x2C, 0x23, 0x1C, 0x1C, 0x28, 0x37, 0x29, 0x2C, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1F, 0x27, 0x39, 0x3D, 0x38, 0x32, 0x3C, 0x2E, 0x33, 0x34, 0x32, 0xFF, 0xC0, 0x00, 0x0B, 0x08, 0x00, 0x01, 0x00, 0x01, 0x01, 0x01, 0x11, 0x00, 0xFF, 0xC4, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1, 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xDA, 0x00, 0x08, 0x01, 0x01, 0x00, 0x00, 0x3F, 0x00, 0xFB, 0xD5, 0xDB, 0x20, 0xA8, 0xF8, 0xAF, 0xFF, 0xD9, } // Create multipart form request var b bytes.Buffer writer := multipart.NewWriter(&b) part, err := writer.CreateFormFile("file", "test.jpg") if err != nil { t.Fatalf("failed to create form file: %v", err) } _, err = part.Write(fakeImage) if err != nil { t.Fatalf("failed to write image: %v", err) } writer.Close() req := httptest.NewRequest(http.MethodPost, "/api/user/profile-picture", &b) req = req.WithContext(context.WithValue(context.Background(), mw.UserIDKey, userID)) req.Header.Set("Authorization", "Bearer "+token) req.Header.Set("Content-Type", writer.FormDataContentType()) rr := httptest.NewRecorder() UploadProfilePictureHandler(rr, req) // S3 client is not initialized in tests, so we expect 500 (Storage not configured) if rr.Code == http.StatusInternalServerError { return // Test passes - S3 not configured is expected behavior in tests } if rr.Code != http.StatusOK { t.Errorf("expected status 200 or 500, got %d", rr.Code) t.Logf("response body: %s", rr.Body.String()) return } // Verify response contains URL - handler returns "url", not "profilePicUrl" var resp map[string]string if err := json.Unmarshal(rr.Body.Bytes(), &resp); err != nil { t.Fatalf("failed to unmarshal response: %v", err) } if resp["url"] == "" { t.Error("expected url in response") } }