| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122 | 
							- // Copyright (C) 2014 The Syncthing Authors.
 
- //
 
- // This Source Code Form is subject to the terms of the Mozilla Public
 
- // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 
- // You can obtain one at https://mozilla.org/MPL/2.0/.
 
- package config
 
- import (
 
- 	"bytes"
 
- 	"encoding/json"
 
- 	"fmt"
 
- 	"io/ioutil"
 
- 	"os"
 
- 	"path/filepath"
 
- 	"reflect"
 
- 	"runtime"
 
- 	"sort"
 
- 	"strings"
 
- 	"testing"
 
- 	"github.com/d4l3k/messagediff"
 
- 	"github.com/syncthing/syncthing/lib/fs"
 
- 	"github.com/syncthing/syncthing/lib/osutil"
 
- 	"github.com/syncthing/syncthing/lib/protocol"
 
- )
 
- var device1, device2, device3, device4 protocol.DeviceID
 
- func init() {
 
- 	device1, _ = protocol.DeviceIDFromString("AIR6LPZ7K4PTTUXQSMUUCPQ5YWOEDFIIQJUG7772YQXXR5YD6AWQ")
 
- 	device2, _ = protocol.DeviceIDFromString("GYRZZQB-IRNPV4Z-T7TC52W-EQYJ3TT-FDQW6MW-DFLMU42-SSSU6EM-FBK2VAY")
 
- 	device3, _ = protocol.DeviceIDFromString("LGFPDIT-7SKNNJL-VJZA4FC-7QNCRKA-CE753K7-2BW5QDK-2FOZ7FR-FEP57QJ")
 
- 	device4, _ = protocol.DeviceIDFromString("P56IOI7-MZJNU2Y-IQGDREY-DM2MGTI-MGL3BXN-PQ6W5BM-TBBZ4TJ-XZWICQ2")
 
- }
 
- func TestDefaultValues(t *testing.T) {
 
- 	expected := OptionsConfiguration{
 
- 		ListenAddresses:         []string{"default"},
 
- 		GlobalAnnServers:        []string{"default"},
 
- 		GlobalAnnEnabled:        true,
 
- 		LocalAnnEnabled:         true,
 
- 		LocalAnnPort:            21027,
 
- 		LocalAnnMCAddr:          "[ff12::8384]:21027",
 
- 		MaxSendKbps:             0,
 
- 		MaxRecvKbps:             0,
 
- 		ReconnectIntervalS:      60,
 
- 		RelaysEnabled:           true,
 
- 		RelayReconnectIntervalM: 10,
 
- 		StartBrowser:            true,
 
- 		NATEnabled:              true,
 
- 		NATLeaseM:               60,
 
- 		NATRenewalM:             30,
 
- 		NATTimeoutS:             10,
 
- 		RestartOnWakeup:         true,
 
- 		AutoUpgradeIntervalH:    12,
 
- 		KeepTemporariesH:        24,
 
- 		CacheIgnoredFiles:       false,
 
- 		ProgressUpdateIntervalS: 5,
 
- 		LimitBandwidthInLan:     false,
 
- 		MinHomeDiskFree:         Size{1, "%"},
 
- 		URURL:                   "https://data.syncthing.net/newdata",
 
- 		URInitialDelayS:         1800,
 
- 		URPostInsecurely:        false,
 
- 		ReleasesURL:             "https://upgrades.syncthing.net/meta.json",
 
- 		AlwaysLocalNets:         []string{},
 
- 		OverwriteRemoteDevNames: false,
 
- 		TempIndexMinBlocks:      10,
 
- 		UnackedNotificationIDs:  []string{},
 
- 		DefaultFolderPath:       "~",
 
- 		SetLowPriority:          true,
 
- 		StunKeepaliveStartS:     180,
 
- 		StunKeepaliveMinS:       20,
 
- 		StunServers:             []string{"default"},
 
- 	}
 
- 	cfg := New(device1)
 
- 	if diff, equal := messagediff.PrettyDiff(expected, cfg.Options); !equal {
 
- 		t.Errorf("Default config differs. Diff:\n%s", diff)
 
- 	}
 
- }
 
