/* Copyright 2014 The Camlistore Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License 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 httputil import ( "bufio" "fmt" "net/http" "os" "regexp" "strings" "go4.org/types" ) // NewFakeTransport takes a map of URL to function generating a response // and returns an http.RoundTripper that does HTTP requests out of that. func NewFakeTransport(urls map[string]func() *http.Response) http.RoundTripper { return fakeTransport(urls) } type fakeTransport map[string]func() *http.Response func (m fakeTransport) RoundTrip(req *http.Request) (res *http.Response, err error) { urls := req.URL.String() fn, ok := m[urls] if !ok { return nil, fmt.Errorf("Unexpected FakeTransport URL requested: %s", urls) } return fn(), nil } // Matcher describes a regular expression and the function that will // be used if that regular expression is matched. type Matcher struct { URLRegex string // will be compiled and matched against URLs Fn func() *http.Response // function that will be run if URLRegex matches } // NewRegexpFakeTransport takes a slice of Matchers and returns an // http.RoundTripper that will apply the function associated with the // first UrlRegex that matches. func NewRegexpFakeTransport(allMatchers []*Matcher) (http.RoundTripper, error) { var result regexpFakeTransport = []*regexPair{} for _, matcher := range allMatchers { r, err := regexp.Compile(matcher.URLRegex) if err != nil { return nil, err } pair := regexPair{r, matcher.Fn} result = append(result, &pair) } return result, nil } type regexPair struct { r *regexp.Regexp fn func() *http.Response } type regexpFakeTransport []*regexPair func (rft regexpFakeTransport) RoundTrip(req *http.Request) (*http.Response, error) { s := req.URL.String() for _, p := range rft { if p.r.MatchString(s) { return p.fn(), nil } } return nil, fmt.Errorf("Unexpected RegexpFakeTransport URL requested: %s", s) } // FileResponder returns an HTTP response generator that returns the // contents of the named file. func FileResponder(filename string) func() *http.Response { return func() *http.Response { f, err := os.Open(filename) if err != nil { return &http.Response{StatusCode: 404, Status: "404 Not Found", Body: types.EmptyBody} } return &http.Response{StatusCode: 200, Status: "200 OK", Body: f} } } // StaticResponder returns an HTTP response generator that parses res // for an entire HTTP response, including headers and body. func StaticResponder(res string) func() *http.Response { _, err := http.ReadResponse(bufio.NewReader(strings.NewReader(res)), nil) if err != nil { panic("Invalid response given to StaticResponder: " + err.Error()) } return func() *http.Response { res, _ := http.ReadResponse(bufio.NewReader(strings.NewReader(res)), nil) return res } }