api_test.go 16 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// Copyright 2016 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package api

import (
20
	"bytes"
21
	"context"
22
	crand "crypto/rand"
23
	"errors"
24
	"flag"
25
	"fmt"
26 27
	"io"
	"io/ioutil"
28
	"math/big"
29
	"os"
30
	"strings"
31 32
	"testing"

33
	"github.com/ethereum/go-ethereum/common"
34
	"github.com/ethereum/go-ethereum/core/types"
35
	"github.com/ethereum/go-ethereum/log"
36
	"github.com/ethereum/go-ethereum/swarm/chunk"
37
	"github.com/ethereum/go-ethereum/swarm/sctx"
38
	"github.com/ethereum/go-ethereum/swarm/storage"
39
	"github.com/ethereum/go-ethereum/swarm/testutil"
40 41
)

42 43 44 45 46 47
func init() {
	loglevel := flag.Int("loglevel", 2, "loglevel")
	flag.Parse()
	log.Root().SetHandler(log.CallerFileHandler(log.LvlFilterHandler(log.Lvl(*loglevel), log.StreamHandler(os.Stderr, log.TerminalFormat(true)))))
}

48 49 50 51 52 53 54 55 56 57 58 59 60 61
func testAPI(t *testing.T, f func(*API, *chunk.Tags, bool)) {
	for _, v := range []bool{true, false} {
		datadir, err := ioutil.TempDir("", "bzz-test")
		if err != nil {
			t.Fatalf("unable to create temp dir: %v", err)
		}
		defer os.RemoveAll(datadir)
		tags := chunk.NewTags()
		fileStore, err := storage.NewLocalFileStore(datadir, make([]byte, 32), tags)
		if err != nil {
			return
		}
		api := NewAPI(fileStore, nil, nil, nil, tags)
		f(api, tags, v)
62 63 64 65 66 67 68 69
	}
}

type testResponse struct {
	reader storage.LazySectionReader
	*Response
}

70 71 72 73 74 75 76
type Response struct {
	MimeType string
	Status   int
	Size     int64
	Content  string
}

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
func checkResponse(t *testing.T, resp *testResponse, exp *Response) {

	if resp.MimeType != exp.MimeType {
		t.Errorf("incorrect mimeType. expected '%s', got '%s'", exp.MimeType, resp.MimeType)
	}
	if resp.Status != exp.Status {
		t.Errorf("incorrect status. expected '%d', got '%d'", exp.Status, resp.Status)
	}
	if resp.Size != exp.Size {
		t.Errorf("incorrect size. expected '%d', got '%d'", exp.Size, resp.Size)
	}
	if resp.reader != nil {
		content := make([]byte, resp.Size)
		read, _ := resp.reader.Read(content)
		if int64(read) != exp.Size {
			t.Errorf("incorrect content length. expected '%d...', got '%d...'", read, exp.Size)
		}
		resp.Content = string(content)
	}
	if resp.Content != exp.Content {
		// if !bytes.Equal(resp.Content, exp.Content)
		t.Errorf("incorrect content. expected '%s...', got '%s...'", string(exp.Content), string(resp.Content))
	}
}

// func expResponse(content []byte, mimeType string, status int) *Response {
func expResponse(content string, mimeType string, status int) *Response {
104
	log.Trace(fmt.Sprintf("expected content (%v): %v ", len(content), content))
105 106 107
	return &Response{mimeType, status, int64(len(content)), content}
}

108 109
func testGet(t *testing.T, api *API, bzzhash, path string) *testResponse {
	addr := storage.Address(common.Hex2Bytes(bzzhash))
110
	reader, mimeType, status, _, err := api.Get(context.TODO(), NOOPDecrypt, addr, path)
111 112 113 114
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}
	quitC := make(chan bool)
115
	size, err := reader.Size(context.TODO(), quitC)
116 117 118
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}
119
	log.Trace(fmt.Sprintf("reader size: %v ", size))
120 121 122 123 124 125 126 127 128 129
	s := make([]byte, size)
	_, err = reader.Read(s)
	if err != io.EOF {
		t.Fatalf("unexpected error: %v", err)
	}
	reader.Seek(0, 0)
	return &testResponse{reader, &Response{mimeType, status, size, string(s)}}
}

func TestApiPut(t *testing.T) {
130
	testAPI(t, func(api *API, tags *chunk.Tags, toEncrypt bool) {
131 132
		content := "hello"
		exp := expResponse(content, "text/plain", 0)
133
		ctx := context.TODO()
134
		addr, wait, err := putString(ctx, api, content, exp.MimeType, toEncrypt)
135 136 137 138
		if err != nil {
			t.Fatalf("unexpected error: %v", err)
		}
		err = wait(ctx)
139 140 141
		if err != nil {
			t.Fatalf("unexpected error: %v", err)
		}
142
		resp := testGet(t, api, addr.Hex(), "")
143
		checkResponse(t, resp, exp)
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
		tag := tags.All()[0]
		testutil.CheckTag(t, tag, 2, 2, 0, 2) //1 chunk data, 1 chunk manifest
	})
}

// TestApiTagLarge tests that the the number of chunks counted is larger for a larger input
func TestApiTagLarge(t *testing.T) {
	const contentLength = 4096 * 4095
	testAPI(t, func(api *API, tags *chunk.Tags, toEncrypt bool) {
		randomContentReader := io.LimitReader(crand.Reader, int64(contentLength))
		tag, err := api.Tags.New("unnamed-tag", 0)
		if err != nil {
			t.Fatal(err)
		}
		ctx := sctx.SetTag(context.Background(), tag.Uid)
		key, waitContent, err := api.Store(ctx, randomContentReader, int64(contentLength), toEncrypt)
		if err != nil {
			t.Fatal(err)
		}
		err = waitContent(ctx)
		if err != nil {
			t.Fatal(err)
		}
		tag.DoneSplit(key)

		if toEncrypt {
			tag := tags.All()[0]
			expect := int64(4095 + 64 + 1)
			testutil.CheckTag(t, tag, expect, expect, 0, expect)
		} else {
			tag := tags.All()[0]
			expect := int64(4095 + 32 + 1)
			testutil.CheckTag(t, tag, expect, expect, 0, expect)
		}
178 179
	})
}
180 181 182

// testResolver implements the Resolver interface and either returns the given
// hash if it is set, or returns a "name not found" error
183
type testResolveValidator struct {
184 185 186
	hash *common.Hash
}

187 188
func newTestResolveValidator(addr string) *testResolveValidator {
	r := &testResolveValidator{}
189 190 191 192 193 194 195
	if addr != "" {
		hash := common.HexToHash(addr)
		r.hash = &hash
	}
	return r
}

196
func (t *testResolveValidator) Resolve(addr string) (common.Hash, error) {
197 198 199 200 201 202
	if t.hash == nil {
		return common.Hash{}, fmt.Errorf("DNS name not found: %q", addr)
	}
	return *t.hash, nil
}

203 204 205 206 207 208 209
func (t *testResolveValidator) Owner(node [32]byte) (addr common.Address, err error) {
	return
}
func (t *testResolveValidator) HeaderByNumber(context.Context, *big.Int) (header *types.Header, err error) {
	return
}

210 211 212 213 214 215
// TestAPIResolve tests resolving URIs which can either contain content hashes
// or ENS names
func TestAPIResolve(t *testing.T) {
	ensAddr := "swarm.eth"
	hashAddr := "1111111111111111111111111111111111111111111111111111111111111111"
	resolvedAddr := "2222222222222222222222222222222222222222222222222222222222222222"
216 217
	doesResolve := newTestResolveValidator(resolvedAddr)
	doesntResolve := newTestResolveValidator("")
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281

	type test struct {
		desc      string
		dns       Resolver
		addr      string
		immutable bool
		result    string
		expectErr error
	}

	tests := []*test{
		{
			desc:   "DNS not configured, hash address, returns hash address",
			dns:    nil,
			addr:   hashAddr,
			result: hashAddr,
		},
		{
			desc:      "DNS not configured, ENS address, returns error",
			dns:       nil,
			addr:      ensAddr,
			expectErr: errors.New(`no DNS to resolve name: "swarm.eth"`),
		},
		{
			desc:   "DNS configured, hash address, hash resolves, returns resolved address",
			dns:    doesResolve,
			addr:   hashAddr,
			result: resolvedAddr,
		},
		{
			desc:      "DNS configured, immutable hash address, hash resolves, returns hash address",
			dns:       doesResolve,
			addr:      hashAddr,
			immutable: true,
			result:    hashAddr,
		},
		{
			desc:   "DNS configured, hash address, hash doesn't resolve, returns hash address",
			dns:    doesntResolve,
			addr:   hashAddr,
			result: hashAddr,
		},
		{
			desc:   "DNS configured, ENS address, name resolves, returns resolved address",
			dns:    doesResolve,
			addr:   ensAddr,
			result: resolvedAddr,
		},
		{
			desc:      "DNS configured, immutable ENS address, name resolves, returns error",
			dns:       doesResolve,
			addr:      ensAddr,
			immutable: true,
			expectErr: errors.New(`immutable address not a content hash: "swarm.eth"`),
		},
		{
			desc:      "DNS configured, ENS address, name doesn't resolve, returns error",
			dns:       doesntResolve,
			addr:      ensAddr,
			expectErr: errors.New(`DNS name not found: "swarm.eth"`),
		},
	}
	for _, x := range tests {
		t.Run(x.desc, func(t *testing.T) {
282
			api := &API{dns: x.dns}
283 284
			uri := &URI{Addr: x.addr, Scheme: "bzz"}
			if x.immutable {
285
				uri.Scheme = "bzz-immutable"
286
			}
287
			res, err := api.ResolveURI(context.TODO(), uri, "")
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
			if err == nil {
				if x.expectErr != nil {
					t.Fatalf("expected error %q, got result %q", x.expectErr, res)
				}
				if res.String() != x.result {
					t.Fatalf("expected result %q, got %q", x.result, res)
				}
			} else {
				if x.expectErr == nil {
					t.Fatalf("expected no error, got %q", err)
				}
				if err.Error() != x.expectErr.Error() {
					t.Fatalf("expected error %q, got %q", x.expectErr, err)
				}
			}
		})
	}
}
306 307

func TestMultiResolver(t *testing.T) {
308
	doesntResolve := newTestResolveValidator("")
309 310 311

	ethAddr := "swarm.eth"
	ethHash := "0x2222222222222222222222222222222222222222222222222222222222222222"
312
	ethResolve := newTestResolveValidator(ethHash)
313 314 315

	testAddr := "swarm.test"
	testHash := "0x1111111111111111111111111111111111111111111111111111111111111111"
316
	testResolve := newTestResolveValidator(testHash)
317 318 319 320 321 322 323 324 325 326 327

	tests := []struct {
		desc   string
		r      Resolver
		addr   string
		result string
		err    error
	}{
		{
			desc: "No resolvers, returns error",
			r:    NewMultiResolver(),
328
			err:  NewNoResolverError(""),
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
		},
		{
			desc:   "One default resolver, returns resolved address",
			r:      NewMultiResolver(MultiResolverOptionWithResolver(ethResolve, "")),
			addr:   ethAddr,
			result: ethHash,
		},
		{
			desc: "Two default resolvers, returns resolved address",
			r: NewMultiResolver(
				MultiResolverOptionWithResolver(ethResolve, ""),
				MultiResolverOptionWithResolver(ethResolve, ""),
			),
			addr:   ethAddr,
			result: ethHash,
		},
		{
			desc: "Two default resolvers, first doesn't resolve, returns resolved address",
			r: NewMultiResolver(
				MultiResolverOptionWithResolver(doesntResolve, ""),
				MultiResolverOptionWithResolver(ethResolve, ""),
			),
			addr:   ethAddr,
			result: ethHash,
		},
		{
			desc: "Default resolver doesn't resolve, tld resolver resolve, returns resolved address",
			r: NewMultiResolver(
				MultiResolverOptionWithResolver(doesntResolve, ""),
				MultiResolverOptionWithResolver(ethResolve, "eth"),
			),
			addr:   ethAddr,
			result: ethHash,
		},
		{
			desc: "Three TLD resolvers, third resolves, returns resolved address",
			r: NewMultiResolver(
				MultiResolverOptionWithResolver(doesntResolve, "eth"),
				MultiResolverOptionWithResolver(doesntResolve, "eth"),
				MultiResolverOptionWithResolver(ethResolve, "eth"),
			),
			addr:   ethAddr,
			result: ethHash,
		},
		{
			desc: "One TLD resolver doesn't resolve, returns error",
			r: NewMultiResolver(
				MultiResolverOptionWithResolver(doesntResolve, ""),
				MultiResolverOptionWithResolver(ethResolve, "eth"),
			),
			addr:   ethAddr,
			result: ethHash,
		},
		{
			desc: "One defautl and one TLD resolver, all doesn't resolve, returns error",
			r: NewMultiResolver(
				MultiResolverOptionWithResolver(doesntResolve, ""),
				MultiResolverOptionWithResolver(doesntResolve, "eth"),
			),
			addr:   ethAddr,
			result: ethHash,
			err:    errors.New(`DNS name not found: "swarm.eth"`),
		},
		{
			desc: "Two TLD resolvers, both resolve, returns resolved address",
			r: NewMultiResolver(
				MultiResolverOptionWithResolver(ethResolve, "eth"),
				MultiResolverOptionWithResolver(testResolve, "test"),
			),
			addr:   testAddr,
			result: testHash,
		},
401 402 403 404 405 406 407 408
		{
			desc: "One TLD resolver, no default resolver, returns error for different TLD",
			r: NewMultiResolver(
				MultiResolverOptionWithResolver(ethResolve, "eth"),
			),
			addr: testAddr,
			err:  NewNoResolverError("test"),
		},
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
	}
	for _, x := range tests {
		t.Run(x.desc, func(t *testing.T) {
			res, err := x.r.Resolve(x.addr)
			if err == nil {
				if x.err != nil {
					t.Fatalf("expected error %q, got result %q", x.err, res.Hex())
				}
				if res.Hex() != x.result {
					t.Fatalf("expected result %q, got %q", x.result, res.Hex())
				}
			} else {
				if x.err == nil {
					t.Fatalf("expected no error, got %q", err)
				}
				if err.Error() != x.err.Error() {
					t.Fatalf("expected error %q, got %q", x.err, err)
				}
			}
		})
	}
}
431 432 433 434 435 436 437 438 439

func TestDecryptOriginForbidden(t *testing.T) {
	ctx := context.TODO()
	ctx = sctx.SetHost(ctx, "swarm-gateways.net")

	me := &ManifestEntry{
		Access: &AccessEntry{Type: AccessTypePass},
	}

440
	api := NewAPI(nil, nil, nil, nil, chunk.NewTags())
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473

	f := api.Decryptor(ctx, "")
	err := f(me)
	if err != ErrDecryptDomainForbidden {
		t.Fatalf("should fail with ErrDecryptDomainForbidden, got %v", err)
	}
}

func TestDecryptOrigin(t *testing.T) {
	for _, v := range []struct {
		host        string
		expectError error
	}{
		{
			host:        "localhost",
			expectError: ErrDecrypt,
		},
		{
			host:        "127.0.0.1",
			expectError: ErrDecrypt,
		},
		{
			host:        "swarm-gateways.net",
			expectError: ErrDecryptDomainForbidden,
		},
	} {
		ctx := context.TODO()
		ctx = sctx.SetHost(ctx, v.host)

		me := &ManifestEntry{
			Access: &AccessEntry{Type: AccessTypePass},
		}

474
		api := NewAPI(nil, nil, nil, nil, chunk.NewTags())
475 476 477 478 479 480 481 482

		f := api.Decryptor(ctx, "")
		err := f(me)
		if err != v.expectError {
			t.Fatalf("should fail with %v, got %v", v.expectError, err)
		}
	}
}
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548

func TestDetectContentType(t *testing.T) {
	for _, tc := range []struct {
		file                string
		content             string
		expectedContentType string
	}{
		{
			file:                "file-with-correct-css.css",
			content:             "body {background-color: orange}",
			expectedContentType: "text/css; charset=utf-8",
		},
		{
			file:                "empty-file.css",
			content:             "",
			expectedContentType: "text/css; charset=utf-8",
		},
		{
			file:                "empty-file.pdf",
			content:             "",
			expectedContentType: "application/pdf",
		},
		{
			file:                "empty-file.md",
			content:             "",
			expectedContentType: "text/markdown; charset=utf-8",
		},
		{
			file:                "empty-file-with-unknown-content.strangeext",
			content:             "",
			expectedContentType: "text/plain; charset=utf-8",
		},
		{
			file:                "file-with-unknown-extension-and-content.strangeext",
			content:             "Lorem Ipsum",
			expectedContentType: "text/plain; charset=utf-8",
		},
		{
			file:                "file-no-extension",
			content:             "Lorem Ipsum",
			expectedContentType: "text/plain; charset=utf-8",
		},
		{
			file:                "file-no-extension-no-content",
			content:             "",
			expectedContentType: "text/plain; charset=utf-8",
		},
		{
			file:                "css-file-with-html-inside.css",
			content:             "<!doctype html><html><head></head><body></body></html>",
			expectedContentType: "text/css; charset=utf-8",
		},
	} {
		t.Run(tc.file, func(t *testing.T) {
			detected, err := DetectContentType(tc.file, bytes.NewReader([]byte(tc.content)))
			if err != nil {
				t.Fatal(err)
			}

			if detected != tc.expectedContentType {
				t.Fatalf("File: %s, Expected mime type %s, got %s", tc.file, tc.expectedContentType, detected)
			}

		})
	}
}
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576

// putString provides singleton manifest creation on top of api.API
func putString(ctx context.Context, a *API, content string, contentType string, toEncrypt bool) (k storage.Address, wait func(context.Context) error, err error) {
	r := strings.NewReader(content)
	tag, err := a.Tags.New("unnamed-tag", 0)

	log.Trace("created new tag", "uid", tag.Uid)

	cCtx := sctx.SetTag(ctx, tag.Uid)
	key, waitContent, err := a.Store(cCtx, r, int64(len(content)), toEncrypt)
	if err != nil {
		return nil, nil, err
	}
	manifest := fmt.Sprintf(`{"entries":[{"hash":"%v","contentType":"%s"}]}`, key, contentType)
	r = strings.NewReader(manifest)
	key, waitManifest, err := a.Store(cCtx, r, int64(len(manifest)), toEncrypt)
	if err != nil {
		return nil, nil, err
	}
	tag.DoneSplit(key)
	return key, func(ctx context.Context) error {
		err := waitContent(ctx)
		if err != nil {
			return err
		}
		return waitManifest(ctx)
	}, nil
}