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 (
|
|
|
|
"bytes"
|
|
|
|
"io"
|
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
|
|
|
|
|
|
|
"github.com/calmh/syncthing/files"
|
2014-06-29 23:42:03 +00:00
|
|
|
"github.com/calmh/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-03-04 21:17:28 +00:00
|
|
|
ParallelRequests: 16,
|
|
|
|
MaxSendKbps: 0,
|
|
|
|
RescanIntervalS: 60,
|
|
|
|
ReconnectIntervalS: 60,
|
2014-05-15 03:47:11 +00:00
|
|
|
MaxChangeKbps: 10000,
|
2014-03-08 22:19:33 +00:00
|
|
|
StartBrowser: true,
|
2014-04-18 11:39:51 +00:00
|
|
|
UPnPEnabled: true,
|
2014-03-04 21:17:28 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 23:42:03 +00:00
|
|
|
cfg, err := Load(bytes.NewReader(nil), node1)
|
2014-03-04 21:17:28 +00:00
|
|
|
if err != io.EOF {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
v1data := []byte(`
|
|
|
|
<configuration version="1">
|
|
|
|
<repository id="test" directory="~/Sync">
|
2014-06-29 23:42:03 +00:00
|
|
|
<node id="AIR6LPZ7K4PTTUXQSMUUCPQ5YWOEDFIIQJUG7772YQXXR5YD6AWQ" name="node one">
|
2014-04-08 11:45:18 +00:00
|
|
|
<address>a</address>
|
|
|
|
</node>
|
2014-06-29 23:42:03 +00:00
|
|
|
<node id="P56IOI7MZJNU2IQGDREYDM2MGTMGL3BXNPQ6W5BTBBZ4TJXZWICQ" name="node two">
|
2014-04-08 11:45:18 +00:00
|
|
|
<address>b</address>
|
|
|
|
</node>
|
|
|
|
</repository>
|
|
|
|
<options>
|
|
|
|
<readOnly>true</readOnly>
|
|
|
|
</options>
|
|
|
|
</configuration>
|
|
|
|
`)
|
|
|
|
|
|
|
|
v2data := []byte(`
|
|
|
|
<configuration version="2">
|
|
|
|
<repository id="test" directory="~/Sync" ro="true">
|
2014-06-29 23:42:03 +00:00
|
|
|
<node id="AIR6LPZ7K4PTTUXQSMUUCPQ5YWOEDFIIQJUG7772YQXXR5YD6AWQ"/>
|
|
|
|
<node id="P56IOI7MZJNU2IQGDREYDM2MGTMGL3BXNPQ6W5BTBBZ4TJXZWICQ"/>
|
2014-04-08 11:45:18 +00:00
|
|
|
</repository>
|
2014-06-29 23:42:03 +00:00
|
|
|
<node id="AIR6LPZ7K4PTTUXQSMUUCPQ5YWOEDFIIQJUG7772YQXXR5YD6AWQ" name="node one">
|
2014-04-08 11:45:18 +00:00
|
|
|
<address>a</address>
|
|
|
|
</node>
|
2014-06-29 23:42:03 +00:00
|
|
|
<node id="P56IOI7MZJNU2IQGDREYDM2MGTMGL3BXNPQ6W5BTBBZ4TJXZWICQ" name="node two">
|
2014-04-08 11:45:18 +00:00
|
|
|
<address>b</address>
|
|
|
|
</node>
|
|
|
|
</configuration>
|
|
|
|
`)
|
|
|
|
|
|
|
|
for i, data := range [][]byte{v1data, v2data} {
|
2014-06-29 23:42:03 +00:00
|
|
|
cfg, err := Load(bytes.NewReader(data), node1)
|
2014-04-08 11:45:18 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedRepos := []RepositoryConfiguration{
|
|
|
|
{
|
|
|
|
ID: "test",
|
|
|
|
Directory: "~/Sync",
|
2014-06-29 23:42:03 +00:00
|
|
|
Nodes: []NodeConfiguration{{NodeID: node1}, {NodeID: node4}},
|
2014-04-08 11:45:18 +00:00
|
|
|
ReadOnly: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
expectedNodes := []NodeConfiguration{
|
|
|
|
{
|
2014-06-29 23:42:03 +00:00
|
|
|
NodeID: node1,
|
2014-04-08 11:45:18 +00:00
|
|
|
Name: "node one",
|
|
|
|
Addresses: []string{"a"},
|
|
|
|
},
|
|
|
|
{
|
2014-06-29 23:42:03 +00:00
|
|
|
NodeID: node4,
|
2014-04-08 11:45:18 +00:00
|
|
|
Name: "node two",
|
|
|
|
Addresses: []string{"b"},
|
|
|
|
},
|
|
|
|
}
|
2014-06-29 23:42:03 +00:00
|
|
|
expectedNodeIDs := []protocol.NodeID{node1, node4}
|
2014-04-08 11:45:18 +00:00
|
|
|
|
|
|
|
if cfg.Version != 2 {
|
|
|
|
t.Errorf("%d: Incorrect version %d != 2", i, cfg.Version)
|
|
|
|
}
|
|
|
|
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-03-04 21:17:28 +00:00
|
|
|
func TestNoListenAddress(t *testing.T) {
|
|
|
|
data := []byte(`<configuration version="1">
|
|
|
|
<options>
|
|
|
|
<listenAddress></listenAddress>
|
|
|
|
</options>
|
|
|
|
</configuration>
|
|
|
|
`)
|
|
|
|
|
2014-06-29 23:42:03 +00:00
|
|
|
cfg, err := Load(bytes.NewReader(data), 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) {
|
2014-04-08 11:45:18 +00:00
|
|
|
data := []byte(`<configuration version="2">
|
2014-03-04 21:17:28 +00:00
|
|
|
<options>
|
|
|
|
<listenAddress>:23000</listenAddress>
|
|
|
|
<allowDelete>false</allowDelete>
|
2014-07-13 19:07:04 +00:00
|
|
|
<globalAnnounceServer>syncthing.nym.se:22026</globalAnnounceServer>
|
2014-03-04 21:17:28 +00:00
|
|
|
<globalAnnounceEnabled>false</globalAnnounceEnabled>
|
|
|
|
<localAnnounceEnabled>false</localAnnounceEnabled>
|
2014-05-22 07:35:54 +00:00
|
|
|
<localAnnouncePort>42123</localAnnouncePort>
|
2014-03-04 21:17:28 +00:00
|
|
|
<parallelRequests>32</parallelRequests>
|
|
|
|
<maxSendKbps>1234</maxSendKbps>
|
|
|
|
<rescanIntervalS>600</rescanIntervalS>
|
|
|
|
<reconnectionIntervalS>6000</reconnectionIntervalS>
|
|
|
|
<maxChangeKbps>2345</maxChangeKbps>
|
2014-03-08 22:19:33 +00:00
|
|
|
<startBrowser>false</startBrowser>
|
2014-04-18 11:39:51 +00:00
|
|
|
<upnpEnabled>false</upnpEnabled>
|
2014-03-04 21:17:28 +00:00
|
|
|
</options>
|
|
|
|
</configuration>
|
|
|
|
`)
|
|
|
|
|
|
|
|
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-03-04 21:17:28 +00:00
|
|
|
ParallelRequests: 32,
|
|
|
|
MaxSendKbps: 1234,
|
|
|
|
RescanIntervalS: 600,
|
|
|
|
ReconnectIntervalS: 6000,
|
|
|
|
MaxChangeKbps: 2345,
|
2014-03-08 22:19:33 +00:00
|
|
|
StartBrowser: false,
|
2014-04-18 11:39:51 +00:00
|
|
|
UPnPEnabled: false,
|
2014-03-04 21:17:28 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 23:42:03 +00:00
|
|
|
cfg, err := Load(bytes.NewReader(data), 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
|
|
|
|
|
|
|
func TestNodeAddresses(t *testing.T) {
|
|
|
|
data := []byte(`
|
|
|
|
<configuration version="2">
|
2014-06-29 23:42:03 +00:00
|
|
|
<node id="AIR6LPZ7K4PTTUXQSMUUCPQ5YWOEDFIIQJUG7772YQXXR5YD6AWQ">
|
2014-04-22 09:46:08 +00:00
|
|
|
<address></address>
|
|
|
|
</node>
|
2014-06-29 23:42:03 +00:00
|
|
|
<node id="GYRZZQBIRNPV4T7TC52WEQYJ3TFDQW6MWDFLMU4SSSU6EMFBK2VA">
|
|
|
|
</node>
|
|
|
|
<node id="LGFPDIT7SKNNJVJZA4FC7QNCRKCE753K72BW5QD2FOZ7FRFEP57Q">
|
|
|
|
<address>dynamic</address>
|
2014-04-22 09:46:08 +00:00
|
|
|
</node>
|
|
|
|
</configuration>
|
|
|
|
`)
|
|
|
|
|
2014-04-22 10:06:32 +00:00
|
|
|
name, _ := os.Hostname()
|
2014-04-22 09:46:08 +00:00
|
|
|
expected := []NodeConfiguration{
|
|
|
|
{
|
2014-06-29 23:42:03 +00:00
|
|
|
NodeID: node1,
|
2014-04-22 09:46:08 +00:00
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
},
|
|
|
|
{
|
2014-06-29 23:42:03 +00:00
|
|
|
NodeID: node2,
|
2014-04-22 09:46:08 +00:00
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
},
|
|
|
|
{
|
2014-06-29 23:42:03 +00:00
|
|
|
NodeID: node3,
|
2014-04-22 09:46:08 +00:00
|
|
|
Addresses: []string{"dynamic"},
|
|
|
|
},
|
|
|
|
{
|
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-06-29 23:42:03 +00:00
|
|
|
cfg, err := Load(bytes.NewReader(data), 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-05-18 10:05:17 +00:00
|
|
|
|
2014-06-07 03:10:15 +00:00
|
|
|
func TestSyncOrders(t *testing.T) {
|
|
|
|
data := []byte(`
|
|
|
|
<configuration version="2">
|
|
|
|
<repository directory="~/Sync">
|
|
|
|
<syncorder>
|
|
|
|
<pattern pattern="\.jpg$" priority="1" />
|
|
|
|
</syncorder>
|
|
|
|
</repository>
|
|
|
|
</configuration>
|
|
|
|
`)
|
|
|
|
|
|
|
|
expected := []SyncOrderPattern{
|
|
|
|
{
|
2014-06-29 23:42:03 +00:00
|
|
|
Pattern: "\\.jpg$",
|
|
|
|
Priority: 1,
|
2014-06-07 03:10:15 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2014-06-29 23:42:03 +00:00
|
|
|
cfg, err := Load(bytes.NewReader(data), node1)
|
2014-06-07 03:10:15 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := range expected {
|
|
|
|
if !reflect.DeepEqual(cfg.Repositories[0].SyncOrderPatterns[i], expected[i]) {
|
2014-06-29 23:42:03 +00:00
|
|
|
t.Errorf("Patterns[%d] differ;\n E: %#v\n A: %#v", i, expected[i], cfg.Repositories[0].SyncOrderPatterns[i])
|
2014-06-07 03:10:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFileSorter(t *testing.T) {
|
|
|
|
rcfg := RepositoryConfiguration{
|
|
|
|
SyncOrderPatterns: []SyncOrderPattern{
|
|
|
|
{"\\.jpg$", 10, nil},
|
|
|
|
{"\\.mov$", 5, nil},
|
|
|
|
{"^camera-uploads", 100, nil},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2014-07-12 21:06:48 +00:00
|
|
|
f := []protocol.FileInfo{
|
2014-06-07 03:10:15 +00:00
|
|
|
{Name: "bar.mov"},
|
|
|
|
{Name: "baz.txt"},
|
|
|
|
{Name: "foo.jpg"},
|
|
|
|
{Name: "frew/foo.jpg"},
|
|
|
|
{Name: "frew/lol.go"},
|
|
|
|
{Name: "frew/rofl.copter"},
|
|
|
|
{Name: "frew/bar.mov"},
|
|
|
|
{Name: "camera-uploads/foo.jpg"},
|
|
|
|
{Name: "camera-uploads/hurr.pl"},
|
|
|
|
{Name: "camera-uploads/herp.mov"},
|
|
|
|
{Name: "camera-uploads/wee.txt"},
|
|
|
|
}
|
|
|
|
|
|
|
|
files.SortBy(rcfg.FileRanker()).Sort(f)
|
|
|
|
|
2014-07-12 21:06:48 +00:00
|
|
|
expected := []protocol.FileInfo{
|
2014-06-07 03:10:15 +00:00
|
|
|
{Name: "camera-uploads/foo.jpg"},
|
|
|
|
{Name: "camera-uploads/herp.mov"},
|
|
|
|
{Name: "camera-uploads/hurr.pl"},
|
|
|
|
{Name: "camera-uploads/wee.txt"},
|
|
|
|
{Name: "foo.jpg"},
|
|
|
|
{Name: "frew/foo.jpg"},
|
|
|
|
{Name: "bar.mov"},
|
|
|
|
{Name: "frew/bar.mov"},
|
|
|
|
{Name: "frew/lol.go"},
|
|
|
|
{Name: "baz.txt"},
|
|
|
|
{Name: "frew/rofl.copter"},
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(f, expected) {
|
|
|
|
t.Errorf(
|
|
|
|
"\n\nexpected:\n" +
|
2014-06-29 23:42:03 +00:00
|
|
|
formatFiles(expected) + "\n" +
|
|
|
|
"got:\n" +
|
|
|
|
formatFiles(f) + "\n\n",
|
2014-06-07 03:10:15 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-12 21:06:48 +00:00
|
|
|
func formatFiles(f []protocol.FileInfo) string {
|
2014-06-07 03:10:15 +00:00
|
|
|
ret := ""
|
|
|
|
|
|
|
|
for _, v := range f {
|
|
|
|
ret += " " + v.Name + "\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret
|
|
|
|
}
|