go-sdk/gitea/admin_test.go
6543 063d97fe74
All checks were successful
continuous-integration/drone/push Build is passing
Update Test Data (#480)
let the test PASS again

Reviewed-on: #480
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Reviewed-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: 6543 <6543@obermui.de>
Co-committed-by: 6543 <6543@obermui.de>
2021-01-30 21:25:21 +08:00

52 lines
1.2 KiB
Go

// Copyright 2020 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 gitea
import (
"log"
"testing"
"github.com/stretchr/testify/assert"
)
func TestAdminOrg(t *testing.T) {
log.Println("== TestAdminOrg ==")
c := newTestClient()
user, _, err := c.GetMyUserInfo()
assert.NoError(t, err)
orgName := "NewTestOrg"
newOrg, _, err := c.AdminCreateOrg(user.UserName, CreateOrgOption{
Name: orgName,
FullName: orgName + " FullName",
Description: "test adminCreateOrg",
Visibility: VisibleTypePublic,
})
assert.NoError(t, err)
assert.NotEmpty(t, newOrg)
assert.EqualValues(t, orgName, newOrg.UserName)
orgs, _, err := c.AdminListOrgs(AdminListOrgsOptions{})
assert.NoError(t, err)
if assert.True(t, len(orgs) >= 1) {
orgs = orgs[len(orgs)-1:]
assert.EqualValues(t, newOrg.ID, orgs[0].ID)
}
_, err = c.DeleteOrg(orgName)
assert.NoError(t, err)
}
func TestAdminCronTasks(t *testing.T) {
log.Println("== TestAdminCronTasks ==")
c := newTestClient()
tasks, _, err := c.ListCronTasks(ListCronTaskOptions{})
assert.NoError(t, err)
assert.Len(t, tasks, 17)
_, err = c.RunCronTasks(tasks[0].Name)
assert.NoError(t, err)
}