2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00:00
|
|
|
// 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 http://mozilla.org/MPL/2.0/.
|
2014-06-01 20:50:14 +00:00
|
|
|
|
2014-05-15 00:18:09 +00:00
|
|
|
package config
|
2014-03-04 21:17:28 +00:00
|
|
|
|
|
|
|
import (
|
2015-04-05 15:36:52 +00:00
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2014-10-11 15:55:11 +00:00
|
|
|
"fmt"
|
2014-04-22 10:06:32 +00:00
|
|
|
"os"
|
2015-04-05 20:52:22 +00:00
|
|
|
"path/filepath"
|
2016-05-17 00:05:38 +00:00
|
|
|
"reflect"
|
2015-01-22 23:34:22 +00:00
|
|
|
"runtime"
|
2016-05-17 00:05:38 +00:00
|
|
|
"sort"
|
2015-04-05 20:52:22 +00:00
|
|
|
"strings"
|
2014-03-04 21:17:28 +00:00
|
|
|
"testing"
|
2014-06-07 03:10:15 +00:00
|
|
|
|
2016-03-06 20:32:10 +00:00
|
|
|
"github.com/d4l3k/messagediff"
|
2015-09-22 17:38:46 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
2014-03-04 21:17:28 +00:00
|
|
|
)
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
var device1, device2, device3, device4 protocol.DeviceID
|
2014-06-29 23:42:03 +00:00
|
|
|
|
|
|
|
func init() {
|
2014-09-28 11:00:38 +00:00
|
|
|
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")
|
2014-06-29 23:42:03 +00:00
|
|
|
}
|
|
|
|
|
2014-03-04 21:17:28 +00:00
|
|
|
func TestDefaultValues(t *testing.T) {
|
|
|
|
expected := OptionsConfiguration{
|
2016-05-04 19:38:12 +00:00
|
|
|
ListenAddresses: []string{"default"},
|
2015-09-20 13:30:25 +00:00
|
|
|
GlobalAnnServers: []string{"default"},
|
2014-11-16 23:18:59 +00:00
|
|
|
GlobalAnnEnabled: true,
|
|
|
|
LocalAnnEnabled: true,
|
2015-08-27 14:04:13 +00:00
|
|
|
LocalAnnPort: 21027,
|
2015-08-23 12:59:38 +00:00
|
|
|
LocalAnnMCAddr: "[ff12::8384]:21027",
|
2014-11-16 23:18:59 +00:00
|
|
|
MaxSendKbps: 0,
|
|
|
|
MaxRecvKbps: 0,
|
|
|
|
ReconnectIntervalS: 60,
|
2016-05-17 00:05:38 +00:00
|
|
|
RelaysEnabled: true,
|
2015-06-28 20:09:03 +00:00
|
|
|
RelayReconnectIntervalM: 10,
|
2014-11-16 23:18:59 +00:00
|
|
|
StartBrowser: true,
|
2016-04-10 19:36:38 +00:00
|
|
|
NATEnabled: true,
|
|
|
|
NATLeaseM: 60,
|
|
|
|
NATRenewalM: 30,
|
|
|
|
NATTimeoutS: 10,
|
2014-11-16 23:18:59 +00:00
|
|
|
RestartOnWakeup: true,
|
|
|
|
AutoUpgradeIntervalH: 12,
|
|
|
|
KeepTemporariesH: 24,
|
2016-04-03 19:18:16 +00:00
|
|
|
CacheIgnoredFiles: false,
|
2014-11-16 23:18:59 +00:00
|
|
|
ProgressUpdateIntervalS: 5,
|
2014-12-01 10:26:54 +00:00
|
|
|
SymlinksEnabled: true,
|
2015-03-08 18:36:59 +00:00
|
|
|
LimitBandwidthInLan: false,
|
2015-08-09 09:46:28 +00:00
|
|
|
MinHomeDiskFreePct: 1,
|
2015-09-10 12:08:40 +00:00
|
|
|
URURL: "https://data.syncthing.net/newdata",
|
|
|
|
URInitialDelayS: 1800,
|
|
|
|
URPostInsecurely: false,
|
2016-05-13 09:17:10 +00:00
|
|
|
ReleasesURL: "https://upgrades.syncthing.net/meta.json",
|
2015-10-27 11:04:51 +00:00
|
|
|
AlwaysLocalNets: []string{},
|
2016-05-12 08:23:18 +00:00
|
|
|
OverwriteRemoteDevNames: false,
|
2016-04-15 10:59:41 +00:00
|
|
|
TempIndexMinBlocks: 10,
|
2014-03-04 21:17:28 +00:00
|
|
|
}
|
|
|
|
|
2014-10-06 07:25:45 +00:00
|
|
|
cfg := New(device1)
|
2014-03-04 21:17:28 +00:00
|
|
|
|
2016-03-17 07:03:29 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(expected, cfg.Options); !equal {
|
2016-03-06 20:32:10 +00:00
|
|
|
t.Errorf("Default config differs. Diff:\n%s", diff)
|
2014-03-04 21:17:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
func TestDeviceConfig(t *testing.T) {
|
2015-04-04 19:49:15 +00:00
|
|
|
for i := OldestHandledVersion; i <= CurrentVersion; i++ {
|
2014-10-11 15:55:11 +00:00
|
|
|
os.Remove("testdata/.stfolder")
|
|
|
|
wr, err := Load(fmt.Sprintf("testdata/v%d.xml", i), device1)
|
2014-04-08 11:45:18 +00:00
|
|
|
if err != nil {
|
2014-10-06 07:25:45 +00:00
|
|
|
t.Fatal(err)
|
2014-04-08 11:45:18 +00:00
|
|
|
}
|
2014-10-11 15:55:11 +00:00
|
|
|
|
|
|
|
_, err = os.Stat("testdata/.stfolder")
|
|
|
|
if i < 6 && err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else if i >= 6 && err == nil {
|
|
|
|
t.Fatal("Unexpected file")
|
|
|
|
}
|
|
|
|
|
2014-10-06 07:25:45 +00:00
|
|
|
cfg := wr.cfg
|
2014-04-08 11:45:18 +00:00
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
expectedFolders := []FolderConfiguration{
|
2014-04-08 11:45:18 +00:00
|
|
|
{
|
2014-08-18 21:05:47 +00:00
|
|
|
ID: "test",
|
2015-10-22 11:49:41 +00:00
|
|
|
RawPath: "testdata",
|
2014-09-28 11:05:25 +00:00
|
|
|
Devices: []FolderDeviceConfiguration{{DeviceID: device1}, {DeviceID: device4}},
|
2016-05-04 10:47:33 +00:00
|
|
|
Type: FolderTypeReadOnly,
|
2014-08-18 21:05:47 +00:00
|
|
|
RescanIntervalS: 600,
|
2015-08-14 07:37:04 +00:00
|
|
|
Copiers: 0,
|
|
|
|
Pullers: 0,
|
2014-12-24 23:12:12 +00:00
|
|
|
Hashers: 0,
|
2015-03-21 14:33:31 +00:00
|
|
|
AutoNormalize: true,
|
2015-07-16 10:52:36 +00:00
|
|
|
MinDiskFreePct: 1,
|
2015-10-13 19:50:58 +00:00
|
|
|
MaxConflicts: -1,
|
2014-04-08 11:45:18 +00:00
|
|
|
},
|
|
|
|
}
|
2015-10-22 11:49:41 +00:00
|
|
|
|
2015-11-05 08:31:36 +00:00
|
|
|
// The cachedPath 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].cachedPath = ""
|
|
|
|
}
|
|
|
|
|
2015-10-22 11:49:41 +00:00
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
expectedFolders[0].RawPath += string(filepath.Separator)
|
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
expectedDevices := []DeviceConfiguration{
|
2014-04-08 11:45:18 +00:00
|
|
|
{
|
2014-09-28 11:05:25 +00:00
|
|
|
DeviceID: device1,
|
2014-09-28 12:22:39 +00:00
|
|
|
Name: "node one",
|
2015-06-23 12:55:30 +00:00
|
|
|
Addresses: []string{"tcp://a"},
|
2015-02-23 08:44:10 +00:00
|
|
|
Compression: protocol.CompressMetadata,
|
2014-04-08 11:45:18 +00:00
|
|
|
},
|
|
|
|
{
|
2014-09-28 11:05:25 +00:00
|
|
|
DeviceID: device4,
|
2014-09-28 12:22:39 +00:00
|
|
|
Name: "node two",
|
2015-06-23 12:55:30 +00:00
|
|
|
Addresses: []string{"tcp://b"},
|
2015-02-23 08:44:10 +00:00
|
|
|
Compression: protocol.CompressMetadata,
|
2014-04-08 11:45:18 +00:00
|
|
|
},
|
|
|
|
}
|
2014-09-28 11:00:38 +00:00
|
|
|
expectedDeviceIDs := []protocol.DeviceID{device1, device4}
|
2014-04-08 11:45:18 +00:00
|
|
|
|
2014-10-11 15:55:11 +00:00
|
|
|
if cfg.Version != CurrentVersion {
|
|
|
|
t.Errorf("%d: Incorrect version %d != %d", i, cfg.Version, CurrentVersion)
|
2014-04-08 11:45:18 +00:00
|
|
|
}
|
2016-03-17 07:03:29 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(expectedFolders, cfg.Folders); !equal {
|
2016-03-06 20:32:10 +00:00
|
|
|
t.Errorf("%d: Incorrect Folders. Diff:\n%s", i, diff)
|
2014-04-08 11:45:18 +00:00
|
|
|
}
|
2016-03-17 07:03:29 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(expectedDevices, cfg.Devices); !equal {
|
2016-03-06 20:32:10 +00:00
|
|
|
t.Errorf("%d: Incorrect Devices. Diff:\n%s", i, diff)
|
2014-04-08 11:45:18 +00:00
|
|
|
}
|
2016-03-17 07:03:29 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(expectedDeviceIDs, cfg.Folders[0].DeviceIDs()); !equal {
|
2016-03-06 20:32:10 +00:00
|
|
|
t.Errorf("%d: Incorrect DeviceIDs. Diff:\n%s", i, diff)
|
2014-04-08 11:45:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-04 19:38:12 +00:00
|
|
|
func TestNoListenAddresses(t *testing.T) {
|
2014-09-28 11:00:38 +00:00
|
|
|
cfg, err := Load("testdata/nolistenaddress.xml", device1)
|
2014-03-04 21:17:28 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := []string{""}
|
2016-05-04 19:38:12 +00:00
|
|
|
actual := cfg.Options().ListenAddresses
|
2016-03-17 07:03:29 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(expected, actual); !equal {
|
2016-05-04 19:38:12 +00:00
|
|
|
t.Errorf("Unexpected ListenAddresses. Diff:\n%s", diff)
|
2014-03-04 21:17:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOverriddenValues(t *testing.T) {
|
|
|
|
expected := OptionsConfiguration{
|
2016-05-04 19:38:12 +00:00
|
|
|
ListenAddresses: []string{"tcp://:23000"},
|
2014-11-20 21:24:11 +00:00
|
|
|
GlobalAnnServers: []string{"udp4://syncthing.nym.se:22026"},
|
2014-11-16 23:18:59 +00:00
|
|
|
GlobalAnnEnabled: false,
|
|
|
|
LocalAnnEnabled: false,
|
|
|
|
LocalAnnPort: 42123,
|
|
|
|
LocalAnnMCAddr: "quux:3232",
|
|
|
|
MaxSendKbps: 1234,
|
|
|
|
MaxRecvKbps: 2341,
|
|
|
|
ReconnectIntervalS: 6000,
|
2016-05-17 00:05:38 +00:00
|
|
|
RelaysEnabled: false,
|
2015-06-28 20:09:03 +00:00
|
|
|
RelayReconnectIntervalM: 20,
|
2014-11-16 23:18:59 +00:00
|
|
|
StartBrowser: false,
|
2016-04-10 19:36:38 +00:00
|
|
|
NATEnabled: false,
|
|
|
|
NATLeaseM: 90,
|
|
|
|
NATRenewalM: 15,
|
|
|
|
NATTimeoutS: 15,
|
2014-11-16 23:18:59 +00:00
|
|
|
RestartOnWakeup: false,
|
|
|
|
AutoUpgradeIntervalH: 24,
|
|
|
|
KeepTemporariesH: 48,
|
2016-04-03 19:18:16 +00:00
|
|
|
CacheIgnoredFiles: true,
|
2014-11-16 23:18:59 +00:00
|
|
|
ProgressUpdateIntervalS: 10,
|
2014-12-01 10:26:54 +00:00
|
|
|
SymlinksEnabled: false,
|
2015-03-08 18:36:59 +00:00
|
|
|
LimitBandwidthInLan: true,
|
2015-09-05 07:43:07 +00:00
|
|
|
MinHomeDiskFreePct: 5.2,
|
2015-09-10 12:08:40 +00:00
|
|
|
URURL: "https://localhost/newdata",
|
|
|
|
URInitialDelayS: 800,
|
|
|
|
URPostInsecurely: true,
|
2015-09-10 12:16:44 +00:00
|
|
|
ReleasesURL: "https://localhost/releases",
|
2015-10-27 11:04:51 +00:00
|
|
|
AlwaysLocalNets: []string{},
|
2016-05-12 08:23:18 +00:00
|
|
|
OverwriteRemoteDevNames: true,
|
2016-04-15 10:59:41 +00:00
|
|
|
TempIndexMinBlocks: 100,
|
2014-03-04 21:17:28 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
cfg, err := Load("testdata/overridenvalues.xml", device1)
|
2014-03-04 21:17:28 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
2016-03-17 07:03:29 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(expected, cfg.Options()); !equal {
|
2016-03-06 20:32:10 +00:00
|
|
|
t.Errorf("Overridden config differs. Diff:\n%s", diff)
|
2014-03-04 21:17:28 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-22 09:46:08 +00:00
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
func TestDeviceAddressesDynamic(t *testing.T) {
|
2015-02-23 08:44:10 +00:00
|
|
|
name, _ := os.Hostname()
|
|
|
|
expected := map[protocol.DeviceID]DeviceConfiguration{
|
|
|
|
device1: {
|
|
|
|
DeviceID: device1,
|
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
},
|
|
|
|
device2: {
|
|
|
|
DeviceID: device2,
|
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
},
|
|
|
|
device3: {
|
|
|
|
DeviceID: device3,
|
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
},
|
|
|
|
device4: {
|
|
|
|
DeviceID: device4,
|
|
|
|
Name: name, // Set when auto created
|
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
Compression: protocol.CompressMetadata,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg, err := Load("testdata/deviceaddressesdynamic.xml", device4)
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
actual := cfg.Devices()
|
2016-03-17 07:03:29 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(expected, actual); !equal {
|
2016-03-06 20:32:10 +00:00
|
|
|
t.Errorf("Devices differ. Diff:\n%s", diff)
|
2015-02-23 08:44:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDeviceCompression(t *testing.T) {
|
2014-04-22 10:06:32 +00:00
|
|
|
name, _ := os.Hostname()
|
2014-10-06 07:25:45 +00:00
|
|
|
expected := map[protocol.DeviceID]DeviceConfiguration{
|
|
|
|
device1: {
|
2014-09-28 11:05:25 +00:00
|
|
|
DeviceID: device1,
|
2014-08-01 14:48:06 +00:00
|
|
|
Addresses: []string{"dynamic"},
|
2015-02-23 08:44:10 +00:00
|
|
|
Compression: protocol.CompressMetadata,
|
2014-04-22 09:46:08 +00:00
|
|
|
},
|
2014-10-06 07:25:45 +00:00
|
|
|
device2: {
|
2014-09-28 11:05:25 +00:00
|
|
|
DeviceID: device2,
|
2014-08-01 14:48:06 +00:00
|
|
|
Addresses: []string{"dynamic"},
|
2015-02-23 08:44:10 +00:00
|
|
|
Compression: protocol.CompressMetadata,
|
2014-04-22 09:46:08 +00:00
|
|
|
},
|
2014-10-06 07:25:45 +00:00
|
|
|
device3: {
|
2014-09-28 11:05:25 +00:00
|
|
|
DeviceID: device3,
|
2014-08-01 14:48:06 +00:00
|
|
|
Addresses: []string{"dynamic"},
|
2015-02-23 08:44:10 +00:00
|
|
|
Compression: protocol.CompressNever,
|
2014-04-22 09:46:08 +00:00
|
|
|
},
|
2014-10-06 07:25:45 +00:00
|
|
|
device4: {
|
2015-02-23 08:44:10 +00:00
|
|
|
DeviceID: device4,
|
|
|
|
Name: name, // Set when auto created
|
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
Compression: protocol.CompressMetadata,
|
2014-04-22 09:46:08 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-02-23 08:44:10 +00:00
|
|
|
cfg, err := Load("testdata/devicecompression.xml", device4)
|
2014-04-22 09:46:08 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
2014-10-06 07:25:45 +00:00
|
|
|
actual := cfg.Devices()
|
2016-03-17 07:03:29 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(expected, actual); !equal {
|
2016-03-06 20:32:10 +00:00
|
|
|
t.Errorf("Devices differ. Diff:\n%s", diff)
|
2014-04-22 09:46:08 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-24 11:23:17 +00:00
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
func TestDeviceAddressesStatic(t *testing.T) {
|
2014-07-24 11:23:17 +00:00
|
|
|
name, _ := os.Hostname()
|
2014-10-06 07:25:45 +00:00
|
|
|
expected := map[protocol.DeviceID]DeviceConfiguration{
|
|
|
|
device1: {
|
2014-09-28 11:05:25 +00:00
|
|
|
DeviceID: device1,
|
2015-06-23 12:55:30 +00:00
|
|
|
Addresses: []string{"tcp://192.0.2.1", "tcp://192.0.2.2"},
|
2014-07-24 11:23:17 +00:00
|
|
|
},
|
2014-10-06 07:25:45 +00:00
|
|
|
device2: {
|
2014-09-28 11:05:25 +00:00
|
|
|
DeviceID: device2,
|
2015-06-23 12:55:30 +00:00
|
|
|
Addresses: []string{"tcp://192.0.2.3:6070", "tcp://[2001:db8::42]:4242"},
|
2014-07-24 11:23:17 +00:00
|
|
|
},
|
2014-10-06 07:25:45 +00:00
|
|
|
device3: {
|
2014-09-28 11:05:25 +00:00
|
|
|
DeviceID: device3,
|
2015-06-23 12:55:30 +00:00
|
|
|
Addresses: []string{"tcp://[2001:db8::44]:4444", "tcp://192.0.2.4:6090"},
|
2014-07-24 11:23:17 +00:00
|
|
|
},
|
2014-10-06 07:25:45 +00:00
|
|
|
device4: {
|
2015-02-23 08:44:10 +00:00
|
|
|
DeviceID: device4,
|
|
|
|
Name: name, // Set when auto created
|
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
Compression: protocol.CompressMetadata,
|
2014-07-24 11:23:17 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
cfg, err := Load("testdata/deviceaddressesstatic.xml", device4)
|
2014-07-24 11:23:17 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
2014-10-06 07:25:45 +00:00
|
|
|
actual := cfg.Devices()
|
2016-03-17 07:03:29 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(expected, actual); !equal {
|
2016-03-06 20:32:10 +00:00
|
|
|
t.Errorf("Devices differ. Diff:\n%s", diff)
|
2014-07-24 11:23:17 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-31 12:13:55 +00:00
|
|
|
|
|
|
|
func TestVersioningConfig(t *testing.T) {
|
2014-09-28 11:00:38 +00:00
|
|
|
cfg, err := Load("testdata/versioningconfig.xml", device4)
|
2014-07-31 12:13:55 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
2014-10-06 07:25:45 +00:00
|
|
|
vc := cfg.Folders()["test"].Versioning
|
2014-07-31 12:13:55 +00:00
|
|
|
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",
|
|
|
|
}
|
2016-03-17 07:03:29 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(expected, vc.Params); !equal {
|
2016-03-06 20:32:10 +00:00
|
|
|
t.Errorf("vc.Params differ. Diff:\n%s", diff)
|
2014-07-31 12:13:55 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-06 14:50:06 +00:00
|
|
|
|
2015-01-22 23:34:22 +00:00
|
|
|
func TestIssue1262(t *testing.T) {
|
|
|
|
cfg, err := Load("testdata/issue-1262.xml", device4)
|
|
|
|
if err != nil {
|
2015-04-05 20:52:22 +00:00
|
|
|
t.Fatal(err)
|
2015-01-22 23:34:22 +00:00
|
|
|
}
|
|
|
|
|
2015-04-05 20:52:22 +00:00
|
|
|
actual := cfg.Folders()["test"].RawPath
|
2015-10-03 09:58:55 +00:00
|
|
|
expected := "e:/"
|
2015-01-22 23:34:22 +00:00
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
expected = `e:\`
|
|
|
|
}
|
|
|
|
|
|
|
|
if actual != expected {
|
|
|
|
t.Errorf("%q != %q", actual, expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-25 15:48:41 +00:00
|
|
|
func TestIssue1750(t *testing.T) {
|
|
|
|
cfg, err := Load("testdata/issue-1750.xml", device4)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2016-05-04 19:38:12 +00:00
|
|
|
if cfg.Options().ListenAddresses[0] != "tcp://:23000" {
|
|
|
|
t.Errorf("%q != %q", cfg.Options().ListenAddresses[0], "tcp://:23000")
|
2015-06-25 15:48:41 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 19:38:12 +00:00
|
|
|
if cfg.Options().ListenAddresses[1] != "tcp://:23001" {
|
|
|
|
t.Errorf("%q != %q", cfg.Options().ListenAddresses[1], "tcp://:23001")
|
2015-06-25 15:48:41 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 19:38:12 +00:00
|
|
|
if cfg.Options().GlobalAnnServers[0] != "udp4://syncthing.nym.se:22026/v2/" {
|
|
|
|
t.Errorf("%q != %q", cfg.Options().GlobalAnnServers[0], "udp4://syncthing.nym.se:22026/v2/")
|
2015-06-25 15:48:41 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 19:38:12 +00:00
|
|
|
if cfg.Options().GlobalAnnServers[1] != "udp4://syncthing.nym.se:22027/v2/" {
|
|
|
|
t.Errorf("%q != %q", cfg.Options().GlobalAnnServers[1], "udp4://syncthing.nym.se:22027/v2/")
|
2015-06-25 15:48:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-05 20:52:22 +00:00
|
|
|
func TestWindowsPaths(t *testing.T) {
|
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
t.Skip("Not useful on non-Windows")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
folder := FolderConfiguration{
|
|
|
|
RawPath: `e:\`,
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := `\\?\e:\`
|
|
|
|
actual := folder.Path()
|
|
|
|
if actual != expected {
|
|
|
|
t.Errorf("%q != %q", actual, expected)
|
|
|
|
}
|
|
|
|
|
|
|
|
folder.RawPath = `\\192.0.2.22\network\share`
|
|
|
|
expected = folder.RawPath
|
|
|
|
actual = folder.Path()
|
|
|
|
if actual != expected {
|
|
|
|
t.Errorf("%q != %q", actual, expected)
|
|
|
|
}
|
|
|
|
|
|
|
|
folder.RawPath = `relative\path`
|
|
|
|
expected = folder.RawPath
|
|
|
|
actual = folder.Path()
|
2015-04-16 20:18:17 +00:00
|
|
|
if actual == expected || !strings.HasPrefix(actual, "\\\\?\\") {
|
|
|
|
t.Errorf("%q == %q, expected absolutification", actual, expected)
|
2015-04-05 20:52:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFolderPath(t *testing.T) {
|
|
|
|
folder := FolderConfiguration{
|
|
|
|
RawPath: "~/tmp",
|
|
|
|
}
|
|
|
|
|
|
|
|
realPath := folder.Path()
|
|
|
|
if !filepath.IsAbs(realPath) {
|
|
|
|
t.Error(realPath, "should be absolute")
|
|
|
|
}
|
|
|
|
if strings.Contains(realPath, "~") {
|
|
|
|
t.Error(realPath, "should not contain ~")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-06 14:50:06 +00:00
|
|
|
func TestNewSaveLoad(t *testing.T) {
|
|
|
|
path := "testdata/temp.xml"
|
|
|
|
os.Remove(path)
|
|
|
|
|
|
|
|
exists := func(path string) bool {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
2014-10-06 07:25:45 +00:00
|
|
|
intCfg := New(device1)
|
|
|
|
cfg := Wrap(path, intCfg)
|
2014-09-06 14:50:06 +00:00
|
|
|
|
|
|
|
// To make the equality pass later
|
2014-10-06 07:25:45 +00:00
|
|
|
cfg.cfg.XMLName.Local = "configuration"
|
2014-09-06 14:50:06 +00:00
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
cfg2, err := Load(path, device1)
|
2014-09-06 14:50:06 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
2016-03-06 20:32:10 +00:00
|
|
|
if diff, equal := messagediff.PrettyDiff(cfg.Raw(), cfg2.Raw()); !equal {
|
|
|
|
t.Errorf("Configs are not equal. Diff:\n%s", diff)
|
2014-09-06 14:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
os.Remove(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrepare(t *testing.T) {
|
|
|
|
var cfg Configuration
|
|
|
|
|
2016-05-04 19:38:12 +00:00
|
|
|
if cfg.Folders != nil || cfg.Devices != nil || cfg.Options.ListenAddresses != nil {
|
2014-09-06 14:50:06 +00:00
|
|
|
t.Error("Expected nil")
|
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
cfg.prepare(device1)
|
2014-09-06 14:50:06 +00:00
|
|
|
|
2016-05-04 19:38:12 +00:00
|
|
|
if cfg.Folders == nil || cfg.Devices == nil || cfg.Options.ListenAddresses == nil {
|
2014-09-06 14:50:06 +00:00
|
|
|
t.Error("Unexpected nil")
|
|
|
|
}
|
|
|
|
}
|
2014-10-07 08:46:33 +00:00
|
|
|
|
2015-04-05 15:36:52 +00:00
|
|
|
func TestCopy(t *testing.T) {
|
|
|
|
wrapper, err := Load("testdata/example.xml", device1)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
cfg := wrapper.Raw()
|
|
|
|
|
|
|
|
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}
|
2016-05-04 19:38:12 +00:00
|
|
|
cfg.Options.ListenAddresses[0] = "wrong"
|
2016-02-02 10:12:25 +00:00
|
|
|
cfg.GUI.APIKey = "wrong"
|
2015-04-05 15:36:52 +00:00
|
|
|
|
|
|
|
bsChanged, err := json.MarshalIndent(cfg, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
bsCopy, err := json.MarshalIndent(copy, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2016-03-31 15:12:46 +00:00
|
|
|
if bytes.Equal(bsOrig, bsChanged) {
|
2015-04-05 15:36:52 +00:00
|
|
|
t.Error("Config should have changed")
|
|
|
|
}
|
2016-03-31 15:12:46 +00:00
|
|
|
if !bytes.Equal(bsOrig, bsCopy) {
|
2015-04-05 15:36:52 +00:00
|
|
|
//ioutil.WriteFile("a", bsOrig, 0644)
|
|
|
|
//ioutil.WriteFile("b", bsCopy, 0644)
|
|
|
|
t.Error("Copy should be unchanged")
|
|
|
|
}
|
|
|
|
}
|
2015-04-25 05:13:53 +00:00
|
|
|
|
|
|
|
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.Raw()
|
|
|
|
cfg.WriteXML(buf)
|
|
|
|
|
|
|
|
t.Logf("%s", buf.Bytes())
|
|
|
|
|
|
|
|
cfg, err = ReadXML(buf, device1)
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-06-20 18:21:05 +00:00
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|
2015-10-12 13:27:57 +00:00
|
|
|
|
|
|
|
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])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-31 08:17:17 +00:00
|
|
|
|
|
|
|
func TestRemoveDuplicateDevicesFolders(t *testing.T) {
|
|
|
|
wrapper, err := Load("testdata/duplicates.xml", device1)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// All folders are loaded, but the duplicate ones are disabled.
|
|
|
|
if l := len(wrapper.Raw().Folders); l != 3 {
|
|
|
|
t.Errorf("Incorrect number of folders, %d != 3", l)
|
|
|
|
}
|
|
|
|
for i, f := range wrapper.Raw().Folders {
|
|
|
|
if f.ID == "f1" && f.Invalid == "" {
|
|
|
|
t.Errorf("Folder %d (%q) is not set invalid", i, f.ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if l := len(wrapper.Raw().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)
|
|
|
|
}
|
|
|
|
}
|
2016-05-17 00:05:38 +00:00
|
|
|
|
|
|
|
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"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tcs {
|
|
|
|
cfg := Configuration{
|
|
|
|
Version: 13,
|
|
|
|
Options: OptionsConfiguration{
|
|
|
|
ListenAddresses: tc[0],
|
|
|
|
DeprecatedRelayServers: tc[1],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
convertV13V14(&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])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|