- func TestDeviceConfig(t *testing.T) {
 
- 	for i := OldestHandledVersion; i <= CurrentVersion; i++ {
 
- 		os.RemoveAll(filepath.Join("testdata", DefaultMarkerName))
 
- 		wr, err := Load(fmt.Sprintf("testdata/v%d.xml", i), device1)
 
- 		if err != nil {
 
- 			t.Fatal(err)
 
- 		}
 
- 		_, err = os.Stat(filepath.Join("testdata", DefaultMarkerName))
 
- 		if i < 6 && err != nil {
 
- 			t.Fatal(err)
 
- 		} else if i >= 6 && err == nil {
 
- 			t.Fatal("Unexpected file")
 
- 		}
 
- 		cfg := wr.(*wrapper).cfg
 
- 		expectedFolders := []FolderConfiguration{
 
- 			{
 
- 				ID:               "test",
 
- 				FilesystemType:   fs.FilesystemTypeBasic,
 
- 				Path:             "testdata",
 
- 				Devices:          []FolderDeviceConfiguration{{DeviceID: device1}, {DeviceID: device4}},
 
- 				Type:             FolderTypeSendOnly,
 
- 				RescanIntervalS:  600,
 
- 				FSWatcherEnabled: false,
 
- 				FSWatcherDelayS:  10,
 
- 				Copiers:          0,
 
- 				Hashers:          0,
 
- 				AutoNormalize:    true,
 
- 				MinDiskFree:      Size{1, "%"},
 
- 				MaxConflicts:     -1,
 
- 				Versioning: VersioningConfiguration{
 
- 					Params: map[string]string{},
 
- 				},
 
- 				WeakHashThresholdPct: 25,
 
- 				MarkerName:           DefaultMarkerName,
 
- 			},
 
- 		}
 
- 		// The cachedFilesystem will have been resolved to an absolute path,
 
- 		// depending on where the tests are running. Zero it out so we don't
 
- 		// fail based on that.
 
- 		for i := range cfg.Folders {
 
- 			cfg.Folders[i].cachedFilesystem = nil
 
- 		}
 
- 		expectedDevices := []DeviceConfiguration{
 
- 			{
 
- 				DeviceID:        device1,
 
- 				Name:            "node one",
 
- 				Addresses:       []string{"tcp://a"},
 
- 				Compression:     protocol.CompressMetadata,
 
- 				AllowedNetworks: []string{},
 
- 				IgnoredFolders:  []ObservedFolder{},
 
- 				PendingFolders:  []ObservedFolder{},
 
- 			},
 
- 			{
 
- 				DeviceID:        device4,
 
- 				Name:            "node two",
 
- 				Addresses:       []string{"tcp://b"},
 
- 				Compression:     protocol.CompressMetadata,
 
- 				AllowedNetworks: []string{},
 
- 				IgnoredFolders:  []ObservedFolder{},
 
- 				PendingFolders:  []ObservedFolder{},
 
- 			},
 
- 		}
 
- 		expectedDeviceIDs := []protocol.DeviceID{device1, device4}
 
- 		if cfg.Version != CurrentVersion {
 
- 			t.Errorf("%d: Incorrect version %d != %d", i, cfg.Version, CurrentVersion)
 
- 		}
 
- 		if diff, equal := messagediff.PrettyDiff(expectedFolders, cfg.Folders); !equal {
 
- 			t.Errorf("%d: Incorrect Folders. Diff:\n%s", i, diff)
 
- 		}
 
- 		if diff, equal := messagediff.PrettyDiff(expectedDevices, cfg.Devices); !equal {
 
- 			t.Errorf("%d: Incorrect Devices. Diff:\n%s", i, diff)
 
- 		}
 
- 		if diff, equal := messagediff.PrettyDiff(expectedDeviceIDs, cfg.Folders[0].DeviceIDs()); !equal {
 
- 			t.Errorf("%d: Incorrect DeviceIDs. Diff:\n%s", i, diff)
 
- 		}
 
- 	}
 
- }
 
- func TestNoListenAddresses(t *testing.T) {
 
- 	cfg, err := Load("testdata/nolistenaddress.xml", device1)
 
- 	if err != nil {
 
- 		t.Error(err)
 
- 	}
 
- 	expected := []string{""}
 
- 	actual := cfg.Options().ListenAddresses
 
- 	if diff, equal := messagediff.PrettyDiff(expected, actual); !equal {
 
- 		t.Errorf("Unexpected ListenAddresses. Diff:\n%s", diff)
 
- 	}
 
- }
 
- func TestOverriddenValues(t *testing.T) {
 
- 	expected := OptionsConfiguration{
 
- 		ListenAddresses:         []string{"tcp://:23000"},
 
- 		GlobalAnnServers:        []string{"udp4://syncthing.nym.se:22026"},
 
- 		GlobalAnnEnabled:        false,
 
- 		LocalAnnEnabled:         false,
 
- 		LocalAnnPort:            42123,
 
- 		LocalAnnMCAddr:          "quux:3232",
 
- 		MaxSendKbps:             1234,
 
- 		MaxRecvKbps:             2341,
 
- 		ReconnectIntervalS:      6000,
 
- 		RelaysEnabled:           false,
 
- 		RelayReconnectIntervalM: 20,
 
- 		StartBrowser:            false,
 
- 		NATEnabled:              false,
 
- 		NATLeaseM:               90,
 
- 		NATRenewalM:             15,
 
- 		NATTimeoutS:             15,
 
- 		RestartOnWakeup:         false,
 
- 		AutoUpgradeIntervalH:    24,
 
- 		KeepTemporariesH:        48,
 
- 		CacheIgnoredFiles:       true,
 
- 		ProgressUpdateIntervalS: 10,
 
- 		LimitBandwidthInLan:     true,
 
- 		MinHomeDiskFree:         Size{5.2, "%"},
 
- 		URSeen:                  2,
 
- 		URURL:                   "https://localhost/newdata",
 
- 		URInitialDelayS:         800,
 
- 		URPostInsecurely:        true,
 
- 		ReleasesURL:             "https://localhost/releases",
 
- 		AlwaysLocalNets:         []string{},
 
- 		OverwriteRemoteDevNames: true,
 
- 		TempIndexMinBlocks:      100,
 
- 		UnackedNotificationIDs: []string{
 
- 			"channelNotification",   // added in 17->18 migration
 
- 			"fsWatcherNotification", // added in 27->28 migration
 
- 		},
 
- 		DefaultFolderPath:   "/media/syncthing",
 
- 		SetLowPriority:      false,
 
- 		StunKeepaliveStartS: 9000,
 
- 		StunKeepaliveMinS:   900,
 
- 		StunServers:         []string{"foo"},
 
- 	}
 
- 	os.Unsetenv("STNOUPGRADE")
 
- 	cfg, err := Load("testdata/overridenvalues.xml", device1)
 
- 	if err != nil {
 
- 		t.Error(err)
 
- 	}
 
- 	if diff, equal := messagediff.PrettyDiff(expected, cfg.Options()); !equal {
 
- 		t.Errorf("Overridden config differs. Diff:\n%s", diff)
 
- 	}
 
- }
 
