]> source.dussan.org Git - gitea.git/commitdiff
Add test for api team organization (#24699) (#24702)
authorGiteabot <teabot@gitea.io>
Sat, 13 May 2023 22:08:53 +0000 (18:08 -0400)
committerGitHub <noreply@github.com>
Sat, 13 May 2023 22:08:53 +0000 (18:08 -0400)
Backport #24699 by @lunny

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
tests/integration/api_team_test.go

index 2801fdc98934eac8d25c2068d850b4852f6f0483..d548d18ce489e1ef41b69e57742fa381c19a3b49 100644 (file)
@@ -28,6 +28,7 @@ func TestAPITeam(t *testing.T) {
 
        teamUser := unittest.AssertExistsAndLoadBean(t, &organization.TeamUser{ID: 1})
        team := unittest.AssertExistsAndLoadBean(t, &organization.Team{ID: teamUser.TeamID})
+       org := unittest.AssertExistsAndLoadBean(t, &organization.Organization{ID: teamUser.OrgID})
        user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: teamUser.UID})
 
        session := loginUser(t, user.Name)
@@ -39,6 +40,7 @@ func TestAPITeam(t *testing.T) {
        DecodeJSON(t, resp, &apiTeam)
        assert.EqualValues(t, team.ID, apiTeam.ID)
        assert.Equal(t, team.Name, apiTeam.Name)
+       assert.EqualValues(t, convert.ToOrganization(db.DefaultContext, org), apiTeam.Organization)
 
        // non team member user will not access the teams details
        teamUser2 := unittest.AssertExistsAndLoadBean(t, &organization.TeamUser{ID: 3})
@@ -57,7 +59,7 @@ func TestAPITeam(t *testing.T) {
        session = loginUser(t, user.Name)
        token = getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeAdminOrg)
 
-       org := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 6})
+       org = unittest.AssertExistsAndLoadBean(t, &organization.Organization{ID: 6})
 
        // Create team.
        teamToCreate := &api.CreateTeamOption{