Files

83 lines
2.0 KiB
Go
Raw Permalink Normal View History

2021-07-24 11:16:34 +01:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-07-24 11:16:34 +01:00
2025-06-27 07:59:55 +02:00
package v1_16
2021-07-24 11:16:34 +01:00
import (
"testing"
2022-11-02 16:54:36 +08:00
"code.gitea.io/gitea/models/migrations/base"
"code.gitea.io/gitea/modules/json"
2021-07-24 11:16:34 +01:00
"github.com/stretchr/testify/assert"
)
// LoginSource represents an external way for authorizing users.
type LoginSourceOriginalV189 struct {
ID int64 `xorm:"pk autoincr"`
Type int
IsActived bool `xorm:"INDEX NOT NULL DEFAULT false"`
Cfg string `xorm:"TEXT"`
Expected string `xorm:"TEXT"`
}
func (ls *LoginSourceOriginalV189) TableName() string {
return "login_source"
}
2022-11-02 16:54:36 +08:00
func Test_UnwrapLDAPSourceCfg(t *testing.T) {
2021-07-24 11:16:34 +01:00
// Prepare and load the testing database
2022-11-02 16:54:36 +08:00
x, deferable := base.PrepareTestEnv(t, 0, new(LoginSourceOriginalV189))
2021-07-24 11:16:34 +01:00
if x == nil || t.Failed() {
defer deferable()
return
}
defer deferable()
// LoginSource represents an external way for authorizing users.
type LoginSource struct {
ID int64 `xorm:"pk autoincr"`
Type int
IsActive bool `xorm:"INDEX NOT NULL DEFAULT false"`
Cfg string `xorm:"TEXT"`
Expected string `xorm:"TEXT"`
}
// Run the migration
2022-11-02 16:54:36 +08:00
if err := UnwrapLDAPSourceCfg(x); err != nil {
2021-07-24 11:16:34 +01:00
assert.NoError(t, err)
return
}
const batchSize = 100
for start := 0; ; start += batchSize {
sources := make([]*LoginSource, 0, batchSize)
if err := x.Table("login_source").Limit(batchSize, start).Find(&sources); err != nil {
assert.NoError(t, err)
return
}
if len(sources) == 0 {
break
}
for _, source := range sources {
2023-07-04 20:36:08 +02:00
converted := map[string]any{}
expected := map[string]any{}
2021-07-24 11:16:34 +01:00
if err := json.Unmarshal([]byte(source.Cfg), &converted); err != nil {
2021-07-24 11:16:34 +01:00
assert.NoError(t, err)
return
}
if err := json.Unmarshal([]byte(source.Expected), &expected); err != nil {
2021-07-24 11:16:34 +01:00
assert.NoError(t, err)
return
}
2025-03-31 07:53:48 +02:00
assert.Equal(t, expected, converted, "UnwrapLDAPSourceCfg failed for %d", source.ID)
assert.Equal(t, source.ID%2 == 0, source.IsActive, "UnwrapLDAPSourceCfg failed for %d", source.ID)
2021-07-24 11:16:34 +01:00
}
}
}