swarm/api/http: add error pages (#14967)

This commit is contained in:
holisticode
2017-09-08 13:29:09 -05:00
committed by Felix Lange
parent 5ba9225fe3
commit ac193e36ce
6 changed files with 662 additions and 20 deletions

View File

@ -22,6 +22,7 @@ import (
"fmt"
"io/ioutil"
"net/http"
"strings"
"sync"
"testing"
@ -110,9 +111,9 @@ func TestBzzrGetPath(t *testing.T) {
}
nonhashresponses := []string{
"error resolving name: no DNS to resolve name: \"name\"\n",
"error resolving nonhash: immutable address not a content hash: \"nonhash\"\n",
"error resolving nonhash: no DNS to resolve name: \"nonhash\"\n",
"error resolving name: no DNS to resolve name: "name"",
"error resolving nonhash: immutable address not a content hash: "nonhash"",
"error resolving nonhash: no DNS to resolve name: "nonhash"",
}
for i, url := range nonhashtests {
@ -129,7 +130,7 @@ func TestBzzrGetPath(t *testing.T) {
if err != nil {
t.Fatalf("ReadAll failed: %v", err)
}
if string(respbody) != nonhashresponses[i] {
if !strings.Contains(string(respbody), nonhashresponses[i]) {
t.Fatalf("Non-Hash response body does not match, expected: %v, got: %v", nonhashresponses[i], string(respbody))
}
}