// 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 syncthing import ( "testing" "github.com/syncthing/syncthing/lib/config" "github.com/syncthing/syncthing/lib/protocol" ) func TestShortIDCheck(t *testing.T) { cfg := config.Wrap("/tmp/test", config.Configuration{ Devices: []config.DeviceConfiguration{ {DeviceID: protocol.DeviceID{8, 16, 24, 32, 40, 48, 56, 0, 0}}, {DeviceID: protocol.DeviceID{8, 16, 24, 32, 40, 48, 56, 1, 1}}, // first 56 bits same, differ in the first 64 bits }, }) if err := checkShortIDs(cfg); err != nil { t.Error("Unexpected error:", err) } cfg = config.Wrap("/tmp/test", config.Configuration{ Devices: []config.DeviceConfiguration{ {DeviceID: protocol.DeviceID{8, 16, 24, 32, 40, 48, 56, 64, 0}}, {DeviceID: protocol.DeviceID{8, 16, 24, 32, 40, 48, 56, 64, 1}}, // first 64 bits same }, }) if err := checkShortIDs(cfg); err == nil { t.Error("Should have gotten an error") } }