feat: manually mirror opencoze's code from bytedance

Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
fanlv
2025-07-20 17:36:12 +08:00
commit 890153324f
14811 changed files with 1923430 additions and 0 deletions

View File

@@ -0,0 +1,133 @@
/*
* 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 builtin
import (
"bytes"
"context"
"testing"
"github.com/cloudwego/eino/components/document/parser"
"github.com/stretchr/testify/assert"
"github.com/coze-dev/coze-studio/backend/infra/contract/document"
contract "github.com/coze-dev/coze-studio/backend/infra/contract/document/parser"
)
func TestParseJSON(t *testing.T) {
b := []byte(`[
{
"department": "心血管科",
"title": "高血压患者能吃党参吗?",
"question": "我有高血压这两天女婿来的时候给我拿了些党参泡水喝,您好高血压可以吃党参吗?",
"answer": "高血压病人可以口服党参的。党参有降血脂,降血压的作用,可以彻底消除血液中的垃圾,从而对冠心病以及心血管疾病的患者都有一定的稳定预防工作作用,因此平时口服党参能远离三高的危害。另外党参除了益气养血,降低中枢神经作用,调整消化系统功能,健脾补肺的功能。感谢您的进行咨询,期望我的解释对你有所帮助。"
},
{
"department": "消化科",
"title": "哪家医院能治胃反流",
"question": "烧心打隔咳嗽低烧以有4年多",
"answer": "建议你用奥美拉唑同时,加用吗丁啉或莫沙必利或援生力维,另外还可以加用达喜片"
}
]`)
reader := bytes.NewReader(b)
config := &contract.Config{
FileExtension: contract.FileExtensionJSON,
ParsingStrategy: &contract.ParsingStrategy{
HeaderLine: 0,
DataStartLine: 1,
RowsCount: 2,
},
ChunkingStrategy: nil,
}
pfn := parseJSON(config)
docs, err := pfn(context.Background(), reader, parser.WithExtraMeta(map[string]any{
"document_id": int64(123),
"knowledge_id": int64(456),
}))
assert.NoError(t, err)
for i, doc := range docs {
assertSheet(t, i, doc)
}
}
func TestParseJSONWithSchema(t *testing.T) {
b := []byte(`[
{
"department": "心血管科",
"title": "高血压患者能吃党参吗?",
"question": "我有高血压这两天女婿来的时候给我拿了些党参泡水喝,您好高血压可以吃党参吗?",
"answer": "高血压病人可以口服党参的。党参有降血脂,降血压的作用,可以彻底消除血液中的垃圾,从而对冠心病以及心血管疾病的患者都有一定的稳定预防工作作用,因此平时口服党参能远离三高的危害。另外党参除了益气养血,降低中枢神经作用,调整消化系统功能,健脾补肺的功能。感谢您的进行咨询,期望我的解释对你有所帮助。"
},
{
"department": "消化科",
"title": "哪家医院能治胃反流",
"question": "烧心打隔咳嗽低烧以有4年多",
"answer": "建议你用奥美拉唑同时,加用吗丁啉或莫沙必利或援生力维,另外还可以加用达喜片"
}
]`)
reader := bytes.NewReader(b)
config := &contract.Config{
FileExtension: contract.FileExtensionJSON,
ParsingStrategy: &contract.ParsingStrategy{
HeaderLine: 0,
DataStartLine: 1,
RowsCount: 2,
Columns: []*document.Column{
{
ID: 101,
Name: "department",
Type: document.TableColumnTypeString,
Nullable: false,
Sequence: 0,
},
{
ID: 102,
Name: "title",
Type: document.TableColumnTypeString,
Nullable: false,
Sequence: 1,
},
{
ID: 103,
Name: "question",
Type: document.TableColumnTypeString,
Nullable: false,
Sequence: 2,
},
{
ID: 104,
Name: "answer",
Type: document.TableColumnTypeString,
Nullable: false,
Sequence: 3,
},
},
},
}
pfn := parseJSON(config)
docs, err := pfn(context.Background(), reader, parser.WithExtraMeta(map[string]any{
"document_id": int64(123),
"knowledge_id": int64(456),
}))
assert.NoError(t, err)
for i, doc := range docs {
assertSheet(t, i, doc)
}
}