| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- // 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.
- package protocol
- import "testing"
- var formatted = "P56IOI7-MZJNU2Y-IQGDREY-DM2MGTI-MGL3BXN-PQ6W5BM-TBBZ4TJ-XZWICQ2"
- var formatCases = []string{
- "P56IOI-7MZJNU-2IQGDR-EYDM2M-GTMGL3-BXNPQ6-W5BTBB-Z4TJXZ-WICQ",
- "P56IOI-7MZJNU2Y-IQGDR-EYDM2M-GTI-MGL3-BXNPQ6-W5BM-TBB-Z4TJXZ-WICQ2",
- "P56IOI7 MZJNU2I QGDREYD M2MGTMGL 3BXNPQ6W 5BTB BZ4T JXZWICQ",
- "P56IOI7 MZJNU2Y IQGDREY DM2MGTI MGL3BXN PQ6W5BM TBBZ4TJ XZWICQ2",
- "P56IOI7MZJNU2IQGDREYDM2MGTMGL3BXNPQ6W5BTBBZ4TJXZWICQ",
- "p56ioi7mzjnu2iqgdreydm2mgtmgl3bxnpq6w5btbbz4tjxzwicq",
- "P56IOI7MZJNU2YIQGDREYDM2MGTIMGL3BXNPQ6W5BMTBBZ4TJXZWICQ2",
- "P561017MZJNU2YIQGDREYDM2MGTIMGL3BXNPQ6W5BMT88Z4TJXZWICQ2",
- "p56ioi7mzjnu2yiqgdreydm2mgtimgl3bxnpq6w5bmtbbz4tjxzwicq2",
- "p561017mzjnu2yiqgdreydm2mgtimgl3bxnpq6w5bmt88z4tjxzwicq2",
- }
- func TestFormatNodeID(t *testing.T) {
- for i, tc := range formatCases {
- var id NodeID
- err := id.UnmarshalText([]byte(tc))
- if err != nil {
- t.Errorf("#%d UnmarshalText(%q); %v", i, tc, err)
- } else if f := id.String(); f != formatted {
- t.Errorf("#%d FormatNodeID(%q)\n\t%q !=\n\t%q", i, tc, f, formatted)
- }
- }
- }
- var validateCases = []struct {
- s string
- ok bool
- }{
- {"", false},
- {"P56IOI7-MZJNU2Y-IQGDREY-DM2MGTI-MGL3BXN-PQ6W5BM-TBBZ4TJ-XZWICQ2", true},
- {"P56IOI7-MZJNU2-IQGDREY-DM2MGT-MGL3BXN-PQ6W5B-TBBZ4TJ-XZWICQ", true},
- {"P56IOI7 MZJNU2I QGDREYD M2MGTMGL 3BXNPQ6W 5BTB BZ4T JXZWICQ", true},
- {"P56IOI7MZJNU2IQGDREYDM2MGTMGL3BXNPQ6W5BTBBZ4TJXZWICQ", true},
- {"P56IOI7MZJNU2IQGDREYDM2MGTMGL3BXNPQ6W5BTBBZ4TJXZWICQCCCC", false},
- {"p56ioi7mzjnu2iqgdreydm2mgtmgl3bxnpq6w5btbbz4tjxzwicq", true},
- {"p56ioi7mzjnu2iqgdreydm2mgtmgl3bxnpq6w5btbbz4tjxzwicqCCCC", false},
- }
- func TestValidateNodeID(t *testing.T) {
- for _, tc := range validateCases {
- var id NodeID
- err := id.UnmarshalText([]byte(tc.s))
- if (err == nil && !tc.ok) || (err != nil && tc.ok) {
- t.Errorf("ValidateNodeID(%q); %v != %v", tc.s, err, tc.ok)
- }
- }
- }
- func TestMarshallingNodeID(t *testing.T) {
- n0 := NodeID{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 10, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32}
- n1 := NodeID{}
- n2 := NodeID{}
- bs, _ := n0.MarshalText()
- n1.UnmarshalText(bs)
- bs, _ = n1.MarshalText()
- n2.UnmarshalText(bs)
- if n2.String() != n0.String() {
- t.Errorf("String marshalling error; %q != %q", n2.String(), n0.String())
- }
- if !n2.Equals(n0) {
- t.Error("Equals error")
- }
- if n2.Compare(n0) != 0 {
- t.Error("Compare error")
- }
- }
|