File: context_test.go

package info (click to toggle)
golang-gopkg-httprequest.v1 0.0~git20171212.fdaf1bf-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 316 kB
  • sloc: makefile: 4
file content (39 lines) | stat: -rw-r--r-- 852 bytes parent folder | download
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
// Copyright 2016 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.

package httprequest_test

import (
	"net/http"
	"net/http/httptest"

	"github.com/julienschmidt/httprouter"
	gc "gopkg.in/check.v1"

	"gopkg.in/httprequest.v1"
)

type contextSuite struct{}

var _ = gc.Suite(&contextSuite{})

type testRequest struct {
	httprequest.Route `httprequest:"GET /foo"`
}

func (s *contextSuite) TestContextCancelledWhenDone(c *gc.C) {
	var ch <-chan struct{}
	hnd := testServer.Handle(func(p httprequest.Params, req *testRequest) {
		ch = p.Context.Done()
	})
	router := httprouter.New()
	router.Handle(hnd.Method, hnd.Path, hnd.Handle)
	srv := httptest.NewServer(router)
	_, err := http.Get(srv.URL + "/foo")
	c.Assert(err, gc.Equals, nil)
	select {
	case <-ch:
	default:
		c.Fatal("context not canceled at end of handler.")
	}
}