aboutsummaryrefslogtreecommitdiff
path: root/internal/db/orgs_test.go
diff options
context:
space:
mode:
authorJoe Chen <jc@unknwon.io>2022-11-05 13:12:53 +0800
committerGitHub <noreply@github.com>2022-11-05 13:12:53 +0800
commita66c90462da24a916ee62afcb5a1f79d06ed8399 (patch)
treeac193502864d4f9309e82adf2b883f2d6cdfe879 /internal/db/orgs_test.go
parent3af5a424f0e1afa9e77a60376bca97bc5c3b5f8b (diff)
refactor(db): migrate methods off `user.go` and `org.go` (#7219) (#7227)
Diffstat (limited to 'internal/db/orgs_test.go')
-rw-r--r--internal/db/orgs_test.go123
1 files changed, 123 insertions, 0 deletions
diff --git a/internal/db/orgs_test.go b/internal/db/orgs_test.go
new file mode 100644
index 00000000..bee7444b
--- /dev/null
+++ b/internal/db/orgs_test.go
@@ -0,0 +1,123 @@
+// Copyright 2022 The Gogs 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 db
+
+import (
+ "context"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+
+ "gogs.io/gogs/internal/dbtest"
+ "gogs.io/gogs/internal/dbutil"
+)
+
+func TestOrgs(t *testing.T) {
+ if testing.Short() {
+ t.Skip()
+ }
+ t.Parallel()
+
+ tables := []interface{}{new(User), new(EmailAddress), new(OrgUser)}
+ db := &orgs{
+ DB: dbtest.NewDB(t, "orgs", tables...),
+ }
+
+ for _, tc := range []struct {
+ name string
+ test func(t *testing.T, db *orgs)
+ }{
+ {"List", orgsList},
+ } {
+ t.Run(tc.name, func(t *testing.T) {
+ t.Cleanup(func() {
+ err := clearTables(t, db.DB, tables...)
+ require.NoError(t, err)
+ })
+ tc.test(t, db)
+ })
+ if t.Failed() {
+ break
+ }
+ }
+}
+
+func orgsList(t *testing.T, db *orgs) {
+ ctx := context.Background()
+
+ usersStore := NewUsersStore(db.DB)
+ alice, err := usersStore.Create(ctx, "alice", "alice@example.com", CreateUserOptions{})
+ require.NoError(t, err)
+ bob, err := usersStore.Create(ctx, "bob", "bob@example.com", CreateUserOptions{})
+ require.NoError(t, err)
+
+ // TODO: Use Orgs.Create to replace SQL hack when the method is available.
+ org1, err := usersStore.Create(ctx, "org1", "org1@example.com", CreateUserOptions{})
+ require.NoError(t, err)
+ err = db.Exec(
+ dbutil.Quote("UPDATE %s SET %s = ? WHERE id = ?", "user", "type"),
+ UserTypeOrganization, org1.ID,
+ ).Error
+ require.NoError(t, err)
+ org2, err := usersStore.Create(ctx, "org2", "org2@example.com", CreateUserOptions{})
+ require.NoError(t, err)
+ err = db.Exec(
+ dbutil.Quote("UPDATE %s SET %s = ? WHERE id = ?", "user", "type"),
+ UserTypeOrganization, org2.ID,
+ ).Error
+ require.NoError(t, err)
+
+ // TODO: Use OrgUsers.Join to replace SQL hack when the method is available.
+ err = db.Exec(`INSERT INTO org_user (uid, org_id, is_public) VALUES (?, ?, ?)`, alice.ID, org1.ID, false).Error
+ require.NoError(t, err)
+ err = db.Exec(`INSERT INTO org_user (uid, org_id, is_public) VALUES (?, ?, ?)`, alice.ID, org2.ID, true).Error
+ require.NoError(t, err)
+ err = db.Exec(`INSERT INTO org_user (uid, org_id, is_public) VALUES (?, ?, ?)`, bob.ID, org2.ID, true).Error
+ require.NoError(t, err)
+
+ tests := []struct {
+ name string
+ opts ListOrgOptions
+ wantOrgNames []string
+ }{
+ {
+ name: "only public memberships for a user",
+ opts: ListOrgOptions{
+ MemberID: alice.ID,
+ IncludePrivateMembers: false,
+ },
+ wantOrgNames: []string{org2.Name},
+ },
+ {
+ name: "all memberships for a user",
+ opts: ListOrgOptions{
+ MemberID: alice.ID,
+ IncludePrivateMembers: true,
+ },
+ wantOrgNames: []string{org1.Name, org2.Name},
+ },
+ {
+ name: "no membership for a non-existent user",
+ opts: ListOrgOptions{
+ MemberID: 404,
+ IncludePrivateMembers: true,
+ },
+ wantOrgNames: []string{},
+ },
+ }
+ for _, test := range tests {
+ t.Run(test.name, func(t *testing.T) {
+ got, err := db.List(ctx, test.opts)
+ require.NoError(t, err)
+
+ gotOrgNames := make([]string, len(got))
+ for i := range got {
+ gotOrgNames[i] = got[i].Name
+ }
+ assert.Equal(t, test.wantOrgNames, gotOrgNames)
+ })
+ }
+}