-
Notifications
You must be signed in to change notification settings - Fork 534
/
unit_messageids_test.go
82 lines (65 loc) · 1.74 KB
/
unit_messageids_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* Copyright (c) 2021 IBM Corp and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* https://www.eclipse.org/legal/epl-2.0/
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Seth Hoenig
* Allan Stockdill-Mander
* Mike Robertson
*/
package mqtt
import (
"testing"
)
func Test_getID(t *testing.T) {
mids := &messageIds{index: make(map[uint16]tokenCompletor)}
i1 := mids.getID(&DummyToken{})
if i1 != 1 {
t.Fatalf("i1 was wrong: %v", i1)
}
i2 := mids.getID(&DummyToken{})
if i2 != 2 {
t.Fatalf("i2 was wrong: %v", i2)
}
for i := uint16(3); i < 100; i++ {
id := mids.getID(&DummyToken{})
if id != i {
t.Fatalf("id was wrong expected %v got %v", i, id)
}
}
}
func Test_freeID(t *testing.T) {
mids := &messageIds{index: make(map[uint16]tokenCompletor)}
i1 := mids.getID(&DummyToken{})
mids.freeID(i1)
if i1 != 1 {
t.Fatalf("i1 was wrong: %v", i1)
}
// The below may be needed for a specific test but leaving it in permanently makes output confusing
// i2 := mids.getID(&DummyToken{})
// fmt.Printf("i2: %v\n", i2)
}
func Test_noFreeID(t *testing.T) {
var d DummyToken
mids := &messageIds{index: make(map[uint16]tokenCompletor)}
for i := midMin; i != 0; i++ {
// Uncomment to see all message IDS log.Println(i)
mids.index[i] = &d
}
mid := mids.getID(&d)
if mid != 0 {
t.Errorf("shouldn't be any mids left")
}
mid = mids.getID(&d)
if mid != 0 {
t.Errorf("shouldn't be any mids left")
}
}