���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/st2/vendor/google/protobuf/examples/ |
package main import ( "strings" "testing" "github.com/golang/protobuf/proto" pb "github.com/google/protobuf/examples/tutorial" ) func TestPromptForAddressReturnsAddress(t *testing.T) { in := `12345 Example Name [email protected] 123-456-7890 home 222-222-2222 mobile 111-111-1111 work 777-777-7777 unknown ` got, err := promptForAddress(strings.NewReader(in)) if err != nil { t.Fatalf("promptForAddress(%q) had unexpected error: %s", in, err.Error()) } if got.Id != 12345 { t.Errorf("promptForAddress(%q) got %d, want ID %d", in, got.Id, 12345) } if got.Name != "Example Name" { t.Errorf("promptForAddress(%q) => want name %q, got %q", in, "Example Name", got.Name) } if got.Email != "[email protected]" { t.Errorf("promptForAddress(%q) => want email %q, got %q", in, "[email protected]", got.Email) } want := []*pb.Person_PhoneNumber{ {Number: "123-456-7890", Type: pb.Person_HOME}, {Number: "222-222-2222", Type: pb.Person_MOBILE}, {Number: "111-111-1111", Type: pb.Person_WORK}, {Number: "777-777-7777", Type: pb.Person_MOBILE}, } if len(got.Phones) != len(want) { t.Errorf("want %d phone numbers, got %d", len(want), len(got.Phones)) } phones := len(got.Phones) if phones > len(want) { phones = len(want) } for i := 0; i < phones; i++ { if !proto.Equal(got.Phones[i], want[i]) { t.Errorf("want phone %q, got %q", *want[i], *got.Phones[i]) } } }