mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	* Move db related basic functions to models/db * Fix lint * Fix lint * Fix test * Fix lint * Fix lint * revert unnecessary change * Fix test * Fix wrong replace string * Use *Context * Correct committer spelling and fix wrong replaced words Co-authored-by: zeripath <art27@cantab.net>
		
			
				
	
	
		
			166 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			166 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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 (
 | 
						|
	"fmt"
 | 
						|
	"net/http"
 | 
						|
	"sort"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/models"
 | 
						|
	"code.gitea.io/gitea/models/db"
 | 
						|
	"code.gitea.io/gitea/modules/convert"
 | 
						|
	api "code.gitea.io/gitea/modules/structs"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func TestAPITeam(t *testing.T) {
 | 
						|
	defer prepareTestEnv(t)()
 | 
						|
 | 
						|
	teamUser := db.AssertExistsAndLoadBean(t, &models.TeamUser{}).(*models.TeamUser)
 | 
						|
	team := db.AssertExistsAndLoadBean(t, &models.Team{ID: teamUser.TeamID}).(*models.Team)
 | 
						|
	user := db.AssertExistsAndLoadBean(t, &models.User{ID: teamUser.UID}).(*models.User)
 | 
						|
 | 
						|
	session := loginUser(t, user.Name)
 | 
						|
	token := getTokenForLoggedInUser(t, session)
 | 
						|
	req := NewRequestf(t, "GET", "/api/v1/teams/%d?token="+token, teamUser.TeamID)
 | 
						|
	resp := session.MakeRequest(t, req, http.StatusOK)
 | 
						|
 | 
						|
	var apiTeam api.Team
 | 
						|
	DecodeJSON(t, resp, &apiTeam)
 | 
						|
	assert.EqualValues(t, team.ID, apiTeam.ID)
 | 
						|
	assert.Equal(t, team.Name, apiTeam.Name)
 | 
						|
 | 
						|
	// non team member user will not access the teams details
 | 
						|
	teamUser2 := db.AssertExistsAndLoadBean(t, &models.TeamUser{ID: 3}).(*models.TeamUser)
 | 
						|
	user2 := db.AssertExistsAndLoadBean(t, &models.User{ID: teamUser2.UID}).(*models.User)
 | 
						|
 | 
						|
	session = loginUser(t, user2.Name)
 | 
						|
	token = getTokenForLoggedInUser(t, session)
 | 
						|
	req = NewRequestf(t, "GET", "/api/v1/teams/%d?token="+token, teamUser.TeamID)
 | 
						|
	_ = session.MakeRequest(t, req, http.StatusForbidden)
 | 
						|
 | 
						|
	req = NewRequestf(t, "GET", "/api/v1/teams/%d", teamUser.TeamID)
 | 
						|
	_ = session.MakeRequest(t, req, http.StatusUnauthorized)
 | 
						|
 | 
						|
	// Get an admin user able to create, update and delete teams.
 | 
						|
	user = db.AssertExistsAndLoadBean(t, &models.User{ID: 1}).(*models.User)
 | 
						|
	session = loginUser(t, user.Name)
 | 
						|
	token = getTokenForLoggedInUser(t, session)
 | 
						|
 | 
						|
	org := db.AssertExistsAndLoadBean(t, &models.User{ID: 6}).(*models.User)
 | 
						|
 | 
						|
	// Create team.
 | 
						|
	teamToCreate := &api.CreateTeamOption{
 | 
						|
		Name:                    "team1",
 | 
						|
		Description:             "team one",
 | 
						|
		IncludesAllRepositories: true,
 | 
						|
		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.IncludesAllRepositories,
 | 
						|
		teamToCreate.Permission, teamToCreate.Units)
 | 
						|
	checkTeamBean(t, apiTeam.ID, teamToCreate.Name, teamToCreate.Description, teamToCreate.IncludesAllRepositories,
 | 
						|
		teamToCreate.Permission, teamToCreate.Units)
 | 
						|
	teamID := apiTeam.ID
 | 
						|
 | 
						|
	// Edit team.
 | 
						|
	editDescription := "team 1"
 | 
						|
	editFalse := false
 | 
						|
	teamToEdit := &api.EditTeamOption{
 | 
						|
		Name:                    "teamone",
 | 
						|
		Description:             &editDescription,
 | 
						|
		Permission:              "admin",
 | 
						|
		IncludesAllRepositories: &editFalse,
 | 
						|
		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.IncludesAllRepositories,
 | 
						|
		teamToEdit.Permission, teamToEdit.Units)
 | 
						|
	checkTeamBean(t, apiTeam.ID, teamToEdit.Name, *teamToEdit.Description, *teamToEdit.IncludesAllRepositories,
 | 
						|
		teamToEdit.Permission, teamToEdit.Units)
 | 
						|
 | 
						|
	// Edit team Description only
 | 
						|
	editDescription = "first team"
 | 
						|
	teamToEditDesc := api.EditTeamOption{Description: &editDescription}
 | 
						|
	req = NewRequestWithJSON(t, "PATCH", fmt.Sprintf("/api/v1/teams/%d?token=%s", teamID, token), teamToEditDesc)
 | 
						|
	resp = session.MakeRequest(t, req, http.StatusOK)
 | 
						|
	DecodeJSON(t, resp, &apiTeam)
 | 
						|
	checkTeamResponse(t, &apiTeam, teamToEdit.Name, *teamToEditDesc.Description, *teamToEdit.IncludesAllRepositories,
 | 
						|
		teamToEdit.Permission, teamToEdit.Units)
 | 
						|
	checkTeamBean(t, apiTeam.ID, teamToEdit.Name, *teamToEditDesc.Description, *teamToEdit.IncludesAllRepositories,
 | 
						|
		teamToEdit.Permission, teamToEdit.Units)
 | 
						|
 | 
						|
	// Read team.
 | 
						|
	teamRead := db.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, *teamToEditDesc.Description, teamRead.IncludesAllRepositories,
 | 
						|
		teamRead.Authorize.String(), teamRead.GetUnitNames())
 | 
						|
 | 
						|
	// Delete team.
 | 
						|
	req = NewRequestf(t, "DELETE", "/api/v1/teams/%d?token="+token, teamID)
 | 
						|
	session.MakeRequest(t, req, http.StatusNoContent)
 | 
						|
	db.AssertNotExistsBean(t, &models.Team{ID: teamID})
 | 
						|
}
 | 
						|
 | 
						|
