mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-08 22:31:04 +00:00
138 lines
2.6 KiB
Go
138 lines
2.6 KiB
Go
// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
|
|
// Use of this source code is governed by an MIT-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
package model
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/calmh/syncthing/protocol"
|
|
)
|
|
|
|
var testcases = []struct {
|
|
local, remote protocol.ClusterConfigMessage
|
|
err string
|
|
}{
|
|
{
|
|
local: protocol.ClusterConfigMessage{},
|
|
remote: protocol.ClusterConfigMessage{},
|
|
err: "",
|
|
},
|
|
{
|
|
local: protocol.ClusterConfigMessage{ClientName: "a", ClientVersion: "b"},
|
|
remote: protocol.ClusterConfigMessage{ClientName: "c", ClientVersion: "d"},
|
|
err: "",
|
|
},
|
|
{
|
|
local: protocol.ClusterConfigMessage{
|
|
Repositories: []protocol.Repository{
|
|
{ID: "foo"},
|
|
{ID: "bar"},
|
|
},
|
|
},
|
|
remote: protocol.ClusterConfigMessage{
|
|
Repositories: []protocol.Repository{
|
|
{ID: "foo"},
|
|
{ID: "bar"},
|
|
},
|
|
},
|
|
err: "",
|
|
},
|
|
{
|
|
local: protocol.ClusterConfigMessage{
|
|
Repositories: []protocol.Repository{
|
|
{
|
|
ID: "foo",
|
|
Nodes: []protocol.Node{
|
|
{ID: "a"},
|
|
},
|
|
},
|
|
{ID: "bar"},
|
|
},
|
|
},
|
|
remote: protocol.ClusterConfigMessage{
|
|
Repositories: []protocol.Repository{
|
|
{ID: "foo"},
|
|
{ID: "bar"},
|
|
},
|
|
},
|
|
err: "",
|
|
},
|
|
|
|
{
|
|
local: protocol.ClusterConfigMessage{
|
|
Repositories: []protocol.Repository{
|
|
{
|
|
ID: "foo",
|
|
Nodes: []protocol.Node{
|
|
{ID: "a"},
|
|
},
|
|
},
|
|
{ID: "bar"},
|
|
},
|
|
},
|
|
remote: protocol.ClusterConfigMessage{
|
|
Repositories: []protocol.Repository{
|
|
{
|
|
ID: "foo",
|
|
Nodes: []protocol.Node{
|
|
{ID: "a"},
|
|
{ID: "b"},
|
|
},
|
|
},
|
|
{ID: "bar"},
|
|
},
|
|
},
|
|
err: "",
|
|
},
|
|
|
|
{
|
|
local: protocol.ClusterConfigMessage{
|
|
Repositories: []protocol.Repository{
|
|
{
|
|
ID: "foo",
|
|
Nodes: []protocol.Node{
|
|
{
|
|
ID: "a",
|
|
Flags: protocol.FlagShareReadOnly,
|
|
},
|
|
},
|
|
},
|
|
{ID: "bar"},
|
|
},
|
|
},
|
|
remote: protocol.ClusterConfigMessage{
|
|
Repositories: []protocol.Repository{
|
|
{
|
|
ID: "foo",
|
|
Nodes: []protocol.Node{
|
|
{
|
|
ID: "a",
|
|
Flags: protocol.FlagShareTrusted,
|
|
},
|
|
},
|
|
},
|
|
{ID: "bar"},
|
|
},
|
|
},
|
|
err: `remote has different sharing flags for node "a" in repository "foo"`,
|
|
},
|
|
}
|
|
|
|
func TestCompareClusterConfig(t *testing.T) {
|
|
for i, tc := range testcases {
|
|
err := compareClusterConfig(tc.local, tc.remote)
|
|
switch {
|
|
case tc.err == "" && err != nil:
|
|
t.Errorf("#%d: unexpected error: %v", i, err)
|
|
|
|
case tc.err != "" && err == nil:
|
|
t.Errorf("#%d: unexpected nil error", i)
|
|
|
|
case tc.err != "" && err != nil && tc.err != err.Error():
|
|
t.Errorf("#%d: incorrect error: %q != %q", i, err, tc.err)
|
|
}
|
|
}
|
|
}
|