cleanup(all): stop using deprecated ioutil functions (#381)
Spotted while working on https://github.com/ooni/probe/issues/1417 See https://golang.org/pkg/io/ioutil/
This commit is contained in:
parent
721ce95315
commit
fd5405ade1
25 changed files with 64 additions and 72 deletions
|
|
@ -3,7 +3,7 @@ package dash
|
|||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"io/ioutil"
|
||||
"io"
|
||||
"net/http"
|
||||
"strings"
|
||||
"testing"
|
||||
|
|
@ -47,7 +47,7 @@ func TestRunnerLoopNegotiateFailure(t *testing.T) {
|
|||
all: []FakeHTTPTransport{
|
||||
{
|
||||
resp: &http.Response{
|
||||
Body: ioutil.NopCloser(strings.NewReader(
|
||||
Body: io.NopCloser(strings.NewReader(
|
||||
`{"fqdn": "ams01.measurementlab.net"}`)),
|
||||
StatusCode: 200,
|
||||
},
|
||||
|
|
@ -77,14 +77,14 @@ func TestRunnerLoopMeasureFailure(t *testing.T) {
|
|||
all: []FakeHTTPTransport{
|
||||
{
|
||||
resp: &http.Response{
|
||||
Body: ioutil.NopCloser(strings.NewReader(
|
||||
Body: io.NopCloser(strings.NewReader(
|
||||
`{"fqdn": "ams01.measurementlab.net"}`)),
|
||||
StatusCode: 200,
|
||||
},
|
||||
},
|
||||
{
|
||||
resp: &http.Response{
|
||||
Body: ioutil.NopCloser(strings.NewReader(
|
||||
Body: io.NopCloser(strings.NewReader(
|
||||
`{"authorization": "xx", "unchoked": 1}`)),
|
||||
StatusCode: 200,
|
||||
},
|
||||
|
|
@ -116,21 +116,21 @@ func TestRunnerLoopCollectFailure(t *testing.T) {
|
|||
all: []FakeHTTPTransport{
|
||||
{
|
||||
resp: &http.Response{
|
||||
Body: ioutil.NopCloser(strings.NewReader(
|
||||
Body: io.NopCloser(strings.NewReader(
|
||||
`{"fqdn": "ams01.measurementlab.net"}`)),
|
||||
StatusCode: 200,
|
||||
},
|
||||
},
|
||||
{
|
||||
resp: &http.Response{
|
||||
Body: ioutil.NopCloser(strings.NewReader(
|
||||
Body: io.NopCloser(strings.NewReader(
|
||||
`{"authorization": "xx", "unchoked": 1}`)),
|
||||
StatusCode: 200,
|
||||
},
|
||||
},
|
||||
{
|
||||
resp: &http.Response{
|
||||
Body: ioutil.NopCloser(strings.NewReader(`1234567`)),
|
||||
Body: io.NopCloser(strings.NewReader(`1234567`)),
|
||||
StatusCode: 200,
|
||||
},
|
||||
},
|
||||
|
|
@ -160,27 +160,27 @@ func TestRunnerLoopSuccess(t *testing.T) {
|
|||
all: []FakeHTTPTransport{
|
||||
{
|
||||
resp: &http.Response{
|
||||
Body: ioutil.NopCloser(strings.NewReader(
|
||||
Body: io.NopCloser(strings.NewReader(
|
||||
`{"fqdn": "ams01.measurementlab.net"}`)),
|
||||
StatusCode: 200,
|
||||
},
|
||||
},
|
||||
{
|
||||
resp: &http.Response{
|
||||
Body: ioutil.NopCloser(strings.NewReader(
|
||||
Body: io.NopCloser(strings.NewReader(
|
||||
`{"authorization": "xx", "unchoked": 1}`)),
|
||||
StatusCode: 200,
|
||||
},
|
||||
},
|
||||
{
|
||||
resp: &http.Response{
|
||||
Body: ioutil.NopCloser(strings.NewReader(`1234567`)),
|
||||
Body: io.NopCloser(strings.NewReader(`1234567`)),
|
||||
StatusCode: 200,
|
||||
},
|
||||
},
|
||||
{
|
||||
resp: &http.Response{
|
||||
Body: ioutil.NopCloser(strings.NewReader(`[]`)),
|
||||
Body: io.NopCloser(strings.NewReader(`[]`)),
|
||||
StatusCode: 200,
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue