feat: manually mirror opencoze's code from bytedance
Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
267
backend/domain/knowledge/internal/convert/table_test.go
Normal file
267
backend/domain/knowledge/internal/convert/table_test.go
Normal file
@@ -0,0 +1,267 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev 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 convert
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
. "github.com/bytedance/mockey"
|
||||
"github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"github.com/coze-dev/coze-studio/backend/domain/knowledge/entity"
|
||||
"github.com/coze-dev/coze-studio/backend/infra/contract/document"
|
||||
"github.com/coze-dev/coze-studio/backend/pkg/lang/ptr"
|
||||
)
|
||||
|
||||
func TestParseAnyData(t *testing.T) {
|
||||
PatchConvey("test ParseAnyData", t, func() {
|
||||
PatchConvey("test data is nil", func() {
|
||||
col := &entity.TableColumn{
|
||||
ID: 123,
|
||||
Name: "test",
|
||||
Type: document.TableColumnTypeString,
|
||||
}
|
||||
|
||||
resp, err := ParseAnyData(col, nil)
|
||||
convey.So(err, convey.ShouldBeNil)
|
||||
convey.So(resp, convey.ShouldEqual, &document.ColumnData{
|
||||
ColumnID: col.ID,
|
||||
ColumnName: col.Name,
|
||||
Type: col.Type,
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test unsupported type", func() {
|
||||
col := &entity.TableColumn{
|
||||
ID: 123,
|
||||
Name: "test",
|
||||
Type: 10001,
|
||||
}
|
||||
data := 123
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeError, fmt.Errorf("[ParseAnyData] column type not support, type=%d", col.Type))
|
||||
convey.So(resp, convey.ShouldBeNil)
|
||||
})
|
||||
|
||||
PatchConvey("test string", func() {
|
||||
col := &entity.TableColumn{
|
||||
ID: 123,
|
||||
Name: "test",
|
||||
Type: document.TableColumnTypeString,
|
||||
}
|
||||
|
||||
PatchConvey("test string", func() {
|
||||
data := "hello"
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeNil)
|
||||
convey.So(resp, convey.ShouldEqual, &document.ColumnData{
|
||||
ColumnID: col.ID,
|
||||
ColumnName: col.Name,
|
||||
Type: col.Type,
|
||||
ValString: ptr.Of(data),
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test []byte", func() {
|
||||
data := "hello"
|
||||
resp, err := ParseAnyData(col, []byte(data))
|
||||
convey.So(err, convey.ShouldBeNil)
|
||||
convey.So(resp, convey.ShouldEqual, &document.ColumnData{
|
||||
ColumnID: col.ID,
|
||||
ColumnName: col.Name,
|
||||
Type: col.Type,
|
||||
ValString: ptr.Of(data),
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test failed", func() {
|
||||
data := 123
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeError, fmt.Errorf("[ParseAnyData] type assertion failed"))
|
||||
convey.So(resp, convey.ShouldBeNil)
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test integer", func() {
|
||||
col := &entity.TableColumn{
|
||||
ID: 123,
|
||||
Name: "test",
|
||||
Type: document.TableColumnTypeInteger,
|
||||
}
|
||||
|
||||
PatchConvey("test int", func() {
|
||||
allData := []any{1, int8(1), int16(1), int32(1), int64(1)}
|
||||
for _, data := range allData {
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeNil)
|
||||
convey.So(resp, convey.ShouldEqual, &document.ColumnData{
|
||||
ColumnID: col.ID,
|
||||
ColumnName: col.Name,
|
||||
Type: col.Type,
|
||||
ValInteger: ptr.Of(int64(1)),
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
PatchConvey("test uint", func() {
|
||||
allData := []any{uint(1), uint8(1), uint16(1), uint32(1), uint64(1), uintptr(1)}
|
||||
for _, data := range allData {
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeNil)
|
||||
convey.So(resp, convey.ShouldEqual, &document.ColumnData{
|
||||
ColumnID: col.ID,
|
||||
ColumnName: col.Name,
|
||||
Type: col.Type,
|
||||
ValInteger: ptr.Of(int64(1)),
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
PatchConvey("test failed", func() {
|
||||
data := "hello"
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeError, fmt.Errorf("[ParseAnyData] type assertion failed"))
|
||||
convey.So(resp, convey.ShouldBeNil)
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test time", func() {
|
||||
col := &entity.TableColumn{
|
||||
ID: 123,
|
||||
Name: "test",
|
||||
Type: document.TableColumnTypeTime,
|
||||
}
|
||||
|
||||
PatchConvey("test time", func() {
|
||||
data := time.Now()
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeNil)
|
||||
convey.So(resp, convey.ShouldEqual, &document.ColumnData{
|
||||
ColumnID: col.ID,
|
||||
ColumnName: col.Name,
|
||||
Type: col.Type,
|
||||
ValTime: ptr.Of(data),
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test failed", func() {
|
||||
data := "hello"
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeError, fmt.Errorf("[ParseAnyData] type assertion failed"))
|
||||
convey.So(resp, convey.ShouldBeNil)
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test number", func() {
|
||||
col := &entity.TableColumn{
|
||||
ID: 123,
|
||||
Name: "test",
|
||||
Type: document.TableColumnTypeNumber,
|
||||
}
|
||||
|
||||
PatchConvey("test float", func() {
|
||||
allData := []any{float32(1), 1.0}
|
||||
for _, data := range allData {
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeNil)
|
||||
convey.So(resp, convey.ShouldEqual, &document.ColumnData{
|
||||
ColumnID: col.ID,
|
||||
ColumnName: col.Name,
|
||||
Type: col.Type,
|
||||
ValNumber: ptr.Of(float64(1)),
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
PatchConvey("test failed", func() {
|
||||
data := "hello"
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeError, fmt.Errorf("[ParseAnyData] type assertion failed"))
|
||||
convey.So(resp, convey.ShouldBeNil)
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test boolean", func() {
|
||||
col := &entity.TableColumn{
|
||||
ID: 123,
|
||||
Name: "test",
|
||||
Type: document.TableColumnTypeBoolean,
|
||||
}
|
||||
|
||||
PatchConvey("test float", func() {
|
||||
resp, err := ParseAnyData(col, true)
|
||||
convey.So(err, convey.ShouldBeNil)
|
||||
convey.So(resp, convey.ShouldEqual, &document.ColumnData{
|
||||
ColumnID: col.ID,
|
||||
ColumnName: col.Name,
|
||||
Type: col.Type,
|
||||
ValBoolean: ptr.Of(true),
|
||||
})
|
||||
|
||||
})
|
||||
|
||||
PatchConvey("test failed", func() {
|
||||
data := "hello"
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeError, fmt.Errorf("[ParseAnyData] type assertion failed"))
|
||||
convey.So(resp, convey.ShouldBeNil)
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test image", func() {
|
||||
col := &entity.TableColumn{
|
||||
ID: 123,
|
||||
Name: "test",
|
||||
Type: document.TableColumnTypeImage,
|
||||
}
|
||||
|
||||
PatchConvey("test string", func() {
|
||||
data := "hello"
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeNil)
|
||||
convey.So(resp, convey.ShouldEqual, &document.ColumnData{
|
||||
ColumnID: col.ID,
|
||||
ColumnName: col.Name,
|
||||
Type: col.Type,
|
||||
ValImage: ptr.Of(data),
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test []byte", func() {
|
||||
data := "hello"
|
||||
resp, err := ParseAnyData(col, []byte(data))
|
||||
convey.So(err, convey.ShouldBeNil)
|
||||
convey.So(resp, convey.ShouldEqual, &document.ColumnData{
|
||||
ColumnID: col.ID,
|
||||
ColumnName: col.Name,
|
||||
Type: col.Type,
|
||||
ValImage: ptr.Of(data),
|
||||
})
|
||||
})
|
||||
|
||||
PatchConvey("test failed", func() {
|
||||
data := 123
|
||||
resp, err := ParseAnyData(col, data)
|
||||
convey.So(err, convey.ShouldBeError, fmt.Errorf("[ParseAnyData] type assertion failed"))
|
||||
convey.So(resp, convey.ShouldBeNil)
|
||||
})
|
||||
})
|
||||
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user