mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
23 lines
716 B
Go
23 lines
716 B
Go
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
package db_test
|
|
|
|
import (
|
|
"context"
|
|
db "github.com/gitpod-io/gitpod/components/gitpod-db/go"
|
|
"github.com/gitpod-io/gitpod/components/gitpod-db/go/dbtest"
|
|
"github.com/stretchr/testify/require"
|
|
"testing"
|
|
)
|
|
|
|
func TestCreateOIDCClientConfig_Create(t *testing.T) {
|
|
conn := dbtest.ConnectForTests(t)
|
|
created := dbtest.CreateOIDCClientConfigs(t, conn, db.OIDCClientConfig{})[0]
|
|
|
|
retrieved, err := db.GetOIDCClientConfig(context.Background(), conn, created.ID)
|
|
require.NoError(t, err)
|
|
require.Equal(t, created, retrieved)
|
|
}
|