mirror of
https://github.com/gogs/gogs.git
synced 2025-12-21 15:50:00 +01:00
chore: rename internal/db to internal/database (#7665)
This commit is contained in:
71
internal/database/public_keys_test.go
Normal file
71
internal/database/public_keys_test.go
Normal file
@@ -0,0 +1,71 @@
|
||||
// Copyright 2023 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 database
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"gogs.io/gogs/internal/conf"
|
||||
"gogs.io/gogs/internal/dbtest"
|
||||
)
|
||||
|
||||
func TestPublicKeys(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip()
|
||||
}
|
||||
t.Parallel()
|
||||
|
||||
ctx := context.Background()
|
||||
tables := []any{new(PublicKey)}
|
||||
db := &publicKeys{
|
||||
DB: dbtest.NewDB(t, "publicKeys", tables...),
|
||||
}
|
||||
|
||||
for _, tc := range []struct {
|
||||
name string
|
||||
test func(t *testing.T, ctx context.Context, db *publicKeys)
|
||||
}{
|
||||
{"RewriteAuthorizedKeys", publicKeysRewriteAuthorizedKeys},
|
||||
} {
|
||||
t.Run(tc.name, func(t *testing.T) {
|
||||
t.Cleanup(func() {
|
||||
err := clearTables(t, db.DB, tables...)
|
||||
require.NoError(t, err)
|
||||
})
|
||||
tc.test(t, ctx, db)
|
||||
})
|
||||
if t.Failed() {
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func publicKeysRewriteAuthorizedKeys(t *testing.T, ctx context.Context, db *publicKeys) {
|
||||
// TODO: Use PublicKeys.Add to replace SQL hack when the method is available.
|
||||
publicKey := &PublicKey{
|
||||
OwnerID: 1,
|
||||
Name: "test-key",
|
||||
Fingerprint: "12:f8:7e:78:61:b4:bf:e2:de:24:15:96:4e:d4:72:53",
|
||||
Content: "test-key-content",
|
||||
}
|
||||
err := db.DB.Create(publicKey).Error
|
||||
require.NoError(t, err)
|
||||
tempSSHRootPath := filepath.Join(os.TempDir(), "publicKeysRewriteAuthorizedKeys-tempSSHRootPath")
|
||||
conf.SetMockSSH(t, conf.SSHOpts{RootPath: tempSSHRootPath})
|
||||
err = db.RewriteAuthorizedKeys()
|
||||
require.NoError(t, err)
|
||||
|
||||
authorizedKeys, err := os.ReadFile(authorizedKeysPath())
|
||||
require.NoError(t, err)
|
||||
assert.Contains(t, string(authorizedKeys), fmt.Sprintf("key-%d", publicKey.ID))
|
||||
assert.Contains(t, string(authorizedKeys), publicKey.Content)
|
||||
}
|
||||
Reference in New Issue
Block a user