func checkTeamResponse(t *testing.T, apiTeam *api.Team, name, description string, includesAllRepositories bool, permission string, units []string) {
 | 
						|
	assert.Equal(t, name, apiTeam.Name, "name")
 | 
						|
	assert.Equal(t, description, apiTeam.Description, "description")
 | 
						|
	assert.Equal(t, includesAllRepositories, apiTeam.IncludesAllRepositories, "includesAllRepositories")
 | 
						|
	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, includesAllRepositories bool, permission string, units []string) {
 | 
						|
	team := db.AssertExistsAndLoadBean(t, &models.Team{ID: id}).(*models.Team)
 | 
						|
	assert.NoError(t, team.GetUnits(), "GetUnits")
 | 
						|
	checkTeamResponse(t, convert.ToTeam(team), name, description, includesAllRepositories, permission, units)
 | 
						|
}
 | 
						|
 | 
						|
type TeamSearchResults struct {
 | 
						|
	OK   bool        `json:"ok"`
 | 
						|
	Data []*api.Team `json:"data"`
 | 
						|
}
 | 
						|
 | 
						|
func TestAPITeamSearch(t *testing.T) {
 | 
						|
	defer prepareTestEnv(t)()
 | 
						|
 | 
						|
	user := db.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User)
 | 
						|
	org := db.AssertExistsAndLoadBean(t, &models.User{ID: 3}).(*models.User)
 | 
						|
 | 
						|
	var results TeamSearchResults
 | 
						|
 | 
						|
	session := loginUser(t, user.Name)
 | 
						|
	csrf := GetCSRF(t, session, "/"+org.Name)
 | 
						|
	req := NewRequestf(t, "GET", "/api/v1/orgs/%s/teams/search?q=%s", org.Name, "_team")
 | 
						|
	req.Header.Add("X-Csrf-Token", csrf)
 | 
						|
	resp := session.MakeRequest(t, req, http.StatusOK)
 | 
						|
	DecodeJSON(t, resp, &results)
 | 
						|
	assert.NotEmpty(t, results.Data)
 | 
						|
	assert.Len(t, results.Data, 1)
 | 
						|
	assert.Equal(t, "test_team", results.Data[0].Name)
 | 
						|
 | 
						|
	// no access if not organization member
 | 
						|
	user5 := db.AssertExistsAndLoadBean(t, &models.User{ID: 5}).(*models.User)
 | 
						|
	session = loginUser(t, user5.Name)
 | 
						|
	csrf = GetCSRF(t, session, "/"+org.Name)
 | 
						|
	req = NewRequestf(t, "GET", "/api/v1/orgs/%s/teams/search?q=%s", org.Name, "team")
 | 
						|
	req.Header.Add("X-Csrf-Token", csrf)
 | 
						|
	resp = session.MakeRequest(t, req, http.StatusForbidden)
 | 
						|
 | 
						|
}
 |