Files

48 lines
1020 B
Go
Raw Permalink Normal View History

// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2025-06-27 07:59:55 +02:00
package v1_18
import (
"testing"
2022-11-02 16:54:36 +08:00
"code.gitea.io/gitea/models/migrations/base"
"github.com/stretchr/testify/assert"
)
2022-11-02 16:54:36 +08:00
func Test_AddConfidentialClientColumnToOAuth2ApplicationTable(t *testing.T) {
// premigration
2024-04-23 11:00:57 +08:00
type oauth2Application struct {
ID int64
}
// Prepare and load the testing database
2024-04-23 11:00:57 +08:00
x, deferable := base.PrepareTestEnv(t, 0, new(oauth2Application))
defer deferable()
if x == nil || t.Failed() {
return
}
2022-11-02 16:54:36 +08:00
if err := AddConfidentialClientColumnToOAuth2ApplicationTable(x); err != nil {
assert.NoError(t, err)
return
}
// postmigration
type ExpectedOAuth2Application struct {
ID int64
ConfidentialClient bool
}
got := []ExpectedOAuth2Application{}
2024-04-23 11:00:57 +08:00
if err := x.Table("oauth2_application").Select("id, confidential_client").Find(&got); !assert.NoError(t, err) {
return
}
assert.NotEmpty(t, got)
for _, e := range got {
assert.True(t, e.ConfidentialClient)
}
}