mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
134 lines
3.1 KiB
Go
134 lines
3.1 KiB
Go
// Copyright 2021 The etcd Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package schema
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/coreos/go-semver/semver"
|
|
"github.com/stretchr/testify/assert"
|
|
"go.etcd.io/bbolt"
|
|
|
|
"go.etcd.io/etcd/server/v3/storage/backend"
|
|
"go.etcd.io/etcd/server/v3/storage/backend/testing"
|
|
)
|
|
|
|
// TestVersion ensures that UnsafeSetStorageVersion/UnsafeReadStorageVersion work well together.
|
|
func TestVersion(t *testing.T) {
|
|
tcs := []struct {
|
|
version string
|
|
expectVersion string
|
|
}{
|
|
{
|
|
version: "3.5.0",
|
|
expectVersion: "3.5.0",
|
|
},
|
|
{
|
|
version: "3.5.0-alpha",
|
|
expectVersion: "3.5.0",
|
|
},
|
|
{
|
|
version: "3.5.0-beta.0",
|
|
expectVersion: "3.5.0",
|
|
},
|
|
{
|
|
version: "3.5.0-rc.1",
|
|
expectVersion: "3.5.0",
|
|
},
|
|
{
|
|
version: "3.5.1",
|
|
expectVersion: "3.5.0",
|
|
},
|
|
}
|
|
for _, tc := range tcs {
|
|
t.Run(tc.version, func(t *testing.T) {
|
|
be, tmpPath := betesting.NewTmpBackend(t, time.Microsecond, 10)
|
|
tx := be.BatchTx()
|
|
if tx == nil {
|
|
t.Fatal("batch tx is nil")
|
|
}
|
|
tx.Lock()
|
|
tx.UnsafeCreateBucket(Meta)
|
|
UnsafeSetStorageVersion(tx, semver.New(tc.version))
|
|
tx.Unlock()
|
|
be.ForceCommit()
|
|
be.Close()
|
|
|
|
b := backend.NewDefaultBackend(tmpPath)
|
|
defer b.Close()
|
|
v := UnsafeReadStorageVersion(b.BatchTx())
|
|
|
|
assert.Equal(t, tc.expectVersion, v.String())
|
|
})
|
|
}
|
|
}
|
|
|
|
// TestVersionSnapshot ensures that UnsafeSetStorageVersion/unsafeReadStorageVersionFromSnapshot work well together.
|
|
func TestVersionSnapshot(t *testing.T) {
|
|
tcs := []struct {
|
|
version string
|
|
expectVersion string
|
|
}{
|
|
{
|
|
version: "3.5.0",
|
|
expectVersion: "3.5.0",
|
|
},
|
|
{
|
|
version: "3.5.0-alpha",
|
|
expectVersion: "3.5.0",
|
|
},
|
|
{
|
|
version: "3.5.0-beta.0",
|
|
expectVersion: "3.5.0",
|
|
},
|
|
{
|
|
version: "3.5.0-rc.1",
|
|
expectVersion: "3.5.0",
|
|
},
|
|
}
|
|
for _, tc := range tcs {
|
|
t.Run(tc.version, func(t *testing.T) {
|
|
be, tmpPath := betesting.NewTmpBackend(t, time.Microsecond, 10)
|
|
tx := be.BatchTx()
|
|
if tx == nil {
|
|
t.Fatal("batch tx is nil")
|
|
}
|
|
tx.Lock()
|
|
tx.UnsafeCreateBucket(Meta)
|
|
UnsafeSetStorageVersion(tx, semver.New(tc.version))
|
|
tx.Unlock()
|
|
be.ForceCommit()
|
|
be.Close()
|
|
db, err := bbolt.Open(tmpPath, 0400, &bbolt.Options{ReadOnly: true})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer db.Close()
|
|
|
|
var ver *semver.Version
|
|
if err = db.View(func(tx *bbolt.Tx) error {
|
|
ver = ReadStorageVersionFromSnapshot(tx)
|
|
return nil
|
|
}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Equal(t, tc.expectVersion, ver.String())
|
|
|
|
})
|
|
}
|
|
}
|