- func TestDeviceAddressesDynamic(t *testing.T) {
 
- 	name, _ := os.Hostname()
 
- 	expected := map[protocol.DeviceID]DeviceConfiguration{
 
- 		device1: {
 
- 			DeviceID:        device1,
 
- 			Addresses:       []string{"dynamic"},
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 		device2: {
 
- 			DeviceID:        device2,
 
- 			Addresses:       []string{"dynamic"},
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 		device3: {
 
- 			DeviceID:        device3,
 
- 			Addresses:       []string{"dynamic"},
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 		device4: {
 
- 			DeviceID:        device4,
 
- 			Name:            name, // Set when auto created
 
- 			Addresses:       []string{"dynamic"},
 
- 			Compression:     protocol.CompressMetadata,
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 	}
 
- 	cfg, err := Load("testdata/deviceaddressesdynamic.xml", device4)
 
- 	if err != nil {
 
- 		t.Error(err)
 
- 	}
 
- 	actual := cfg.Devices()
 
- 	if diff, equal := messagediff.PrettyDiff(expected, actual); !equal {
 
- 		t.Errorf("Devices differ. Diff:\n%s", diff)
 
- 	}
 
- }
 
- func TestDeviceCompression(t *testing.T) {
 
- 	name, _ := os.Hostname()
 
- 	expected := map[protocol.DeviceID]DeviceConfiguration{
 
- 		device1: {
 
- 			DeviceID:        device1,
 
- 			Addresses:       []string{"dynamic"},
 
- 			Compression:     protocol.CompressMetadata,
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 		device2: {
 
- 			DeviceID:        device2,
 
- 			Addresses:       []string{"dynamic"},
 
- 			Compression:     protocol.CompressMetadata,
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 		device3: {
 
- 			DeviceID:        device3,
 
- 			Addresses:       []string{"dynamic"},
 
- 			Compression:     protocol.CompressNever,
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 		device4: {
 
- 			DeviceID:        device4,
 
- 			Name:            name, // Set when auto created
 
- 			Addresses:       []string{"dynamic"},
 
- 			Compression:     protocol.CompressMetadata,
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 	}
 
- 	cfg, err := Load("testdata/devicecompression.xml", device4)
 
- 	if err != nil {
 
- 		t.Error(err)
 
- 	}
 
- 	actual := cfg.Devices()
 
- 	if diff, equal := messagediff.PrettyDiff(expected, actual); !equal {
 
- 		t.Errorf("Devices differ. Diff:\n%s", diff)
 
- 	}
 
- }
 
- func TestDeviceAddressesStatic(t *testing.T) {
 
- 	name, _ := os.Hostname()
 
- 	expected := map[protocol.DeviceID]DeviceConfiguration{
 
- 		device1: {
 
- 			DeviceID:        device1,
 
- 			Addresses:       []string{"tcp://192.0.2.1", "tcp://192.0.2.2"},
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 		device2: {
 
- 			DeviceID:        device2,
 
- 			Addresses:       []string{"tcp://192.0.2.3:6070", "tcp://[2001:db8::42]:4242"},
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 		device3: {
 
- 			DeviceID:        device3,
 
- 			Addresses:       []string{"tcp://[2001:db8::44]:4444", "tcp://192.0.2.4:6090"},
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 		device4: {
 
- 			DeviceID:        device4,
 
- 			Name:            name, // Set when auto created
 
- 			Addresses:       []string{"dynamic"},
 
- 			Compression:     protocol.CompressMetadata,
 
- 			AllowedNetworks: []string{},
 
- 			IgnoredFolders:  []ObservedFolder{},
 
- 			PendingFolders:  []ObservedFolder{},
 
- 		},
 
- 	}
 
- 	cfg, err := Load("testdata/deviceaddressesstatic.xml", device4)
 
- 	if err != nil {
 
- 		t.Error(err)
 
- 	}
 
- 	actual := cfg.Devices()
 
- 	if diff, equal := messagediff.PrettyDiff(expected, actual); !equal {
 
- 		t.Errorf("Devices differ. Diff:\n%s", diff)
 
- 	}
 
- }
 
- func TestVersioningConfig(t *testing.T) {
 
- 	cfg, err := Load("testdata/versioningconfig.xml", device4)
 
- 	if err != nil {
 
- 		t.Error(err)
 
- 	}
 
- 	vc := cfg.Folders()["test"].Versioning
 
- 	if vc.Type != "simple" {
 
- 		t.Errorf(`vc.Type %q != "simple"`, vc.Type)
 
- 	}
 
- 	if l := len(vc.Params); l != 2 {
 
- 		t.Errorf("len(vc.Params) %d != 2", l)
 
- 	}
 
- 	expected := map[string]string{
 
- 		"foo": "bar",
 
- 		"baz": "quux",
 
- 	}
 
- 	if diff, equal := messagediff.PrettyDiff(expected, vc.Params); !equal {
 
- 		t.Errorf("vc.Params differ. Diff:\n%s", diff)
 
- 	}
 
- }
 
- func TestIssue1262(t *testing.T) {
 
- 	if runtime.GOOS != "windows" {
 
- 		t.Skipf("path gets converted to absolute as part of the filesystem initialization on linux")
 
- 	}
 
- 	cfg, err := Load("testdata/issue-1262.xml", device4)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	actual := cfg.Folders()["test"].Filesystem().URI()
 
- 	expected := `e:\`
 
- 	if actual != expected {
 
- 		t.Errorf("%q != %q", actual, expected)
 
- 	}
 
- }
 
- func TestIssue1750(t *testing.T) {
 
- 	cfg, err := Load("testdata/issue-1750.xml", device4)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	if cfg.Options().ListenAddresses[0] != "tcp://:23000" {
 
- 		t.Errorf("%q != %q", cfg.Options().ListenAddresses[0], "tcp://:23000")
 
- 	}
 
- 	if cfg.Options().ListenAddresses[1] != "tcp://:23001" {
 
- 		t.Errorf("%q != %q", cfg.Options().ListenAddresses[1], "tcp://:23001")
 
- 	}
 
- 	if cfg.Options().GlobalAnnServers[0] != "udp4://syncthing.nym.se:22026" {
 
- 		t.Errorf("%q != %q", cfg.Options().GlobalAnnServers[0], "udp4://syncthing.nym.se:22026")
 
- 	}
 
- 	if cfg.Options().GlobalAnnServers[1] != "udp4://syncthing.nym.se:22027" {
 
- 		t.Errorf("%q != %q", cfg.Options().GlobalAnnServers[1], "udp4://syncthing.nym.se:22027")
 
- 	}
 
- }
 
- func TestFolderPath(t *testing.T) {
 
- 	folder := FolderConfiguration{
 
- 		Path: "~/tmp",
 
- 	}
 
- 	realPath := folder.Filesystem().URI()
 
- 	if !filepath.IsAbs(realPath) {
 
- 		t.Error(realPath, "should be absolute")
 
- 	}
 
- 	if strings.Contains(realPath, "~") {
 
- 		t.Error(realPath, "should not contain ~")
 
- 	}
 
- }
 
- func TestFolderCheckPath(t *testing.T) {
 
- 	n, err := ioutil.TempDir("", "")
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	err = os.MkdirAll(filepath.Join(n, "dir", ".stfolder"), os.FileMode(0777))
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	testcases := []struct {
 
- 		path string
 
- 		err  error
 
- 	}{
 
- 		{
 
- 			path: "",
 
- 			err:  ErrMarkerMissing,
 
- 		},
 
- 		{
 
- 			path: "does not exist",
 
- 			err:  ErrPathMissing,
 
- 		},
 
- 		{
 
- 			path: "dir",
 
- 			err:  nil,
 
- 		},
 
- 	}
 
- 	err = osutil.DebugSymlinkForTestsOnly(filepath.Join(n, "dir"), filepath.Join(n, "link"))
 
- 	if err == nil {
 
- 		t.Log("running with symlink check")
 
- 		testcases = append(testcases, struct {
 
- 			path string
 
- 			err  error
 
- 		}{
 
- 			path: "link",
 
- 			err:  nil,
 
- 		})
 
- 	} else if runtime.GOOS != "windows" {
 
- 		t.Log("running without symlink check")
 
- 		t.Fatal(err)
 
- 	}
 
- 	for _, testcase := range testcases {
 
- 		cfg := FolderConfiguration{
 
- 			Path:       filepath.Join(n, testcase.path),
 
- 			MarkerName: DefaultMarkerName,
 
- 		}
 
- 		if err := cfg.CheckPath(); testcase.err != err {
 
- 			t.Errorf("unexpected error in case %s: %s != %s", testcase.path, err, testcase.err)
 
- 		}
 
- 	}
 
- }
 
- func TestNewSaveLoad(t *testing.T) {
 
- 	path := "testdata/temp.xml"
 
- 	os.Remove(path)
 
- 	exists := func(path string) bool {
 
- 		_, err := os.Stat(path)
 
- 		return err == nil
 
- 	}
 
- 	intCfg := New(device1)
 
- 	cfg := Wrap(path, intCfg)
 
- 	// To make the equality pass later
 
- 	cfg.(*wrapper).cfg.XMLName.Local = "configuration"
 
- 	if exists(path) {
 
- 		t.Error(path, "exists")
 
- 	}
 
- 	err := cfg.Save()
 
- 	if err != nil {
 
- 		t.Error(err)
 
- 	}
 
- 	if !exists(path) {
 
- 		t.Error(path, "does not exist")
 
- 	}
 
- 	cfg2, err := Load(path, device1)
 
- 	if err != nil {
 
- 		t.Error(err)
 
- 	}
 
- 	if diff, equal := messagediff.PrettyDiff(cfg.RawCopy(), cfg2.RawCopy()); !equal {
 
- 		t.Errorf("Configs are not equal. Diff:\n%s", diff)
 
- 	}
 
- 	os.Remove(path)
 
- }
 
- func TestPrepare(t *testing.T) {
 
- 	var cfg Configuration
 
- 	if cfg.Folders != nil || cfg.Devices != nil || cfg.Options.ListenAddresses != nil {
 
- 		t.Error("Expected nil")
 
- 	}
 
- 	cfg.prepare(device1)
 
- 	if cfg.Folders == nil || cfg.Devices == nil || cfg.Options.ListenAddresses == nil {
 
- 		t.Error("Unexpected nil")
 
- 	}
 
- }
 
- func TestCopy(t *testing.T) {
 
- 	wrapper, err := Load("testdata/example.xml", device1)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	cfg := wrapper.RawCopy()
 
- 	bsOrig, err := json.MarshalIndent(cfg, "", "  ")
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	copy := cfg.Copy()
 
- 	cfg.Devices[0].Addresses[0] = "wrong"
 
- 	cfg.Folders[0].Devices[0].DeviceID = protocol.DeviceID{0, 1, 2, 3}
 
- 	cfg.Options.ListenAddresses[0] = "wrong"
 
- 	cfg.GUI.APIKey = "wrong"
 
- 	bsChanged, err := json.MarshalIndent(cfg, "", "  ")
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	bsCopy, err := json.MarshalIndent(copy, "", "  ")
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	if bytes.Equal(bsOrig, bsChanged) {
 
- 		t.Error("Config should have changed")
 
- 	}
 
- 	if !bytes.Equal(bsOrig, bsCopy) {
 
- 		// ioutil.WriteFile("a", bsOrig, 0644)
 
- 		// ioutil.WriteFile("b", bsCopy, 0644)
 
- 		t.Error("Copy should be unchanged")
 
- 	}
 
- }
 
- func TestPullOrder(t *testing.T) {
 
- 	wrapper, err := Load("testdata/pullorder.xml", device1)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	folders := wrapper.Folders()
 
- 	expected := []struct {
 
- 		name  string
 
- 		order PullOrder
 
- 	}{
 
- 		{"f1", OrderRandom},        // empty value, default
 
- 		{"f2", OrderRandom},        // explicit
 
- 		{"f3", OrderAlphabetic},    // explicit
 
- 		{"f4", OrderRandom},        // unknown value, default
 
- 		{"f5", OrderSmallestFirst}, // explicit
 
- 		{"f6", OrderLargestFirst},  // explicit
 
- 		{"f7", OrderOldestFirst},   // explicit
 
- 		{"f8", OrderNewestFirst},   // explicit
 
- 	}
 
- 	// Verify values are deserialized correctly
 
- 	for _, tc := range expected {
 
- 		if actual := folders[tc.name].Order; actual != tc.order {
 
- 			t.Errorf("Incorrect pull order for %q: %v != %v", tc.name, actual, tc.order)
 
- 		}
 
- 	}
 
- 	// Serialize and deserialize again to verify it survives the transformation
 
- 	buf := new(bytes.Buffer)
 
- 	cfg := wrapper.RawCopy()
 
- 	cfg.WriteXML(buf)
 
- 	t.Logf("%s", buf.Bytes())
 
- 	cfg, err = ReadXML(buf, device1)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	wrapper = Wrap("testdata/pullorder.xml", cfg)
 
- 	folders = wrapper.Folders()
 
- 	for _, tc := range expected {
 
- 		if actual := folders[tc.name].Order; actual != tc.order {
 
- 			t.Errorf("Incorrect pull order for %q: %v != %v", tc.name, actual, tc.order)
 
- 		}
 
- 	}
 
- }
 
- func TestLargeRescanInterval(t *testing.T) {
 
- 	wrapper, err := Load("testdata/largeinterval.xml", device1)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	if wrapper.Folders()["l1"].RescanIntervalS != MaxRescanIntervalS {
 
- 		t.Error("too large rescan interval should be maxed out")
 
- 	}
 
- 	if wrapper.Folders()["l2"].RescanIntervalS != 0 {
 
- 		t.Error("negative rescan interval should become zero")
 
- 	}
 
- }
 
- func TestGUIConfigURL(t *testing.T) {
 
- 	testcases := [][2]string{
 
- 		{"192.0.2.42:8080", "http://192.0.2.42:8080/"},
 
- 		{":8080", "http://127.0.0.1:8080/"},
 
- 		{"0.0.0.0:8080", "http://127.0.0.1:8080/"},
 
- 		{"127.0.0.1:8080", "http://127.0.0.1:8080/"},
 
- 		{"127.0.0.2:8080", "http://127.0.0.2:8080/"},
 
- 		{"[::]:8080", "http://[::1]:8080/"},
 
- 		{"[2001::42]:8080", "http://[2001::42]:8080/"},
 
- 	}
 
- 	for _, tc := range testcases {
 
- 		c := GUIConfiguration{
 
- 			RawAddress: tc[0],
 
- 		}
 
- 		u := c.URL()
 
- 		if u != tc[1] {
 
- 			t.Errorf("Incorrect URL %s != %s for addr %s", u, tc[1], tc[0])
 
- 		}
 
- 	}
 
- }
 
- func TestDuplicateDevices(t *testing.T) {
 
- 	// Duplicate devices should be removed
 
- 	wrapper, err := Load("testdata/dupdevices.xml", device1)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	if l := len(wrapper.RawCopy().Devices); l != 3 {
 
- 		t.Errorf("Incorrect number of devices, %d != 3", l)
 
- 	}
 
- 	f := wrapper.Folders()["f2"]
 
- 	if l := len(f.Devices); l != 2 {
 
- 		t.Errorf("Incorrect number of folder devices, %d != 2", l)
 
- 	}
 
- }
 
- func TestDuplicateFolders(t *testing.T) {
 
- 	// Duplicate folders are a loading error
 
- 	_, err := Load("testdata/dupfolders.xml", device1)
 
- 	if err == nil || !strings.HasPrefix(err.Error(), "duplicate folder ID") {
 
- 		t.Fatal(`Expected error to mention "duplicate folder ID":`, err)
 
- 	}
 
- }
 
- func TestEmptyFolderPaths(t *testing.T) {
 
- 	// Empty folder paths are allowed at the loading stage, and should not
 
- 	// get messed up by the prepare steps (e.g., become the current dir or
 
- 	// get a slash added so that it becomes the root directory or similar).
 
- 	wrapper, err := Load("testdata/nopath.xml", device1)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	folder := wrapper.Folders()["f1"]
 
- 	if folder.cachedFilesystem != nil {
 
- 		t.Errorf("Expected %q to be empty", folder.cachedFilesystem)
 
- 	}
 
- }
 
- func TestV14ListenAddressesMigration(t *testing.T) {
 
- 	tcs := [][3][]string{
 
- 		// Default listen plus default relays is now "default"
 
- 		{
 
- 			{"tcp://0.0.0.0:22000"},
 
- 			{"dynamic+https://relays.syncthing.net/endpoint"},
 
- 			{"default"},
 
- 		},
 
- 		// Default listen address without any relay addresses gets converted
 
- 		// to just the listen address. It's easier this way, and frankly the
 
- 		// user has gone to some trouble to get the empty string in the
 
- 		// config to start with...
 
- 		{
 
- 			{"tcp://0.0.0.0:22000"}, // old listen addrs
 
- 			{""},                    // old relay addrs
 
- 			{"tcp://0.0.0.0:22000"}, // new listen addrs
 
- 		},
 
- 		// Default listen plus non-default relays gets copied verbatim
 
- 		{
 
- 			{"tcp://0.0.0.0:22000"},
 
- 			{"dynamic+https://other.example.com"},
 
- 			{"tcp://0.0.0.0:22000", "dynamic+https://other.example.com"},
 
- 		},
 
- 		// Non-default listen plus default relays gets copied verbatim
 
- 		{
 
- 			{"tcp://1.2.3.4:22000"},
 
- 			{"dynamic+https://relays.syncthing.net/endpoint"},
 
- 			{"tcp://1.2.3.4:22000", "dynamic+https://relays.syncthing.net/endpoint"},
 
- 		},
 
- 		// Default stuff gets sucked into "default", the rest gets copied
 
- 		{
 
- 			{"tcp://0.0.0.0:22000", "tcp://1.2.3.4:22000"},
 
- 			{"dynamic+https://relays.syncthing.net/endpoint", "relay://other.example.com"},
 
- 			{"default", "tcp://1.2.3.4:22000", "relay://other.example.com"},
 
- 		},
 
- 	}
 
- 	m := migration{14, migrateToConfigV14}
 
- 	for _, tc := range tcs {
 
- 		cfg := Configuration{
 
- 			Version: 13,
 
- 			Options: OptionsConfiguration{
 
- 				ListenAddresses:        tc[0],
 
- 				DeprecatedRelayServers: tc[1],
 
- 			},
 
- 		}
 
- 		m.apply(&cfg)
 
- 		if cfg.Version != 14 {
 
- 			t.Error("Configuration was not converted")
 
- 		}
 
- 		sort.Strings(tc[2])
 
- 		if !reflect.DeepEqual(cfg.Options.ListenAddresses, tc[2]) {
 
- 			t.Errorf("Migration error; actual %#v != expected %#v", cfg.Options.ListenAddresses, tc[2])
 
- 		}
 
- 	}
 
- }
 
- func TestIgnoredDevices(t *testing.T) {
 
- 	// Verify that ignored devices that are also present in the
 
- 	// configuration are not in fact ignored.
 
- 	wrapper, err := Load("testdata/ignoreddevices.xml", device1)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	if wrapper.IgnoredDevice(device1) {
 
- 		t.Errorf("Device %v should not be ignored", device1)
 
- 	}
 
- 	if !wrapper.IgnoredDevice(device3) {
 
- 		t.Errorf("Device %v should be ignored", device3)
 
- 	}
 
- }
 
- func TestIgnoredFolders(t *testing.T) {
 
- 	// Verify that ignored folder that are also present in the
 
- 	// configuration are not in fact ignored.
 
- 	// Also, verify that folders that are shared with a device are not ignored.
 
- 	wrapper, err := Load("testdata/ignoredfolders.xml", device1)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	if wrapper.IgnoredFolder(device2, "folder1") {
 
- 		t.Errorf("Device %v should not be ignored", device2)
 
- 	}
 
- 	if !wrapper.IgnoredFolder(device3, "folder1") {
 
- 		t.Errorf("Device %v should be ignored", device3)
 
- 	}
 
- 	// Should be removed, hence not ignored.
 
- 	if wrapper.IgnoredFolder(device4, "folder1") {
 
- 		t.Errorf("Device %v should not be ignored", device4)
 
- 	}
 
- 	if !wrapper.IgnoredFolder(device2, "folder2") {
 
- 		t.Errorf("Device %v should not be ignored", device2)
 
- 	}
 
- 	if !wrapper.IgnoredFolder(device3, "folder2") {
 
- 		t.Errorf("Device %v should be ignored", device3)
 
- 	}
 
- 	// 2 for folder2, 1 for folder1, as non-existing device and device the folder is shared with is removed.
 
- 	expectedIgnoredFolders := 3
 
- 	for _, dev := range wrapper.Devices() {
 
- 		expectedIgnoredFolders -= len(dev.IgnoredFolders)
 
- 	}
 
- 	if expectedIgnoredFolders != 0 {
 
- 		t.Errorf("Left with %d ignored folders", expectedIgnoredFolders)
 
- 	}
 
- }
 
- func TestGetDevice(t *testing.T) {
 
- 	// Verify that the Device() call does the right thing
 
- 	wrapper, err := Load("testdata/ignoreddevices.xml", device1)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	// device1 is mentioned in the config
 
- 	device, ok := wrapper.Device(device1)
 
- 	if !ok {
 
- 		t.Error(device1, "should exist")
 
- 	}
 
- 	if device.DeviceID != device1 {
 
- 		t.Error("Should have returned", device1, "not", device.DeviceID)
 
- 	}
 
- 	// device3 is not
 
- 	device, ok = wrapper.Device(device3)
 
- 	if ok {
 
- 		t.Error(device3, "should not exist")
 
- 	}
 
- 	if device.DeviceID == device3 {
 
- 		t.Error("Should not returned ID", device3)
 
- 	}
 
- }
 
- func TestSharesRemovedOnDeviceRemoval(t *testing.T) {
 
- 	wrapper, err := Load("testdata/example.xml", device1)
 
- 	if err != nil {
 
- 		t.Errorf("Failed: %s", err)
 
- 	}
 
- 	raw := wrapper.RawCopy()
 
- 	raw.Devices = raw.Devices[:len(raw.Devices)-1]
 
- 	if len(raw.Folders[0].Devices) <= len(raw.Devices) {
 
- 		t.Error("Should have less devices")
 
- 	}
 
- 	_, err = wrapper.Replace(raw)
 
- 	if err != nil {
 
- 		t.Errorf("Failed: %s", err)
 
- 	}
 
- 	raw = wrapper.RawCopy()
 
- 	if len(raw.Folders[0].Devices) > len(raw.Devices) {
 
- 		t.Error("Unexpected extra device")
 
- 	}
 
- }
 
- func TestIssue4219(t *testing.T) {
 
- 	// Adding a folder that was previously ignored should make it unignored.
 
- 	r := bytes.NewReader([]byte(`{
 
- 		"devices": [
 
- 			{
 
- 				"deviceID": "GYRZZQB-IRNPV4Z-T7TC52W-EQYJ3TT-FDQW6MW-DFLMU42-SSSU6EM-FBK2VAY",
 
- 				"ignoredFolders": [
 
- 					{
 
- 						"id": "t1"
 
- 					},
 
- 					{
 
- 						"id": "abcd123"
 
- 					}
 
- 				]
 
- 			},
 
- 			{
 
- 				"deviceID": "LGFPDIT-7SKNNJL-VJZA4FC-7QNCRKA-CE753K7-2BW5QDK-2FOZ7FR-FEP57QJ",
 
- 				"ignoredFolders": [
 
- 					{
 
- 						"id": "t1"
 
- 					},
 
- 					{
 
- 						"id": "abcd123"
 
- 					}
 
- 				]
 
- 			}
 
- 		],
 
- 		"folders": [
 
- 			{
 
- 				"id": "abcd123",
 
- 				"devices":[
 
- 					{"deviceID": "GYRZZQB-IRNPV4Z-T7TC52W-EQYJ3TT-FDQW6MW-DFLMU42-SSSU6EM-FBK2VAY"}
 
- 				]
 
- 			}
 
- 		],
 
- 		"remoteIgnoredDevices": [
 
- 			{
 
- 				"deviceID": "GYRZZQB-IRNPV4Z-T7TC52W-EQYJ3TT-FDQW6MW-DFLMU42-SSSU6EM-FBK2VAY"
 
- 			}
 
- 		]
 
- 	}`))
 
- 	cfg, err := ReadJSON(r, protocol.LocalDeviceID)
 
- 	if err != nil {
 
- 		t.Fatal(err)
 
- 	}
 
- 	if len(cfg.IgnoredDevices) != 0 { // 1 gets removed
 
- 		t.Errorf("There should be zero ignored devices, not %d", len(cfg.IgnoredDevices))
 
- 	}
 
- 	ignoredFolders := 0
 
- 	for _, dev := range cfg.Devices {
 
- 		ignoredFolders += len(dev.IgnoredFolders)
 
- 	}
 
- 	if ignoredFolders != 3 { // 1 gets removed
 
- 		t.Errorf("There should be three ignored folders, not %d", ignoredFolders)
 
- 	}
 
- 	w := Wrap("/tmp/cfg", cfg)
 
- 	if !w.IgnoredFolder(device2, "t1") {
 
- 		t.Error("Folder device2 t1 should be ignored")
 
- 	}
 
- 	if !w.IgnoredFolder(device3, "t1") {
 
- 		t.Error("Folder device3 t1 should be ignored")
 
- 	}
 
- 	if w.IgnoredFolder(device2, "abcd123") {
 
- 		t.Error("Folder device2 abcd123 should not be ignored")
 
- 	}
 
- 	if !w.IgnoredFolder(device3, "abcd123") {
 
- 		t.Error("Folder device3 abcd123 should be ignored")
 
- 	}
 
- }
 
- func TestInvalidDeviceIDRejected(t *testing.T) {
 
- 	// This test verifies that we properly reject invalid device IDs when
 
- 	// deserializing a JSON config.
 
- 	cases := []struct {
 
- 		id string
 
- 		ok bool
 
- 	}{
 
- 		// a genuine device ID
 
- 		{"GYRZZQB-IRNPV4Z-T7TC52W-EQYJ3TT-FDQW6MW-DFLMU42-SSSU6EM-FBK2VAY", true},
 
- 		// incorrect check digit
 
- 		{"GYRZZQB-IRNPV4A-T7TC52W-EQYJ3TT-FDQW6MW-DFLMU42-SSSU6EM-FBK2VAY", false},
 
- 		// missing digit
 
- 		{"GYRZZQB-IRNPV4Z-T7TC52W-EQYJ3TT-FDQW6MW-DFLMU42-SSSU6EM-FBK2VA", false},
 
- 		// clearly broken
 
- 		{"invalid", false},
 
- 		// accepted as the empty device ID for historical reasons...
 
- 		{"", true},
 
- 	}
 
- 	for _, tc := range cases {
 
- 		cfg := defaultConfigAsMap()
 
- 		// Change the device ID of the first device to "invalid". Fast and loose
 
- 		// with the type assertions as we know what the JSON decoder returns.
 
- 		devs := cfg["devices"].([]interface{})
 
- 		dev0 := devs[0].(map[string]interface{})
 
- 		dev0["deviceID"] = tc.id
 
- 		devs[0] = dev0
 
- 		invalidJSON, err := json.Marshal(cfg)
 
- 		if err != nil {
 
- 			t.Fatal(err)
 
- 		}
 
- 		_, err = ReadJSON(bytes.NewReader(invalidJSON), device1)
 
- 		if tc.ok && err != nil {
 
- 			t.Errorf("unexpected error for device ID %q: %v", tc.id, err)
 
- 		} else if !tc.ok && err == nil {
 
- 			t.Errorf("device ID %q, expected error but got nil", tc.id)
 
- 		}
 
- 	}
 
- }
 
- func TestInvalidFolderIDRejected(t *testing.T) {
 
- 	// This test verifies that we properly reject invalid folder IDs when
 
- 	// deserializing a JSON config.
 
- 	cases := []struct {
 
- 		id string
 
- 		ok bool
 
- 	}{
 
- 		// a reasonable folder ID
 
- 		{"foo", true},
 
- 		// empty is not OK
 
- 		{"", false},
 
- 	}
 
- 	for _, tc := range cases {
 
- 		cfg := defaultConfigAsMap()
 
- 		// Change the folder ID of the first folder to the empty string.
 
- 		// Fast and loose with the type assertions as we know what the JSON
 
- 		// decoder returns.
 
- 		devs := cfg["folders"].([]interface{})
 
- 		dev0 := devs[0].(map[string]interface{})
 
- 		dev0["id"] = tc.id
 
- 		devs[0] = dev0
 
- 		invalidJSON, err := json.Marshal(cfg)
 
- 		if err != nil {
 
- 			t.Fatal(err)
 
- 		}
 
- 		_, err = ReadJSON(bytes.NewReader(invalidJSON), device1)
 
- 		if tc.ok && err != nil {
 
- 			t.Errorf("unexpected error for folder ID %q: %v", tc.id, err)
 
- 		} else if !tc.ok && err == nil {
 
- 			t.Errorf("folder ID %q, expected error but got nil", tc.id)
 
- 		}
 
- 	}
 
- }
 
- func TestFilterURLSchemePrefix(t *testing.T) {
 
- 	cases := []struct {
 
- 		before []string
 
- 		prefix string
 
- 		after  []string
 
- 	}{
 
- 		{[]string{}, "kcp", []string{}},
 
- 		{[]string{"tcp://foo"}, "kcp", []string{"tcp://foo"}},
 
- 		{[]string{"kcp://foo"}, "kcp", []string{}},
 
- 		{[]string{"tcp6://foo", "kcp6://foo"}, "kcp", []string{"tcp6://foo"}},
 
- 		{[]string{"kcp6://foo", "tcp6://foo"}, "kcp", []string{"tcp6://foo"}},
 
- 		{
 
- 			[]string{"tcp://foo", "tcp4://foo", "kcp://foo", "kcp4://foo", "banana://foo", "banana4://foo", "banananas!"},
 
- 			"kcp",
 
- 			[]string{"tcp://foo", "tcp4://foo", "banana://foo", "banana4://foo", "banananas!"},
 
- 		},
 
- 	}
 
- 	for _, tc := range cases {
 
- 		res := filterURLSchemePrefix(tc.before, tc.prefix)
 
- 		if !reflect.DeepEqual(res, tc.after) {
 
- 			t.Errorf("filterURLSchemePrefix => %q, expected %q", res, tc.after)
 
- 		}
 
- 	}
 
- }
 
- func TestDeviceConfigObservedNotNil(t *testing.T) {
 
- 	cfg := Configuration{
 
- 		Devices: []DeviceConfiguration{
 
- 			{},
 
- 		},
 
- 	}
 
- 	cfg.prepare(device1)
 
- 	for _, dev := range cfg.Devices {
 
- 		if dev.IgnoredFolders == nil {
 
- 			t.Errorf("Ignored folders nil")
 
- 		}
 
- 		if dev.PendingFolders == nil {
 
- 			t.Errorf("Pending folders nil")
 
- 		}
 
- 	}
 
- }
 
- // defaultConfigAsMap returns a valid default config as a JSON-decoded
 
- // map[string]interface{}. This is useful to override random elements and
 
- // re-encode into JSON.
 
- func defaultConfigAsMap() map[string]interface{} {
 
- 	cfg := New(device1)
 
- 	cfg.Devices = append(cfg.Devices, NewDeviceConfiguration(device2, "name"))
 
- 	cfg.Folders = append(cfg.Folders, NewFolderConfiguration(device1, "default", "default", fs.FilesystemTypeBasic, "/tmp"))
 
- 	bs, err := json.Marshal(cfg)
 
- 	if err != nil {
 
- 		// can't happen
 
- 		panic(err)
 
- 	}
 
- 	var tmp map[string]interface{}
 
- 	if err := json.Unmarshal(bs, &tmp); err != nil {
 
- 		// can't happen
 
- 		panic(err)
 
- 	}
 
- 	return tmp
 
- }
 
 
  |