From 1975267faa76c0edbb371c69091be8ccba1c362b Mon Sep 17 00:00:00 2001 From: Nicolas Gourdon Date: Sat, 27 Apr 2019 20:01:40 +0200 Subject: [PATCH 1/2] fix team edit API panic --- integrations/api_team_test.go | 66 ++++++++++++++++++++++++++++++++++- routers/api/v1/org/team.go | 2 +- 2 files changed, 66 insertions(+), 2 deletions(-) diff --git a/integrations/api_team_test.go b/integrations/api_team_test.go index da29dea9f79fb..e77b244c4572c 100644 --- a/integrations/api_team_test.go +++ b/integrations/api_team_test.go @@ -1,14 +1,17 @@ -// Copyright 2017 The Gitea Authors. All rights reserved. +// Copyright 2019 The Gitea Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. package integrations import ( + "fmt" "net/http" + "sort" "testing" "code.gitea.io/gitea/models" + "code.gitea.io/gitea/routers/api/v1/convert" api "code.gitea.io/sdk/gitea" "github.com/stretchr/testify/assert" @@ -42,4 +45,65 @@ func TestAPITeam(t *testing.T) { req = NewRequestf(t, "GET", "/api/v1/teams/%d", teamUser.TeamID) 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) } diff --git a/routers/api/v1/org/team.go b/routers/api/v1/org/team.go index d1b7dfbce817d..340dd96c7eb7d 100644 --- a/routers/api/v1/org/team.go +++ b/routers/api/v1/org/team.go @@ -189,7 +189,7 @@ func EditTeam(ctx *context.APIContext, form api.EditTeamOption) { var units = make([]*models.TeamUnit, 0, len(form.Units)) for _, tp := range unitTypes { units = append(units, &models.TeamUnit{ - OrgID: ctx.Org.Organization.ID, + OrgID: ctx.Org.Team.OrgID, Type: tp, }) } From f347d911b5a30aa0d962987ce4a8f1616d0f2c67 Mon Sep 17 00:00:00 2001 From: Lauris BH Date: Sat, 27 Apr 2019 22:07:58 +0200 Subject: [PATCH 2/2] undo change of copyright year Co-Authored-By: ngourdon <31291059+ngourdon@users.noreply.github.com> --- integrations/api_team_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/api_team_test.go b/integrations/api_team_test.go index e77b244c4572c..7bb0e5b1bc423 100644 --- a/integrations/api_team_test.go +++ b/integrations/api_team_test.go @@ -1,4 +1,4 @@ -// Copyright 2019 The Gitea Authors. All rights reserved. +// Copyright 2017 The Gitea Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file.