diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-05-26 09:15:45 -0400 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-05-26 08:15:45 -0500 |
commit | 7e6ff69c00119f5bd5977bc4b5a561fe606e15e4 (patch) | |
tree | 303af668116af069f6091113ae1a9d9b9023a9fe /integrations | |
parent | 3611a3e5529329c9ab1a137c0930199959a40e71 (diff) | |
download | gitea-7e6ff69c00119f5bd5977bc4b5a561fe606e15e4.tar.gz gitea-7e6ff69c00119f5bd5977bc4b5a561fe606e15e4.zip |
Fix 500 for GET /teams/:id endpoints (#1811)
* Fix 500 for GET /teams/:id endpoints
* Integration test for GET /team/:id
* Clean up integration test
Diffstat (limited to 'integrations')
-rw-r--r-- | integrations/api_team_test.go | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/integrations/api_team_test.go b/integrations/api_team_test.go new file mode 100644 index 0000000000..543e1579cd --- /dev/null +++ b/integrations/api_team_test.go @@ -0,0 +1,38 @@ +// 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. + +package integrations + +import ( + "bytes" + "encoding/json" + "fmt" + "net/http" + "testing" + + "code.gitea.io/gitea/models" + api "code.gitea.io/sdk/gitea" + + "github.com/stretchr/testify/assert" +) + +func TestAPITeam(t *testing.T) { + prepareTestEnv(t) + teamUser := models.AssertExistsAndLoadBean(t, &models.TeamUser{}).(*models.TeamUser) + team := models.AssertExistsAndLoadBean(t, &models.Team{ID: teamUser.TeamID}).(*models.Team) + user := models.AssertExistsAndLoadBean(t, &models.User{ID: teamUser.UID}).(*models.User) + + session := loginUser(t, user.Name, "password") + url := fmt.Sprintf("/api/v1/teams/%d", teamUser.TeamID) + req, err := http.NewRequest("GET", url, nil) + assert.NoError(t, err) + resp := session.MakeRequest(t, req) + assert.EqualValues(t, http.StatusOK, resp.HeaderCode) + + var apiTeam api.Team + decoder := json.NewDecoder(bytes.NewBuffer(resp.Body)) + assert.NoError(t, decoder.Decode(&apiTeam)) + assert.EqualValues(t, team.ID, apiTeam.ID) + assert.Equal(t, team.Name, apiTeam.Name) +} |