代码拉取完成,页面将自动刷新
package proto
import (
"net/http"
"os"
"testing"
)
func fetchAndParse(t *testing.T, url string) *Proto {
resp, err := http.Get(url)
if err != nil {
t.Fatal(url, err)
}
defer resp.Body.Close()
parser := NewParser(resp.Body)
def, err := parser.Parse()
if err != nil {
t.Fatal(url, err)
}
t.Log("elements:", len(def.Elements))
return def
}
// PB=y go test -v -run ^TestPublicProtoDefinitions$
func TestPublicProtoDefinitions(t *testing.T) {
if len(os.Getenv("PB")) == 0 {
t.Skip("PB test not run")
}
for _, each := range []string{
"https://raw.githubusercontent.com/gogo/protobuf/master/test/thetest.proto",
"https://raw.githubusercontent.com/gogo/protobuf/master/test/theproto3/theproto3.proto",
"https://raw.githubusercontent.com/googleapis/googleapis/master/google/privacy/dlp/v2/dlp.proto",
// "https://raw.githubusercontent.com/envoyproxy/data-plane-api/master/envoy/api/v2/auth/cert.proto",
} {
def := fetchAndParse(t, each)
checkParent(def, t)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。