Files
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

158 lines
4.9 KiB
Go

/*
* 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
* 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 contextutil
import (
"context"
"fmt"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"google.golang.org/grpc/metadata"
"github.com/milvus-io/milvus/pkg/v3/util"
"github.com/milvus-io/milvus/pkg/v3/util/crypto"
"github.com/milvus-io/milvus/pkg/v3/util/interceptor"
)
func TestAppendToIncomingContext(t *testing.T) {
t.Run("invalid kvs", func(t *testing.T) {
assert.Panics(t, func() {
// nolint
AppendToIncomingContext(context.Background(), "foo")
})
})
t.Run("valid kvs", func(t *testing.T) {
ctx := context.Background()
ctx = AppendToIncomingContext(ctx, "foo", "bar")
md, ok := metadata.FromIncomingContext(ctx)
assert.True(t, ok)
assert.Equal(t, "bar", md.Get("foo")[0])
})
}
func TestSetToIncomingContext(t *testing.T) {
t.Run("invalid kvs", func(t *testing.T) {
assert.Panics(t, func() {
// nolint
SetToIncomingContext(context.Background(), "foo")
})
})
t.Run("valid kvs", func(t *testing.T) {
ctx := context.Background()
ctx = SetToIncomingContext(ctx, "foo", "bar1")
md, ok := metadata.FromIncomingContext(ctx)
assert.True(t, ok)
assert.Equal(t, "bar1", md.Get("foo")[0])
ctx = SetToIncomingContext(ctx, "foo", "bar2")
md, ok = metadata.FromIncomingContext(ctx)
assert.True(t, ok)
assert.Equal(t, "bar2", md.Get("foo")[0])
})
}
func TestGetCurUserFromContext(t *testing.T) {
_, err := GetCurUserFromContext(context.Background())
assert.Error(t, err)
_, err = GetCurUserFromContext(metadata.NewIncomingContext(context.Background(), metadata.New(map[string]string{})))
assert.Error(t, err)
_, err = GetCurUserFromContext(GetContext(context.Background(), "123456"))
assert.Error(t, err)
root := "root"
password := "123456"
username, err := GetCurUserFromContext(GetContext(context.Background(), fmt.Sprintf("%s%s%s", root, util.CredentialSeparator, password)))
assert.NoError(t, err)
assert.Equal(t, root, username)
{
u, p, e := GetAuthInfoFromContext(GetContext(context.Background(), fmt.Sprintf("%s%s%s", root, util.CredentialSeparator, password)))
assert.NoError(t, e)
assert.Equal(t, "root", u)
assert.Equal(t, password, p)
}
}
func TestIsIntraClusterRequest(t *testing.T) {
t.Run("no incoming metadata means in-process call", func(t *testing.T) {
assert.True(t, IsIntraClusterRequest(context.Background()))
})
t.Run("serverID without authorization", func(t *testing.T) {
ctx := metadata.NewIncomingContext(context.Background(),
metadata.New(map[string]string{interceptor.ServerIDKey: "1"}))
assert.True(t, IsIntraClusterRequest(ctx))
})
t.Run("cluster key without authorization", func(t *testing.T) {
ctx := metadata.NewIncomingContext(context.Background(),
metadata.New(map[string]string{interceptor.ClusterKey: "by-dev"}))
assert.True(t, IsIntraClusterRequest(ctx))
})
t.Run("authorization always wins", func(t *testing.T) {
ctx := metadata.NewIncomingContext(context.Background(), metadata.New(map[string]string{
interceptor.ServerIDKey: "1",
util.HeaderAuthorize: crypto.Base64Encode("root:root"),
}))
assert.False(t, IsIntraClusterRequest(ctx))
})
t.Run("authorization only", func(t *testing.T) {
ctx := GetContext(context.Background(), "root:root")
assert.False(t, IsIntraClusterRequest(ctx))
})
t.Run("metadata without any known key is not intra-cluster", func(t *testing.T) {
ctx := metadata.NewIncomingContext(context.Background(),
metadata.New(map[string]string{"foo": "bar"}))
assert.False(t, IsIntraClusterRequest(ctx))
})
}
func GetContext(ctx context.Context, originValue string) context.Context {
authKey := strings.ToLower(util.HeaderAuthorize)
authValue := crypto.Base64Encode(originValue)
contextMap := map[string]string{
authKey: authValue,
}
md := metadata.New(contextMap)
return metadata.NewIncomingContext(ctx, md)
}
func TestQueryLabel(t *testing.T) {
ctx := context.Background()
// default should be "query"
assert.Equal(t, "query", GetQueryLabel(ctx))
// set upsert_query
ctx = WithQueryLabel(ctx, "upsert_query")
assert.Equal(t, "upsert_query", GetQueryLabel(ctx))
// empty string should fallback to default
ctx2 := WithQueryLabel(context.Background(), "")
assert.Equal(t, "query", GetQueryLabel(ctx2))
}