aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/swarm/upload_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/swarm/upload_test.go')
-rw-r--r--cmd/swarm/upload_test.go22
1 files changed, 17 insertions, 5 deletions
diff --git a/cmd/swarm/upload_test.go b/cmd/swarm/upload_test.go
index 84205031b..e8161680f 100644
--- a/cmd/swarm/upload_test.go
+++ b/cmd/swarm/upload_test.go
@@ -14,13 +14,10 @@
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
-// +build !windows
-
package main
import (
"bytes"
- "flag"
"fmt"
"io"
"io/ioutil"
@@ -28,6 +25,7 @@ import (
"os"
"path"
"path/filepath"
+ "runtime"
"strings"
"testing"
"time"
@@ -37,8 +35,6 @@ import (
"github.com/mattn/go-colorable"
)
-var loglevel = flag.Int("loglevel", 3, "verbosity of logs")
-
func init() {
log.PrintOrigins(true)
log.Root().SetHandler(log.LvlFilterHandler(log.Lvl(*loglevel), log.StreamHandler(colorable.NewColorableStderr(), log.TerminalFormat(true))))
@@ -47,18 +43,31 @@ func init() {
// TestCLISwarmUp tests that running 'swarm up' makes the resulting file
// available from all nodes via the HTTP API
func TestCLISwarmUp(t *testing.T) {
+ if runtime.GOOS == "windows" {
+ t.Skip()
+ }
+
testCLISwarmUp(false, t)
}
func TestCLISwarmUpRecursive(t *testing.T) {
+ if runtime.GOOS == "windows" {
+ t.Skip()
+ }
testCLISwarmUpRecursive(false, t)
}
// TestCLISwarmUpEncrypted tests that running 'swarm encrypted-up' makes the resulting file
// available from all nodes via the HTTP API
func TestCLISwarmUpEncrypted(t *testing.T) {
+ if runtime.GOOS == "windows" {
+ t.Skip()
+ }
testCLISwarmUp(true, t)
}
func TestCLISwarmUpEncryptedRecursive(t *testing.T) {
+ if runtime.GOOS == "windows" {
+ t.Skip()
+ }
testCLISwarmUpRecursive(true, t)
}
@@ -279,6 +288,9 @@ func testCLISwarmUpRecursive(toEncrypt bool, t *testing.T) {
// TestCLISwarmUpDefaultPath tests swarm recursive upload with relative and absolute
// default paths and with encryption.
func TestCLISwarmUpDefaultPath(t *testing.T) {
+ if runtime.GOOS == "windows" {
+ t.Skip()
+ }
testCLISwarmUpDefaultPath(false, false, t)
testCLISwarmUpDefaultPath(false, true, t)
testCLISwarmUpDefaultPath(true, false, t)