2021-12-15 22:57:21 +08:00
|
|
|
// Licensed to the LF AI & Data foundation under one
|
|
|
|
// or more contributor license agreements. See the NOTICE file
|
|
|
|
// distributed with this work for additional information
|
|
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
|
|
// to you under the Apache License, Version 2.0 (the
|
|
|
|
// "License"); you may not use this file except in compliance
|
2021-09-08 20:50:00 +08:00
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
2021-12-15 22:57:21 +08:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2021-09-08 20:50:00 +08:00
|
|
|
//
|
2021-12-15 22:57:21 +08:00
|
|
|
// 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.
|
2021-09-08 20:50:00 +08:00
|
|
|
|
|
|
|
package querynode
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2021-12-17 14:41:33 +08:00
|
|
|
func TestTSafeReplica(t *testing.T) {
|
|
|
|
t.Run("test valid", func(t *testing.T) {
|
|
|
|
replica := newTSafeReplica()
|
2021-12-17 20:12:42 +08:00
|
|
|
replica.addTSafe(defaultDMLChannel)
|
2021-12-17 14:41:33 +08:00
|
|
|
watcher := newTSafeWatcher()
|
|
|
|
assert.NotNil(t, watcher)
|
2021-09-08 20:50:00 +08:00
|
|
|
|
2021-12-17 20:12:42 +08:00
|
|
|
err := replica.registerTSafeWatcher(defaultDMLChannel, watcher)
|
2021-12-17 14:41:33 +08:00
|
|
|
assert.NoError(t, err)
|
2021-09-08 20:50:00 +08:00
|
|
|
|
2021-12-17 14:41:33 +08:00
|
|
|
timestamp := Timestamp(1000)
|
2021-12-17 20:12:42 +08:00
|
|
|
err = replica.setTSafe(defaultDMLChannel, timestamp)
|
2021-12-17 14:41:33 +08:00
|
|
|
assert.NoError(t, err)
|
2021-09-08 20:50:00 +08:00
|
|
|
|
2021-12-17 20:12:42 +08:00
|
|
|
resT, err := replica.getTSafe(defaultDMLChannel)
|
2021-12-17 14:41:33 +08:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, timestamp, resT)
|
2021-09-08 20:50:00 +08:00
|
|
|
|
2021-12-17 20:12:42 +08:00
|
|
|
replica.removeTSafe(defaultDMLChannel)
|
|
|
|
_, err = replica.getTSafe(defaultDMLChannel)
|
2021-12-17 14:41:33 +08:00
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
2021-09-08 20:50:00 +08:00
|
|
|
|
2021-12-17 14:41:33 +08:00
|
|
|
t.Run("test invalid", func(t *testing.T) {
|
|
|
|
replica := newTSafeReplica()
|
2021-09-08 20:50:00 +08:00
|
|
|
|
2021-12-17 20:12:42 +08:00
|
|
|
err := replica.registerTSafeWatcher(defaultDMLChannel, nil)
|
2021-12-17 14:41:33 +08:00
|
|
|
assert.Error(t, err)
|
2021-09-08 20:50:00 +08:00
|
|
|
|
2021-12-17 20:12:42 +08:00
|
|
|
_, err = replica.getTSafe(defaultDMLChannel)
|
2021-12-17 14:41:33 +08:00
|
|
|
assert.Error(t, err)
|
2021-09-08 20:50:00 +08:00
|
|
|
|
2021-12-17 20:12:42 +08:00
|
|
|
err = replica.setTSafe(defaultDMLChannel, Timestamp(1000))
|
2021-12-17 14:41:33 +08:00
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
2021-09-08 20:50:00 +08:00
|
|
|
}
|