gr_hz/protobuf/plugin_test.go

99 lines
2.6 KiB
Go
Raw Normal View History

2024-04-30 19:30:09 +08:00
/*
* Copyright 2022 CloudWeGo 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 protobuf
import (
"io/ioutil"
"strings"
"testing"
2024-04-30 23:07:06 +08:00
"golib.gaore.com/GaoreGo/gr_hz/meta"
2024-04-30 19:30:09 +08:00
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/pluginpb"
)
func TestPlugin_Handle(t *testing.T) {
in, err := ioutil.ReadFile("../testdata/request_protoc.out")
if err != nil {
t.Fatal(err)
}
req := &pluginpb.CodeGeneratorRequest{}
err = proto.Unmarshal(in, req)
if err != nil {
t.Fatalf("unmarshal stdin request error: %v", err)
}
// prepare args
plu := &Plugin{}
plu.setLogger()
args, _ := plu.parseArgs(*req.Parameter)
plu.Handle(req, args)
plu.recvWarningLogger()
}
func TestFixModelPathAndPackage(t *testing.T) {
plu := &Plugin{}
plu.Package = "cloudwego/hertz"
plu.ModelDir = meta.ModelDir
// default model dir
ret1 := [][]string{
{"a/b/c", "cloudwego/hertz/biz/model/a/b/c"},
{"biz/model/a/b/c", "cloudwego/hertz/biz/model/a/b/c"},
{"cloudwego/hertz/a/b/c", "cloudwego/hertz/biz/model/a/b/c"},
{"cloudwego/hertz/biz/model/a/b/c", "cloudwego/hertz/biz/model/a/b/c"},
}
for _, r := range ret1 {
tmp := r[0]
if !strings.Contains(tmp, plu.Package) {
if strings.HasPrefix(tmp, "/") {
tmp = plu.Package + tmp
} else {
tmp = plu.Package + "/" + tmp
}
}
result, _ := plu.fixModelPathAndPackage(tmp)
if result != r[1] {
t.Fatalf("want go package: %s, but get: %s", r[1], result)
}
}
plu.ModelDir = "model_test"
// customized model dir
ret2 := [][]string{
{"a/b/c", "cloudwego/hertz/model_test/a/b/c"},
{"model_test/a/b/c", "cloudwego/hertz/model_test/a/b/c"},
{"cloudwego/hertz/a/b/c", "cloudwego/hertz/model_test/a/b/c"},
{"cloudwego/hertz/model_test/a/b/c", "cloudwego/hertz/model_test/a/b/c"},
}
for _, r := range ret2 {
tmp := r[0]
if !strings.Contains(tmp, plu.Package) {
if strings.HasPrefix(tmp, "/") {
tmp = plu.Package + tmp
} else {
tmp = plu.Package + "/" + tmp
}
}
result, _ := plu.fixModelPathAndPackage(tmp)
if result != r[1] {
t.Fatalf("want go package: %s, but get: %s", r[1], result)
}
}
}