-
Notifications
You must be signed in to change notification settings - Fork 327
/
hatmakers.go
88 lines (74 loc) · 2.51 KB
/
hatmakers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Copyright 2018 Twitch Interactive, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may not
// use this file except in compliance with the License. A copy of the License is
// located at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// or in the "license" file accompanying this file. This file 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 twirptest
import (
"context"
"net/http"
"net/http/httptest"
"time"
"github.com/twitchtv/twirp"
)
type hatmaker func(ctx context.Context, s *Size) (*Hat, error)
func (h hatmaker) MakeHat(ctx context.Context, s *Size) (*Hat, error) { return h(ctx, s) }
// HaberdasherFunc is a convenience to convert a function into a Haberdasher service.
func HaberdasherFunc(f func(ctx context.Context, s *Size) (*Hat, error)) Haberdasher {
return hatmaker(f)
}
// Always makes a blank hat.
func NoopHatmaker() Haberdasher {
return hatmaker(func(context.Context, *Size) (*Hat, error) {
return &Hat{}, nil
})
}
// Makes a hat, as long as its the size they like
func PickyHatmaker(want int32) Haberdasher {
return hatmaker(func(ctx context.Context, s *Size) (*Hat, error) {
if s.Inches != want {
return nil, twirp.InvalidArgumentError("Inches", "I can't make a hat that size!")
}
return &Hat{s.Inches, "blue", "top hat"}, nil
})
}
// Makes a hat, but sure takes their time
func SlowHatmaker(dur time.Duration) Haberdasher {
return hatmaker(func(ctx context.Context, s *Size) (*Hat, error) {
time.Sleep(dur)
return &Hat{s.Inches, "blue", "top hat"}, nil
})
}
// Always errors.
func ErroringHatmaker(err error) Haberdasher {
return hatmaker(func(ctx context.Context, s *Size) (*Hat, error) {
return nil, err
})
}
// Panics.
func PanickyHatmaker(msg string) Haberdasher {
return hatmaker(func(ctx context.Context, s *Size) (*Hat, error) {
panic(msg)
})
}
// Returns nil, nil
func NilHatmaker() Haberdasher {
return hatmaker(func(context.Context, *Size) (*Hat, error) {
return nil, nil
})
}
func ServerAndClient(h Haberdasher, hooks *twirp.ServerHooks) (*httptest.Server, Haberdasher) {
s := httptest.NewServer(NewHaberdasherServer(h, hooks))
c := NewHaberdasherProtobufClient(s.URL, http.DefaultClient)
return s, c
}
func TwirpServerAndClient(hooks *twirp.ServerHooks) (*httptest.Server, Haberdasher) {
return ServerAndClient(NoopHatmaker(), hooks)
}