mirror of https://github.com/go-gitea/gitea.git
Fix test
This commit is contained in:
parent
253ec37632
commit
afade2f0c7
|
@ -84,7 +84,7 @@ func TestUpdateTeam(t *testing.T) {
|
||||||
team.Name = "newName"
|
team.Name = "newName"
|
||||||
team.Description = strings.Repeat("A long description!", 100)
|
team.Description = strings.Repeat("A long description!", 100)
|
||||||
team.AccessMode = perm.AccessModeAdmin
|
team.AccessMode = perm.AccessModeAdmin
|
||||||
assert.NoError(t, UpdateTeam(db.DefaultContext, team, "authorize"))
|
assert.NoError(t, UpdateTeam(db.DefaultContext, team, "name", "lower_name", "description", "authorize"))
|
||||||
|
|
||||||
team = unittest.AssertExistsAndLoadBean(t, &organization.Team{Name: "newName"})
|
team = unittest.AssertExistsAndLoadBean(t, &organization.Team{Name: "newName"})
|
||||||
assert.True(t, strings.HasPrefix(team.Description, "A long description!"))
|
assert.True(t, strings.HasPrefix(team.Description, "A long description!"))
|
||||||
|
@ -103,7 +103,7 @@ func TestUpdateTeam2(t *testing.T) {
|
||||||
team.LowerName = "owners"
|
team.LowerName = "owners"
|
||||||
team.Name = "Owners"
|
team.Name = "Owners"
|
||||||
team.Description = strings.Repeat("A long description!", 100)
|
team.Description = strings.Repeat("A long description!", 100)
|
||||||
err := UpdateTeam(db.DefaultContext, team, "authorize")
|
err := UpdateTeam(db.DefaultContext, team, "name", "lower_name", "description", "authorize")
|
||||||
assert.True(t, organization.IsErrTeamAlreadyExist(err))
|
assert.True(t, organization.IsErrTeamAlreadyExist(err))
|
||||||
|
|
||||||
unittest.CheckConsistencyFor(t, &organization.Team{ID: team.ID})
|
unittest.CheckConsistencyFor(t, &organization.Team{ID: team.ID})
|
||||||
|
|
|
@ -44,7 +44,7 @@ type EditTeamOption struct {
|
||||||
Description *string `json:"description" binding:"MaxSize(255)"`
|
Description *string `json:"description" binding:"MaxSize(255)"`
|
||||||
IncludesAllRepositories *bool `json:"includes_all_repositories"`
|
IncludesAllRepositories *bool `json:"includes_all_repositories"`
|
||||||
// enum: read,write,admin
|
// enum: read,write,admin
|
||||||
Permission string `json:"permission" binding:"Required;In(read,write,admin)"`
|
Permission string `json:"permission"`
|
||||||
// example: ["repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.pulls","repo.releases","repo.projects","repo.ext_wiki"]
|
// example: ["repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.pulls","repo.releases","repo.projects","repo.ext_wiki"]
|
||||||
// Deprecated: This variable should be replaced by UnitsMap and will be dropped in later versions.
|
// Deprecated: This variable should be replaced by UnitsMap and will be dropped in later versions.
|
||||||
Units []string `json:"units"`
|
Units []string `json:"units"`
|
||||||
|
|
|
@ -57,7 +57,7 @@ func (f *UpdateOrgSettingForm) Validate(req *http.Request, errs binding.Errors)
|
||||||
type CreateTeamForm struct {
|
type CreateTeamForm struct {
|
||||||
TeamName string `binding:"Required;AlphaDashDot;MaxSize(255)"`
|
TeamName string `binding:"Required;AlphaDashDot;MaxSize(255)"`
|
||||||
Description string `binding:"MaxSize(255)"`
|
Description string `binding:"MaxSize(255)"`
|
||||||
Permission string `binding:"Required;In(read,write,admin)"`
|
Permission string `binding:"Required;In(,read,write,admin)"`
|
||||||
RepoAccess string `binding:"Required;In(specified, all)"`
|
RepoAccess string `binding:"Required;In(specified, all)"`
|
||||||
CanCreateOrgRepo bool
|
CanCreateOrgRepo bool
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@ package org
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"code.gitea.io/gitea/models"
|
"code.gitea.io/gitea/models"
|
||||||
org_model "code.gitea.io/gitea/models/organization"
|
org_model "code.gitea.io/gitea/models/organization"
|
||||||
|
@ -34,7 +35,12 @@ func UpdateTeam(ctx context.Context, team *org_model.Team, opts UpdateTeamOption
|
||||||
}
|
}
|
||||||
|
|
||||||
if !team.IsOwnerTeam() {
|
if !team.IsOwnerTeam() {
|
||||||
team.Name = opts.TeamName
|
if team.Name != opts.TeamName {
|
||||||
|
team.Name = opts.TeamName
|
||||||
|
team.LowerName = strings.ToLower(opts.TeamName)
|
||||||
|
changedCols = append(changedCols, "name", "lower_name")
|
||||||
|
}
|
||||||
|
|
||||||
if team.AccessMode != newAccessMode {
|
if team.AccessMode != newAccessMode {
|
||||||
team.AccessMode = newAccessMode
|
team.AccessMode = newAccessMode
|
||||||
changedCols = append(changedCols, "authorize")
|
changedCols = append(changedCols, "authorize")
|
||||||
|
@ -44,22 +50,24 @@ func UpdateTeam(ctx context.Context, team *org_model.Team, opts UpdateTeamOption
|
||||||
team.IncludesAllRepositories = opts.IncludesAllRepositories
|
team.IncludesAllRepositories = opts.IncludesAllRepositories
|
||||||
changedCols = append(changedCols, "includes_all_repositories")
|
changedCols = append(changedCols, "includes_all_repositories")
|
||||||
}
|
}
|
||||||
units := make([]*org_model.TeamUnit, 0, len(opts.UnitPerms))
|
if len(opts.UnitPerms) > 0 {
|
||||||
for tp, perm := range opts.UnitPerms {
|
units := make([]*org_model.TeamUnit, 0, len(opts.UnitPerms))
|
||||||
units = append(units, &org_model.TeamUnit{
|
for tp, perm := range opts.UnitPerms {
|
||||||
OrgID: team.OrgID,
|
units = append(units, &org_model.TeamUnit{
|
||||||
TeamID: team.ID,
|
OrgID: team.OrgID,
|
||||||
Type: tp,
|
TeamID: team.ID,
|
||||||
AccessMode: perm,
|
Type: tp,
|
||||||
})
|
AccessMode: perm,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
team.Units = units
|
||||||
|
changedCols = append(changedCols, "units")
|
||||||
}
|
}
|
||||||
team.Units = units
|
|
||||||
changedCols = append(changedCols, "units")
|
|
||||||
if team.CanCreateOrgRepo != opts.CanCreateOrgRepo {
|
if team.CanCreateOrgRepo != opts.CanCreateOrgRepo {
|
||||||
team.CanCreateOrgRepo = opts.CanCreateOrgRepo
|
team.CanCreateOrgRepo = opts.CanCreateOrgRepo
|
||||||
changedCols = append(changedCols, "can_create_org_repo")
|
changedCols = append(changedCols, "can_create_org_repo")
|
||||||
}
|
}
|
||||||
} else {
|
} else { // make the possible legacy data correct, we force to update these fields
|
||||||
team.CanCreateOrgRepo = true
|
team.CanCreateOrgRepo = true
|
||||||
team.IncludesAllRepositories = true
|
team.IncludesAllRepositories = true
|
||||||
changedCols = append(changedCols, "can_create_org_repo", "includes_all_repositories")
|
changedCols = append(changedCols, "can_create_org_repo", "includes_all_repositories")
|
||||||
|
|
Loading…
Reference in New Issue