shippingservice: minify dockerfile, unify genproto

also fixed a bug causing non-letter chars in tracking ID.

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
Ahmet Alp Balkan 2018-06-19 23:04:53 -07:00
parent 44e6671727
commit 2d4f4f884a
6 changed files with 2465 additions and 43 deletions

View file

@ -1,31 +1,14 @@
FROM golang:1.10.3-alpine3.7 as deps FROM golang:1.10-alpine as builder
RUN apk add --no-cache \ RUN apk add --no-cache \
ca-certificates \ ca-certificates \
curl \ git
git \ WORKDIR /src/microservices-demo/shippingservice
gcc \ COPY . .
libffi-dev \ RUN go get -d ./...
make \ RUN go build -v -o /shippingservice .
musl-dev \
protobuf \
tar
ENV PATH=$PATH:$GOPATH/bin FROM alpine as release
RUN go get -u google.golang.org/grpc && \ COPY --from=builder /shippingservice /shippingservice
go get github.com/golang/protobuf/protoc-gen-go
FROM deps as builder
WORKDIR $GOPATH/src/microservices-demo/shipping
COPY src/shippingservice $GOPATH/src/microservices-demo/shipping
COPY pb/demo.proto $GOPATH/src/microservices-demo/pb/demo.proto
RUN protoc -I ../pb/ ../pb/demo.proto --go_out=plugins=grpc:../pb
RUN go build -o /shipping/shipit
FROM golang:1.10.3-alpine3.7 as release
COPY --from=builder /shipping/shipit /shipit
ENV APP_PORT=50051 ENV APP_PORT=50051
EXPOSE 50051
# @TODO add light init system. ENTRYPOINT /shippingservice
ENTRYPOINT /shipit

View file

@ -0,0 +1,6 @@
#!/bin/bash -e
PATH=$PATH:$GOPATH/bin
protodir=../../pb
protoc --go_out=plugins=grpc:genproto -I $protodir $protodir/demo.proto

File diff suppressed because it is too large Load diff

View file

@ -10,10 +10,9 @@ import (
"google.golang.org/grpc" "google.golang.org/grpc"
"google.golang.org/grpc/reflection" "google.golang.org/grpc/reflection"
pb "microservices-demo/pb" pb "./genproto"
) )
const ( const (
default_port = "50051" default_port = "50051"
) )
@ -36,7 +35,7 @@ func (s *server) GetQuote(ctx context.Context, in *pb.GetQuoteRequest) (*pb.GetQ
// 3. Generate a response. // 3. Generate a response.
return &pb.GetQuoteResponse{ return &pb.GetQuoteResponse{
CostUsd: &pb.MoneyAmount{ CostUsd: &pb.MoneyAmount{
Decimal: quote.Dollars, Decimal: quote.Dollars,
Fractional: quote.Cents, Fractional: quote.Cents,
}, },
}, nil }, nil

View file

@ -1,10 +1,11 @@
package main package main
import( import (
"testing" "testing"
"golang.org/x/net/context" "golang.org/x/net/context"
pb "microservices-demo/pb" pb "./genproto"
) )
// TestGetQuote is a basic check on the GetQuote RPC service. // TestGetQuote is a basic check on the GetQuote RPC service.
@ -16,17 +17,17 @@ func TestGetQuote(t *testing.T) {
Address: &pb.Address{ Address: &pb.Address{
StreetAddress_1: "Muffin Man", StreetAddress_1: "Muffin Man",
StreetAddress_2: "Drury Lane", StreetAddress_2: "Drury Lane",
City: "London", City: "London",
Country: "England", Country: "England",
}, },
Items: []*pb.CartItem{ Items: []*pb.CartItem{
{ {
ProductId: "23", ProductId: "23",
Quantity: 1, Quantity: 1,
}, },
{ {
ProductId: "46", ProductId: "46",
Quantity: 3, Quantity: 3,
}, },
}, },
} }
@ -49,17 +50,17 @@ func TestShipOrder(t *testing.T) {
Address: &pb.Address{ Address: &pb.Address{
StreetAddress_1: "Muffin Man", StreetAddress_1: "Muffin Man",
StreetAddress_2: "Drury Lane", StreetAddress_2: "Drury Lane",
City: "London", City: "London",
Country: "England", Country: "England",
}, },
Items: []*pb.CartItem{ Items: []*pb.CartItem{
{ {
ProductId: "23", ProductId: "23",
Quantity: 1, Quantity: 1,
}, },
{ {
ProductId: "46", ProductId: "46",
Quantity: 3, Quantity: 3,
}, },
}, },
} }

View file

@ -28,7 +28,7 @@ func CreateTrackingId(salt string) string {
// getRandomLetterCode generates a code point value for a capital letter. // getRandomLetterCode generates a code point value for a capital letter.
func getRandomLetterCode() uint32 { func getRandomLetterCode() uint32 {
return 65 + uint32(rand.Intn(27)) return 65 + uint32(rand.Intn(25))
} }
// getRandomNumber generates a string representation of a number with the requested number of digits. // getRandomNumber generates a string representation of a number with the requested number of digits.