mirror of https://github.com/go-gitea/gitea.git
Fix team edit API panic (#6780)
This commit is contained in:
parent
81059a2567
commit
4e311123d8
|
@ -5,10 +5,13 @@
|
||||||
package integrations
|
package integrations
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"sort"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"code.gitea.io/gitea/models"
|
"code.gitea.io/gitea/models"
|
||||||
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
||||||
api "code.gitea.io/sdk/gitea"
|
api "code.gitea.io/sdk/gitea"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
|
@ -42,4 +45,65 @@ func TestAPITeam(t *testing.T) {
|
||||||
|
|
||||||
req = NewRequestf(t, "GET", "/api/v1/teams/%d", teamUser.TeamID)
|
req = NewRequestf(t, "GET", "/api/v1/teams/%d", teamUser.TeamID)
|
||||||
resp = session.MakeRequest(t, req, http.StatusUnauthorized)
|
resp = session.MakeRequest(t, req, http.StatusUnauthorized)
|
||||||
|
|
||||||
|
// Get an admin user able to create, update and delete teams.
|
||||||
|
user = models.AssertExistsAndLoadBean(t, &models.User{ID: 1}).(*models.User)
|
||||||
|
session = loginUser(t, user.Name)
|
||||||
|
token = getTokenForLoggedInUser(t, session)
|
||||||
|
|
||||||
|
org := models.AssertExistsAndLoadBean(t, &models.User{ID: 6}).(*models.User)
|
||||||
|
|
||||||
|
// Create team.
|
||||||
|
teamToCreate := &api.CreateTeamOption{
|
||||||
|
Name: "team1",
|
||||||
|
Description: "team one",
|
||||||
|
Permission: "write",
|
||||||
|
Units: []string{"repo.code", "repo.issues"},
|
||||||
|
}
|
||||||
|
req = NewRequestWithJSON(t, "POST", fmt.Sprintf("/api/v1/orgs/%s/teams?token=%s", org.Name, token), teamToCreate)
|
||||||
|
resp = session.MakeRequest(t, req, http.StatusCreated)
|
||||||
|
DecodeJSON(t, resp, &apiTeam)
|
||||||
|
checkTeamResponse(t, &apiTeam, teamToCreate.Name, teamToCreate.Description, teamToCreate.Permission, teamToCreate.Units)
|
||||||
|
checkTeamBean(t, apiTeam.ID, teamToCreate.Name, teamToCreate.Description, teamToCreate.Permission, teamToCreate.Units)
|
||||||
|
teamID := apiTeam.ID
|
||||||
|
|
||||||
|
// Edit team.
|
||||||
|
teamToEdit := &api.EditTeamOption{
|
||||||
|
Name: "teamone",
|
||||||
|
Description: "team 1",
|
||||||
|
Permission: "admin",
|
||||||
|
Units: []string{"repo.code", "repo.pulls", "repo.releases"},
|
||||||
|
}
|
||||||
|
req = NewRequestWithJSON(t, "PATCH", fmt.Sprintf("/api/v1/teams/%d?token=%s", teamID, token), teamToEdit)
|
||||||
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
||||||
|
DecodeJSON(t, resp, &apiTeam)
|
||||||
|
checkTeamResponse(t, &apiTeam, teamToEdit.Name, teamToEdit.Description, teamToEdit.Permission, teamToEdit.Units)
|
||||||
|
checkTeamBean(t, apiTeam.ID, teamToEdit.Name, teamToEdit.Description, teamToEdit.Permission, teamToEdit.Units)
|
||||||
|
|
||||||
|
// Read team.
|
||||||
|
teamRead := models.AssertExistsAndLoadBean(t, &models.Team{ID: teamID}).(*models.Team)
|
||||||
|
req = NewRequestf(t, "GET", "/api/v1/teams/%d?token="+token, teamID)
|
||||||
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
||||||
|
DecodeJSON(t, resp, &apiTeam)
|
||||||
|
checkTeamResponse(t, &apiTeam, teamRead.Name, teamRead.Description, teamRead.Authorize.String(), teamRead.GetUnitNames())
|
||||||
|
|
||||||
|
// Delete team.
|
||||||
|
req = NewRequestf(t, "DELETE", "/api/v1/teams/%d?token="+token, teamID)
|
||||||
|
session.MakeRequest(t, req, http.StatusNoContent)
|
||||||
|
models.AssertNotExistsBean(t, &models.Team{ID: teamID})
|
||||||
|
}
|
||||||
|
|
||||||
|
func checkTeamResponse(t *testing.T, apiTeam *api.Team, name, description string, permission string, units []string) {
|
||||||
|
assert.Equal(t, name, apiTeam.Name, "name")
|
||||||
|
assert.Equal(t, description, apiTeam.Description, "description")
|
||||||
|
assert.Equal(t, permission, apiTeam.Permission, "permission")
|
||||||
|
sort.StringSlice(units).Sort()
|
||||||
|
sort.StringSlice(apiTeam.Units).Sort()
|
||||||
|
assert.EqualValues(t, units, apiTeam.Units, "units")
|
||||||
|
}
|
||||||
|
|
||||||
|
func checkTeamBean(t *testing.T, id int64, name, description string, permission string, units []string) {
|
||||||
|
team := models.AssertExistsAndLoadBean(t, &models.Team{ID: id}).(*models.Team)
|
||||||
|
assert.NoError(t, team.GetUnits(), "GetUnits")
|
||||||
|
checkTeamResponse(t, convert.ToTeam(team), name, description, permission, units)
|
||||||
}
|
}
|
||||||
|
|
|
@ -189,7 +189,7 @@ func EditTeam(ctx *context.APIContext, form api.EditTeamOption) {
|
||||||
var units = make([]*models.TeamUnit, 0, len(form.Units))
|
var units = make([]*models.TeamUnit, 0, len(form.Units))
|
||||||
for _, tp := range unitTypes {
|
for _, tp := range unitTypes {
|
||||||
units = append(units, &models.TeamUnit{
|
units = append(units, &models.TeamUnit{
|
||||||
OrgID: ctx.Org.Organization.ID,
|
OrgID: ctx.Org.Team.OrgID,
|
||||||
Type: tp,
|
Type: tp,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue