aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/swarm/main_test.go
diff options
context:
space:
mode:
authorJanos Guljas <janos@resenje.org>2017-12-13 17:23:11 +0800
committerJanos Guljas <janos@resenje.org>2017-12-13 17:40:39 +0800
commit19982f946735948478b6b7e7706f1b615f171d0d (patch)
treecbacbdb6f9e6e731c2ebc17bad74e875f4d8ea8b /cmd/swarm/main_test.go
parent1dc19de5da64962a98a37bbc7b93a3895d2eb6e6 (diff)
parent32516c768ec09e2a71cab5983d2c8b8ae5d92fc7 (diff)
downloadgo-tangerine-19982f946735948478b6b7e7706f1b615f171d0d.tar
go-tangerine-19982f946735948478b6b7e7706f1b615f171d0d.tar.gz
go-tangerine-19982f946735948478b6b7e7706f1b615f171d0d.tar.bz2
go-tangerine-19982f946735948478b6b7e7706f1b615f171d0d.tar.lz
go-tangerine-19982f946735948478b6b7e7706f1b615f171d0d.tar.xz
go-tangerine-19982f946735948478b6b7e7706f1b615f171d0d.tar.zst
go-tangerine-19982f946735948478b6b7e7706f1b615f171d0d.zip
swarm, cmd/swarm: Merge branch 'master' into multiple-ens-endpoints
Merge with changes that implement config file PR #15548. Field *EnsApi string* in swarm/api.Config is replaced with *EnsAPIs []string*. A new field *EnsDisabled bool* is added to swarm/api.Config for easy way to disable ENS resolving with config file. Signature of function swarm.NewSwarm is changed and simplified.
Diffstat (limited to 'cmd/swarm/main_test.go')
-rw-r--r--cmd/swarm/main_test.go141
1 files changed, 0 insertions, 141 deletions
diff --git a/cmd/swarm/main_test.go b/cmd/swarm/main_test.go
deleted file mode 100644
index f815f3387..000000000
--- a/cmd/swarm/main_test.go
+++ /dev/null
@@ -1,141 +0,0 @@
-// Copyright 2017 The go-ethereum Authors
-// This file is part of go-ethereum.
-//
-// go-ethereum is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// go-ethereum 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 General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
-
-package main
-
-import (
- "testing"
-
- "github.com/ethereum/go-ethereum/swarm"
-)
-
-func TestParseFlagEnsAPI(t *testing.T) {
- for _, x := range []struct {
- description string
- value string
- config swarm.ENSClientConfig
- }{
- {
- description: "IPC endpoint",
- value: "/data/testnet/geth.ipc",
- config: swarm.ENSClientConfig{
- Endpoint: "/data/testnet/geth.ipc",
- },
- },
- {
- description: "HTTP endpoint",
- value: "http://127.0.0.1:1234",
- config: swarm.ENSClientConfig{
- Endpoint: "http://127.0.0.1:1234",
- },
- },
- {
- description: "WS endpoint",
- value: "ws://127.0.0.1:1234",
- config: swarm.ENSClientConfig{
- Endpoint: "ws://127.0.0.1:1234",
- },
- },
- {
- description: "IPC Endpoint and TLD",
- value: "test:/data/testnet/geth.ipc",
- config: swarm.ENSClientConfig{
- Endpoint: "/data/testnet/geth.ipc",
- TLD: "test",
- },
- },
- {
- description: "HTTP endpoint and TLD",
- value: "test:http://127.0.0.1:1234",
- config: swarm.ENSClientConfig{
- Endpoint: "http://127.0.0.1:1234",
- TLD: "test",
- },
- },
- {
- description: "WS endpoint and TLD",
- value: "test:ws://127.0.0.1:1234",
- config: swarm.ENSClientConfig{
- Endpoint: "ws://127.0.0.1:1234",
- TLD: "test",
- },
- },
- {
- description: "IPC Endpoint and contract address",
- value: "314159265dD8dbb310642f98f50C066173C1259b@/data/testnet/geth.ipc",
- config: swarm.ENSClientConfig{
- Endpoint: "/data/testnet/geth.ipc",
- ContractAddress: "314159265dD8dbb310642f98f50C066173C1259b",
- },
- },
- {
- description: "HTTP endpoint and contract address",
- value: "314159265dD8dbb310642f98f50C066173C1259b@http://127.0.0.1:1234",
- config: swarm.ENSClientConfig{
- Endpoint: "http://127.0.0.1:1234",
- ContractAddress: "314159265dD8dbb310642f98f50C066173C1259b",
- },
- },
- {
- description: "WS endpoint and contract address",
- value: "314159265dD8dbb310642f98f50C066173C1259b@ws://127.0.0.1:1234",
- config: swarm.ENSClientConfig{
- Endpoint: "ws://127.0.0.1:1234",
- ContractAddress: "314159265dD8dbb310642f98f50C066173C1259b",
- },
- },
- {
- description: "IPC Endpoint, TLD and contract address",
- value: "test:314159265dD8dbb310642f98f50C066173C1259b@/data/testnet/geth.ipc",
- config: swarm.ENSClientConfig{
- Endpoint: "/data/testnet/geth.ipc",
- ContractAddress: "314159265dD8dbb310642f98f50C066173C1259b",
- TLD: "test",
- },
- },
- {
- description: "HTTP endpoint, TLD and contract address",
- value: "eth:314159265dD8dbb310642f98f50C066173C1259b@http://127.0.0.1:1234",
- config: swarm.ENSClientConfig{
- Endpoint: "http://127.0.0.1:1234",
- ContractAddress: "314159265dD8dbb310642f98f50C066173C1259b",
- TLD: "eth",
- },
- },
- {
- description: "WS endpoint, TLD and contract address",
- value: "eth:314159265dD8dbb310642f98f50C066173C1259b@ws://127.0.0.1:1234",
- config: swarm.ENSClientConfig{
- Endpoint: "ws://127.0.0.1:1234",
- ContractAddress: "314159265dD8dbb310642f98f50C066173C1259b",
- TLD: "eth",
- },
- },
- } {
- t.Run(x.description, func(t *testing.T) {
- config := parseFlagEnsAPI(x.value)
- if config.Endpoint != x.config.Endpoint {
- t.Errorf("expected Endpoint %q, got %q", x.config.Endpoint, config.Endpoint)
- }
- if config.ContractAddress != x.config.ContractAddress {
- t.Errorf("expected ContractAddress %q, got %q", x.config.ContractAddress, config.ContractAddress)
- }
- if config.TLD != x.config.TLD {
- t.Errorf("expected TLD %q, got %q", x.config.TLD, config.TLD)
- }
- })
- }
-}