* go mod init; rm -rf vendor * tweak proto files and generation * go mod vendor * clean up build.go * protobuf literals in tests * downgrade gogo/protobuf
This commit is contained in:
46
vendor/github.com/gogo/protobuf/vanity/test/Makefile
generated
vendored
46
vendor/github.com/gogo/protobuf/vanity/test/Makefile
generated
vendored
@@ -1,46 +0,0 @@
|
||||
# Protocol Buffers for Go with Gadgets
|
||||
#
|
||||
# Copyright (c) 2013, The GoGo Authors. All rights reserved.
|
||||
# http://github.com/gogo/protobuf
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are
|
||||
# met:
|
||||
#
|
||||
# * Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# * Redistributions in binary form must reproduce the above
|
||||
# copyright notice, this list of conditions and the following disclaimer
|
||||
# in the documentation and/or other materials provided with the
|
||||
# distribution.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
regenerate:
|
||||
go install github.com/gogo/protobuf/protoc-gen-gogofast
|
||||
protoc --gogofast_out=./fast/ vanity.proto
|
||||
protoc --proto_path=../../:../../../../../:../../protobuf/:. --gogofast_out=./fast/ gogovanity.proto
|
||||
protoc-min-version -version="3.0.0" --proto_path=../../:../../../../../:../../protobuf/:. --gogofast_out=./fast/ proto3.proto
|
||||
go install github.com/gogo/protobuf/protoc-gen-gogofaster
|
||||
protoc --gogofaster_out=./faster/ vanity.proto
|
||||
protoc --proto_path=../../:../../../../../:../../protobuf/:. --gogofaster_out=./faster/ gogovanity.proto
|
||||
protoc-min-version -version="3.0.0" --proto_path=../../:../../../../../:../../protobuf/:. --gogofaster_out=./faster/ proto3.proto
|
||||
go install github.com/gogo/protobuf/protoc-gen-gogoslick
|
||||
protoc --gogoslick_out=./slick/ vanity.proto
|
||||
protoc --proto_path=../../:../../../../../:../../protobuf/:. --gogoslick_out=./slick/ gogovanity.proto
|
||||
protoc-min-version -version="3.0.0" --proto_path=../../:../../../../../:../../protobuf/:. --gogoslick_out=./slick/ proto3.proto
|
||||
|
||||
test:
|
||||
go install github.com/gogo/protobuf/protoc-gen-gofast
|
||||
protoc --gofast_out=./gofast/ vanity.proto
|
||||
go test ./...
|
||||
1
vendor/github.com/gogo/protobuf/vanity/test/doc.go
generated
vendored
1
vendor/github.com/gogo/protobuf/vanity/test/doc.go
generated
vendored
@@ -1 +0,0 @@
|
||||
package test
|
||||
1
vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore
generated
vendored
1
vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore
generated
vendored
@@ -1 +0,0 @@
|
||||
*.pb.go
|
||||
39
vendor/github.com/gogo/protobuf/vanity/test/gogovanity.proto
generated
vendored
39
vendor/github.com/gogo/protobuf/vanity/test/gogovanity.proto
generated
vendored
@@ -1,39 +0,0 @@
|
||||
// Protocol Buffers for Go with Gadgets
|
||||
//
|
||||
// Copyright (c) 2015, The GoGo Authors. All rights reserved.
|
||||
// http://github.com/gogo/protobuf
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
syntax = "proto2";
|
||||
|
||||
package vanity;
|
||||
|
||||
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
||||
|
||||
message B {
|
||||
optional string String = 1 [(gogoproto.nullable) = true];
|
||||
optional int64 Int64 = 2;
|
||||
optional int32 Int32 = 3 [default = 1234];
|
||||
}
|
||||
35
vendor/github.com/gogo/protobuf/vanity/test/proto3.proto
generated
vendored
35
vendor/github.com/gogo/protobuf/vanity/test/proto3.proto
generated
vendored
@@ -1,35 +0,0 @@
|
||||
// Protocol Buffers for Go with Gadgets
|
||||
//
|
||||
// Copyright (c) 2015, The GoGo Authors. All rights reserved.
|
||||
// http://github.com/gogo/protobuf
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
syntax = "proto3";
|
||||
|
||||
package vanity;
|
||||
|
||||
message Aproto3 {
|
||||
string B = 1;
|
||||
}
|
||||
36
vendor/github.com/gogo/protobuf/vanity/test/vanity.proto
generated
vendored
36
vendor/github.com/gogo/protobuf/vanity/test/vanity.proto
generated
vendored
@@ -1,36 +0,0 @@
|
||||
// Protocol Buffers for Go with Gadgets
|
||||
//
|
||||
// Copyright (c) 2015, The GoGo Authors. All rights reserved.
|
||||
// http://github.com/gogo/protobuf
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
syntax = "proto2";
|
||||
|
||||
package vanity;
|
||||
|
||||
message A {
|
||||
optional string Strings = 1;
|
||||
required int64 Int = 2;
|
||||
}
|
||||
93
vendor/github.com/gogo/protobuf/vanity/test/vanity_test.go
generated
vendored
93
vendor/github.com/gogo/protobuf/vanity/test/vanity_test.go
generated
vendored
@@ -1,93 +0,0 @@
|
||||
// Protocol Buffers for Go with Gadgets
|
||||
//
|
||||
// Copyright (c) 2015, The GoGo Authors. All rights reserved.
|
||||
// http://github.com/gogo/protobuf
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
package test
|
||||
|
||||
import (
|
||||
fast "github.com/gogo/protobuf/vanity/test/fast"
|
||||
faster "github.com/gogo/protobuf/vanity/test/faster"
|
||||
slick "github.com/gogo/protobuf/vanity/test/slick"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestFast(t *testing.T) {
|
||||
_ = (&fast.A{}).Marshal
|
||||
_ = (&fast.A{}).MarshalTo
|
||||
_ = (&fast.A{}).Unmarshal
|
||||
_ = (&fast.A{}).Size
|
||||
|
||||
_ = (&fast.B{}).Marshal
|
||||
_ = (&fast.B{}).MarshalTo
|
||||
_ = (&fast.B{}).Unmarshal
|
||||
_ = (&fast.B{}).Size
|
||||
}
|
||||
|
||||
func TestFaster(t *testing.T) {
|
||||
_ = (&faster.A{}).Marshal
|
||||
_ = (&faster.A{}).MarshalTo
|
||||
_ = (&faster.A{}).Unmarshal
|
||||
_ = (&faster.A{}).Size
|
||||
|
||||
_ = (&faster.A{}).Strings == ""
|
||||
|
||||
_ = (&faster.B{}).Marshal
|
||||
_ = (&faster.B{}).MarshalTo
|
||||
_ = (&faster.B{}).Unmarshal
|
||||
_ = (&faster.B{}).Size
|
||||
|
||||
_ = (&faster.B{}).String_ == nil
|
||||
_ = (&faster.B{}).Int64 == 0
|
||||
_ = (&faster.B{}).Int32 == nil
|
||||
if (&faster.B{}).GetInt32() != 1234 {
|
||||
t.Fatalf("expected default")
|
||||
}
|
||||
}
|
||||
|
||||
func TestSlick(t *testing.T) {
|
||||
_ = (&slick.A{}).Marshal
|
||||
_ = (&slick.A{}).MarshalTo
|
||||
_ = (&slick.A{}).Unmarshal
|
||||
_ = (&slick.A{}).Size
|
||||
|
||||
_ = (&slick.A{}).Strings == ""
|
||||
|
||||
_ = (&slick.A{}).GoString
|
||||
_ = (&slick.A{}).String
|
||||
|
||||
_ = (&slick.B{}).Marshal
|
||||
_ = (&slick.B{}).MarshalTo
|
||||
_ = (&slick.B{}).Unmarshal
|
||||
_ = (&slick.B{}).Size
|
||||
|
||||
_ = (&slick.B{}).String_ == nil
|
||||
_ = (&slick.B{}).Int64 == 0
|
||||
_ = (&slick.B{}).Int32 == nil
|
||||
if (&slick.B{}).GetInt32() != 1234 {
|
||||
t.Fatalf("expected default")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user