aboutsummaryrefslogtreecommitdiffstats
path: root/integrations/api_team_test.go
diff options
context:
space:
mode:
authorngourdon <31291059+ngourdon@users.noreply.github.com>2019-04-28 01:32:33 +0200
committertechknowlogick <techknowlogick@gitea.io>2019-04-27 19:32:33 -0400
commit4e311123d8495d1f8b6aa91be7dd58c51d8cda76 (patch)
tree168f4ed1091e240874dd33b3c33ceda517c1e396 /integrations/api_team_test.go
parent81059a2567be0cd811ca10e3545282c9aa53276a (diff)
downloadgitea-4e311123d8495d1f8b6aa91be7dd58c51d8cda76.tar.gz
gitea-4e311123d8495d1f8b6aa91be7dd58c51d8cda76.zip
Fix team edit API panic (#6780)
Diffstat (limited to 'integrations/api_team_test.go')
-rw-r--r--integrations/api_team_test.go64
1 files changed, 64 insertions, 0 deletions
diff --git a/integrations/api_team_test.go b/integrations/api_team_test.go
index da29dea9f7..7bb0e5b1bc 100644
--- a/integrations/api_team_test.go
+++ b/integrations/api_team_test.go
@@ -5,10 +5,13 @@
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)
}