mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
628 B
25 lines
628 B
// Copyright 2024 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package integration |
|
|
|
import ( |
|
"net/http" |
|
"testing" |
|
|
|
auth_model "code.gitea.io/gitea/models/auth" |
|
"code.gitea.io/gitea/tests" |
|
) |
|
|
|
func TestAPIUpdateUser(t *testing.T) { |
|
defer tests.PrepareTestEnv(t)() |
|
|
|
normalUsername := "user2" |
|
session := loginUser(t, normalUsername) |
|
token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeWriteUser) |
|
|
|
req := NewRequestWithJSON(t, "PATCH", "/api/v1/user/settings", map[string]string{ |
|
"website": "https://gitea.com", |
|
}).AddTokenAuth(token) |
|
MakeRequest(t, req, http.StatusOK) |
|
}
|
|
|