mirror of
https://github.com/octoleo/syncthing.git
synced 2025-02-02 11:58:28 +00:00
8f3effed32
New node ID:s contain four Luhn check digits and are grouped differently. Code uses NodeID type instead of string, so it's formatted homogenously everywhere.
39 lines
844 B
Go
39 lines
844 B
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 cid
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/calmh/syncthing/protocol"
|
|
)
|
|
|
|
func TestGet(t *testing.T) {
|
|
m := NewMap()
|
|
|
|
fooID := protocol.NewNodeID([]byte("foo"))
|
|
barID := protocol.NewNodeID([]byte("bar"))
|
|
|
|
if i := m.Get(fooID); i != 1 {
|
|
t.Errorf("Unexpected id %d != 1", i)
|
|
}
|
|
if i := m.Get(barID); i != 2 {
|
|
t.Errorf("Unexpected id %d != 2", i)
|
|
}
|
|
if i := m.Get(fooID); i != 1 {
|
|
t.Errorf("Unexpected id %d != 1", i)
|
|
}
|
|
if i := m.Get(barID); i != 2 {
|
|
t.Errorf("Unexpected id %d != 2", i)
|
|
}
|
|
|
|
if LocalID != 0 {
|
|
t.Error("LocalID should be 0")
|
|
}
|
|
if i := m.Get(LocalNodeID); i != LocalID {
|
|
t.Errorf("Unexpected id %d != %d", i, LocalID)
|
|
}
|
|
}
|