2014-07-12 22:45:33 +00:00
|
|
|
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
|
|
|
|
// All rights reserved. Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
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 (
|
2014-04-22 10:06:32 +00:00
|
|
|
"os"
|
2014-03-04 21:17:28 +00:00
|
|
|
"reflect"
|
|
|
|
"testing"
|
2014-06-07 03:10:15 +00:00
|
|
|
|
2014-08-01 14:35:37 +00:00
|
|
|
"github.com/syncthing/syncthing/protocol"
|
2014-03-04 21:17:28 +00:00
|
|
|
)
|
|
|
|
|
2014-06-29 23:42:03 +00:00
|
|
|
var node1, node2, node3, node4 protocol.NodeID
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
node1, _ = protocol.NodeIDFromString("AIR6LPZ7K4PTTUXQSMUUCPQ5YWOEDFIIQJUG7772YQXXR5YD6AWQ")
|
|
|
|
node2, _ = protocol.NodeIDFromString("GYRZZQB-IRNPV4Z-T7TC52W-EQYJ3TT-FDQW6MW-DFLMU42-SSSU6EM-FBK2VAY")
|
|
|
|
node3, _ = protocol.NodeIDFromString("LGFPDIT-7SKNNJL-VJZA4FC-7QNCRKA-CE753K7-2BW5QDK-2FOZ7FR-FEP57QJ")
|
|
|
|
node4, _ = protocol.NodeIDFromString("P56IOI7-MZJNU2Y-IQGDREY-DM2MGTI-MGL3BXN-PQ6W5BM-TBBZ4TJ-XZWICQ2")
|
|
|
|
}
|
|
|
|
|
2014-03-04 21:17:28 +00:00
|
|
|
func TestDefaultValues(t *testing.T) {
|
|
|
|
expected := OptionsConfiguration{
|
2014-05-14 15:43:49 +00:00
|
|
|
ListenAddress: []string{"0.0.0.0:22000"},
|
2014-07-13 19:07:04 +00:00
|
|
|
GlobalAnnServer: "announce.syncthing.net:22026",
|
2014-03-04 21:17:28 +00:00
|
|
|
GlobalAnnEnabled: true,
|
|
|
|
LocalAnnEnabled: true,
|
2014-05-22 07:35:54 +00:00
|
|
|
LocalAnnPort: 21025,
|
2014-08-17 13:01:48 +00:00
|
|
|
LocalAnnMCAddr: "[ff32::5222]:21026",
|
2014-03-04 21:17:28 +00:00
|
|
|
ParallelRequests: 16,
|
|
|
|
MaxSendKbps: 0,
|
|
|
|
ReconnectIntervalS: 60,
|
2014-03-08 22:19:33 +00:00
|
|
|
StartBrowser: true,
|
2014-04-18 11:39:51 +00:00
|
|
|
UPnPEnabled: true,
|
2014-08-14 10:59:09 +00:00
|
|
|
UPnPLease: 0,
|
|
|
|
UPnPRenewal: 30,
|
2014-03-04 21:17:28 +00:00
|
|
|
}
|
|
|
|
|
2014-09-06 12:54:49 +00:00
|
|
|
cfg := New("test", node1)
|
2014-03-04 21:17:28 +00:00
|
|
|
|
|
|
|
if !reflect.DeepEqual(cfg.Options, expected) {
|
|
|
|
t.Errorf("Default config differs;\n E: %#v\n A: %#v", expected, cfg.Options)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-08 11:45:18 +00:00
|
|
|
func TestNodeConfig(t *testing.T) {
|
2014-09-06 12:54:49 +00:00
|
|
|
for i, ver := range []string{"v1", "v2", "v3", "v4"} {
|
|
|
|
cfg, err := Load("testdata/"+ver+".xml", node1)
|
2014-04-08 11:45:18 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedRepos := []RepositoryConfiguration{
|
|
|
|
{
|
2014-08-18 21:05:47 +00:00
|
|
|
ID: "test",
|
|
|
|
Directory: "~/Sync",
|
|
|
|
Nodes: []RepositoryNodeConfiguration{{NodeID: node1}, {NodeID: node4}},
|
|
|
|
ReadOnly: true,
|
|
|
|
RescanIntervalS: 600,
|
2014-04-08 11:45:18 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
expectedNodes := []NodeConfiguration{
|
|
|
|
{
|
2014-08-01 14:48:06 +00:00
|
|
|
NodeID: node1,
|
|
|
|
Name: "node one",
|
|
|
|
Addresses: []string{"a"},
|
|
|
|
Compression: true,
|
2014-04-08 11:45:18 +00:00
|
|
|
},
|
|
|
|
{
|
2014-08-01 14:48:06 +00:00
|
|
|
NodeID: node4,
|
|
|
|
Name: "node two",
|
|
|
|
Addresses: []string{"b"},
|
|
|
|
Compression: true,
|
2014-04-08 11:45:18 +00:00
|
|
|
},
|
|
|
|
}
|
2014-06-29 23:42:03 +00:00
|
|
|
expectedNodeIDs := []protocol.NodeID{node1, node4}
|
2014-04-08 11:45:18 +00:00
|
|
|
|
2014-08-16 22:20:21 +00:00
|
|
|
if cfg.Version != 4 {
|
2014-08-01 14:48:06 +00:00
|
|
|
t.Errorf("%d: Incorrect version %d != 3", i, cfg.Version)
|
2014-04-08 11:45:18 +00:00
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(cfg.Repositories, expectedRepos) {
|
|
|
|
t.Errorf("%d: Incorrect Repositories\n A: %#v\n E: %#v", i, cfg.Repositories, expectedRepos)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(cfg.Nodes, expectedNodes) {
|
|
|
|
t.Errorf("%d: Incorrect Nodes\n A: %#v\n E: %#v", i, cfg.Nodes, expectedNodes)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(cfg.Repositories[0].NodeIDs(), expectedNodeIDs) {
|
|
|
|
t.Errorf("%d: Incorrect NodeIDs\n A: %#v\n E: %#v", i, cfg.Repositories[0].NodeIDs(), expectedNodeIDs)
|
|
|
|
}
|
2014-07-31 12:13:55 +00:00
|
|
|
|
|
|
|
if len(cfg.NodeMap()) != len(expectedNodes) {
|
|
|
|
t.Errorf("Unexpected number of NodeMap() entries")
|
|
|
|
}
|
|
|
|
if len(cfg.RepoMap()) != len(expectedRepos) {
|
|
|
|
t.Errorf("Unexpected number of RepoMap() entries")
|
|
|
|
}
|
2014-04-08 11:45:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-04 21:17:28 +00:00
|
|
|
func TestNoListenAddress(t *testing.T) {
|
2014-09-06 12:54:49 +00:00
|
|
|
cfg, err := Load("testdata/nolistenaddress.xml", node1)
|
2014-03-04 21:17:28 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := []string{""}
|
|
|
|
if !reflect.DeepEqual(cfg.Options.ListenAddress, expected) {
|
|
|
|
t.Errorf("Unexpected ListenAddress %#v", cfg.Options.ListenAddress)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOverriddenValues(t *testing.T) {
|
|
|
|
expected := OptionsConfiguration{
|
|
|
|
ListenAddress: []string{":23000"},
|
2014-07-13 19:07:04 +00:00
|
|
|
GlobalAnnServer: "syncthing.nym.se:22026",
|
2014-03-04 21:17:28 +00:00
|
|
|
GlobalAnnEnabled: false,
|
|
|
|
LocalAnnEnabled: false,
|
2014-05-22 07:35:54 +00:00
|
|
|
LocalAnnPort: 42123,
|
2014-08-17 13:01:48 +00:00
|
|
|
LocalAnnMCAddr: "quux:3232",
|
2014-03-04 21:17:28 +00:00
|
|
|
ParallelRequests: 32,
|
|
|
|
MaxSendKbps: 1234,
|
|
|
|
ReconnectIntervalS: 6000,
|
2014-03-08 22:19:33 +00:00
|
|
|
StartBrowser: false,
|
2014-04-18 11:39:51 +00:00
|
|
|
UPnPEnabled: false,
|
2014-08-14 10:59:09 +00:00
|
|
|
UPnPLease: 60,
|
|
|
|
UPnPRenewal: 15,
|
2014-03-04 21:17:28 +00:00
|
|
|
}
|
|
|
|
|
2014-09-06 12:54:49 +00:00
|
|
|
cfg, err := Load("testdata/overridenvalues.xml", node1)
|
2014-03-04 21:17:28 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(cfg.Options, expected) {
|
|
|
|
t.Errorf("Overridden config differs;\n E: %#v\n A: %#v", expected, cfg.Options)
|
|
|
|
}
|
|
|
|
}
|
2014-04-22 09:46:08 +00:00
|
|
|
|
2014-07-24 11:23:17 +00:00
|
|
|
func TestNodeAddressesDynamic(t *testing.T) {
|
2014-04-22 10:06:32 +00:00
|
|
|
name, _ := os.Hostname()
|
2014-04-22 09:46:08 +00:00
|
|
|
expected := []NodeConfiguration{
|
|
|
|
{
|
2014-08-01 14:48:06 +00:00
|
|
|
NodeID: node1,
|
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
Compression: true,
|
2014-04-22 09:46:08 +00:00
|
|
|
},
|
|
|
|
{
|
2014-08-01 14:48:06 +00:00
|
|
|
NodeID: node2,
|
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
Compression: true,
|
2014-04-22 09:46:08 +00:00
|
|
|
},
|
|
|
|
{
|
2014-08-01 14:48:06 +00:00
|
|
|
NodeID: node3,
|
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
Compression: true,
|
2014-04-22 09:46:08 +00:00
|
|
|
},
|
|
|
|
{
|
2014-06-29 23:42:03 +00:00
|
|
|
NodeID: node4,
|
2014-04-22 10:06:32 +00:00
|
|
|
Name: name, // Set when auto created
|
2014-04-22 09:46:08 +00:00
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2014-09-06 12:54:49 +00:00
|
|
|
cfg, err := Load("testdata/nodeaddressesdynamic.xml", node4)
|
2014-04-22 09:46:08 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(cfg.Nodes, expected) {
|
|
|
|
t.Errorf("Nodes differ;\n E: %#v\n A: %#v", expected, cfg.Nodes)
|
|
|
|
}
|
|
|
|
}
|
2014-07-24 11:23:17 +00:00
|
|
|
|
|
|
|
func TestNodeAddressesStatic(t *testing.T) {
|
|
|
|
name, _ := os.Hostname()
|
|
|
|
expected := []NodeConfiguration{
|
|
|
|
{
|
|
|
|
NodeID: node1,
|
|
|
|
Addresses: []string{"192.0.2.1", "192.0.2.2"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
NodeID: node2,
|
|
|
|
Addresses: []string{"192.0.2.3:6070", "[2001:db8::42]:4242"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
NodeID: node3,
|
|
|
|
Addresses: []string{"[2001:db8::44]:4444", "192.0.2.4:6090"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
NodeID: node4,
|
|
|
|
Name: name, // Set when auto created
|
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2014-09-06 12:54:49 +00:00
|
|
|
cfg, err := Load("testdata/nodeaddressesstatic.xml", node4)
|
2014-07-24 11:23:17 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(cfg.Nodes, expected) {
|
|
|
|
t.Errorf("Nodes differ;\n E: %#v\n A: %#v", expected, cfg.Nodes)
|
|
|
|
}
|
|
|
|
}
|
2014-07-31 12:13:55 +00:00
|
|
|
|
|
|
|
func TestVersioningConfig(t *testing.T) {
|
2014-09-06 12:54:49 +00:00
|
|
|
cfg, err := Load("testdata/versioningconfig.xml", node4)
|
2014-07-31 12:13:55 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
vc := cfg.Repositories[0].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 !reflect.DeepEqual(vc.Params, expected) {
|
|
|
|
t.Errorf("vc.Params differ;\n E: %#v\n A: %#v", expected, vc.Params)
|
|
|
|
}
|
|
|
|
}
|