mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
85 lines
1.6 KiB
Go
85 lines
1.6 KiB
Go
package bolt
|
|
|
|
import (
|
|
"encoding/json"
|
|
"go.etcd.io/bbolt"
|
|
"testing"
|
|
)
|
|
|
|
func TestMigration_2_10_33_Apply(t *testing.T) {
|
|
store := CreateTestStore()
|
|
|
|
err := store.db.Update(func(tx *bbolt.Tx) error {
|
|
b, err := tx.CreateBucketIfNotExists([]byte("project"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = b.Put([]byte("0000000001"), []byte("{}"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
r, err := tx.CreateBucketIfNotExists([]byte("project__template_vault_0000000001"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = r.Put([]byte("0000000001"),
|
|
[]byte("{\"id\":\"1\",\"project_id\":\"1\"}"))
|
|
|
|
return err
|
|
})
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
err = migration_2_10_33{migration{store.db}}.Apply()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
var repo map[string]interface{}
|
|
err = store.db.View(func(tx *bbolt.Tx) error {
|
|
b := tx.Bucket([]byte("project__template_vault_0000000001"))
|
|
str := string(b.Get([]byte("0000000001")))
|
|
return json.Unmarshal([]byte(str), &repo)
|
|
})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if repo["type"] == nil {
|
|
t.Fatal("app must be set")
|
|
}
|
|
|
|
if repo["type"].(string) != "password" {
|
|
t.Fatal("invalid app: " + repo["type"].(string))
|
|
}
|
|
}
|
|
|
|
func TestMigration_2_10_33_Apply2(t *testing.T) {
|
|
store := CreateTestStore()
|
|
|
|
err := store.db.Update(func(tx *bbolt.Tx) error {
|
|
b, err := tx.CreateBucketIfNotExists([]byte("project"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = b.Put([]byte("0000000001"), []byte("{}"))
|
|
|
|
return err
|
|
})
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
err = migration_2_10_33{migration{store.db}}.Apply()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|