Compare commits
5 Commits
436bcad0e1
...
7a32f26bd5
Author | SHA1 | Date | |
---|---|---|---|
7a32f26bd5 | |||
c5582275e7 | |||
c0db9ab22b | |||
0b181ccf0f | |||
d49f952035 |
23
context/context.go
Normal file
23
context/context.go
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
package context
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Store interface {
|
||||||
|
Fetch(ctx context.Context) (string, error)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Server(store Store) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
data, err := store.Fetch(r.Context())
|
||||||
|
if err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
fmt.Fprint(w, data)
|
||||||
|
}
|
||||||
|
}
|
98
context/context_test.go
Normal file
98
context/context_test.go
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
package context
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"log"
|
||||||
|
"net/http"
|
||||||
|
"net/http/httptest"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type SpyStore struct {
|
||||||
|
response string
|
||||||
|
t *testing.T
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *SpyStore) Fetch(ctx context.Context) (string, error) {
|
||||||
|
data := make(chan string, 1)
|
||||||
|
go func() {
|
||||||
|
var result string
|
||||||
|
for _, c := range s.response {
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
log.Println("spy store got cancelled")
|
||||||
|
return
|
||||||
|
default:
|
||||||
|
time.Sleep(10 * time.Millisecond)
|
||||||
|
result += string(c)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
data <- result
|
||||||
|
}()
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return "", ctx.Err()
|
||||||
|
case res := <-data:
|
||||||
|
return res, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type SpyResponseWriter struct {
|
||||||
|
written bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *SpyResponseWriter) Header() http.Header {
|
||||||
|
s.written = true
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *SpyResponseWriter) Write([]byte) (int, error) {
|
||||||
|
s.written = true
|
||||||
|
return 0, errors.New("not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *SpyResponseWriter) WriteHeader(statusCode int) {
|
||||||
|
s.written = true
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestServer(t *testing.T) {
|
||||||
|
t.Run("basic get store", func(t *testing.T) {
|
||||||
|
data := "hello, world"
|
||||||
|
store := &SpyStore{response: data, t: t}
|
||||||
|
srv := Server(store)
|
||||||
|
|
||||||
|
request := httptest.NewRequest(http.MethodGet, "/", nil)
|
||||||
|
response := httptest.NewRecorder()
|
||||||
|
|
||||||
|
srv.ServeHTTP(response, request)
|
||||||
|
|
||||||
|
if response.Body.String() != data {
|
||||||
|
t.Errorf(`got "%s", want "%s"`, response.Body.String(), data)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("tells store to cancel work if request is cancelled", func(t *testing.T) {
|
||||||
|
data := "hello, world"
|
||||||
|
store := &SpyStore{response: data, t: t}
|
||||||
|
srv := Server(store)
|
||||||
|
|
||||||
|
request := httptest.NewRequest(http.MethodGet, "/", nil)
|
||||||
|
|
||||||
|
cancellingCtx, cancel := context.WithCancel(request.Context())
|
||||||
|
// Wait 5ms to call cancel
|
||||||
|
time.AfterFunc(5*time.Millisecond, cancel)
|
||||||
|
|
||||||
|
request = request.WithContext(cancellingCtx)
|
||||||
|
|
||||||
|
response := &SpyResponseWriter{}
|
||||||
|
|
||||||
|
srv.ServeHTTP(response, request)
|
||||||
|
|
||||||
|
if response.written {
|
||||||
|
t.Error("a response should not have been written")
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user