aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helper/http.go
blob: b379695d03e168418ac2c30f8c28265ed9d2a749 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package helper

import (
    "encoding/json"
    "io/ioutil"
    "net/http"
)

func CreateTests(uri string, value interface{}) error {
    resp, err := http.Get(uri)
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()

    data, err := ioutil.ReadAll(resp.Body)

    err = json.Unmarshal(data, &value)
    if err != nil {
        return err
    }

    return nil
}