123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- // Copyright 2022-2023 EMQ Technologies Co., Ltd.
- //
- // 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.
- //go:build schema || !core
- package schema
- import (
- "os"
- "path/filepath"
- "reflect"
- "testing"
- "github.com/stretchr/testify/assert"
- "github.com/lf-edge/ekuiper/internal/conf"
- "github.com/lf-edge/ekuiper/internal/testx"
- "github.com/lf-edge/ekuiper/pkg/ast"
- )
- func TestInferProtobuf(t *testing.T) {
- testx.InitEnv()
- // Move test schema file to etc dir
- etcDir, err := conf.GetDataLoc()
- if err != nil {
- t.Fatal(err)
- }
- etcDir = filepath.Join(etcDir, "schemas", "protobuf")
- err = os.MkdirAll(etcDir, os.ModePerm)
- if err != nil {
- t.Fatal(err)
- }
- // Copy init.proto
- bytesRead, err := os.ReadFile("test/test1.proto")
- if err != nil {
- t.Fatal(err)
- }
- err = os.WriteFile(filepath.Join(etcDir, "test1.proto"), bytesRead, 0o755)
- if err != nil {
- t.Fatal(err)
- }
- defer func() {
- err = os.RemoveAll(etcDir)
- if err != nil {
- t.Fatal(err)
- }
- }()
- err = InitRegistry()
- if err != nil {
- t.Errorf("InitRegistry error: %v", err)
- return
- }
- // Test infer
- result, err := InferProtobuf("test1", "Person")
- if err != nil {
- t.Errorf("InferProtobuf error: %v", err)
- return
- }
- expected := ast.StreamFields{
- {Name: "name", FieldType: &ast.BasicType{Type: ast.STRINGS}},
- {Name: "id", FieldType: &ast.BasicType{Type: ast.BIGINT}},
- {Name: "email", FieldType: &ast.BasicType{Type: ast.STRINGS}},
- {Name: "code", FieldType: &ast.ArrayType{
- Type: ast.STRUCT,
- FieldType: &ast.RecType{StreamFields: []ast.StreamField{
- {Name: "doubles", FieldType: &ast.ArrayType{Type: ast.FLOAT}},
- }},
- }},
- }
- if !reflect.DeepEqual(result, expected) {
- t.Errorf("InferProtobuf result is not expected, got %v, expected %v", result, expected)
- }
- }
- func TestInferProtobufWithEmbedType(t *testing.T) {
- testx.InitEnv()
- // Move test schema file to etc dir
- etcDir, err := conf.GetDataLoc()
- if err != nil {
- t.Fatal(err)
- }
- etcDir = filepath.Join(etcDir, "schemas", "protobuf")
- err = os.MkdirAll(etcDir, os.ModePerm)
- if err != nil {
- t.Fatal(err)
- }
- // Copy init.proto
- bytesRead, err := os.ReadFile("test/test3.proto")
- if err != nil {
- t.Fatal(err)
- }
- err = os.WriteFile(filepath.Join(etcDir, "test3.proto"), bytesRead, 0o755)
- if err != nil {
- t.Fatal(err)
- }
- defer func() {
- err = os.RemoveAll(etcDir)
- if err != nil {
- t.Fatal(err)
- }
- }()
- err = InitRegistry()
- if err != nil {
- t.Errorf("InitRegistry error: %v", err)
- return
- }
- // Test infer
- result, err := InferProtobuf("test3", "DrivingData")
- if err != nil {
- t.Errorf("InferProtobuf error: %v", err)
- return
- }
- expected := ast.StreamFields{
- {Name: "drvg_mod", FieldType: &ast.BasicType{Type: ast.BIGINT}},
- {Name: "average_speed", FieldType: &ast.BasicType{Type: ast.FLOAT}},
- {Name: "brk_pedal_sts", FieldType: &ast.RecType{StreamFields: []ast.StreamField{
- {Name: "valid", FieldType: &ast.BasicType{Type: ast.BIGINT}},
- }}},
- }
- if !assert.Equal(t, expected, result) {
- t.Errorf("InferProtobuf result is not expected, got %v, expected %v", result, expected)
- }
- }
|