-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack_test.go
160 lines (134 loc) · 3.11 KB
/
stack_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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
package stack
import (
"slices"
"testing"
)
func TestNew(t *testing.T) {
stack := New[int]()
if stack == nil {
t.Fatalf("Expected stack to not be nil")
}
if !stack.IsEmpty() {
t.Fatalf("Expected stack to be empty")
}
}
func TestStack_Push(t *testing.T) {
stack := New[int]()
stack.Push(1)
stack.Push(2)
stack.Push(3)
if stack.Size() != 3 {
t.Fatalf("Expected stack to have 3 elements, but got %v", stack.Size())
}
}
func TestStack_Clear(t *testing.T) {
stack := New[int]()
stack.Push(1)
stack.Push(2)
stack.Push(3)
stack.Clear()
if !stack.IsEmpty() {
t.Fatalf("Expected stack to be empty after clearing")
}
}
func TestStack_Contains(t *testing.T) {
stack := New[int]()
stack.Push(1)
stack.Push(2)
stack.Push(3)
if !stack.Contains(1) {
t.Fatalf("Expected stack to contain 1")
}
if !stack.Contains(2) {
t.Fatalf("Expected stack to contain 2")
}
if !stack.Contains(3) {
t.Fatalf("Expected stack to contain 3")
}
if stack.Contains(4) {
t.Fatalf("Expected stack to not contain 4")
}
}
func TestStack_IsEmpty(t *testing.T) {
stack := New[int]()
if !stack.IsEmpty() {
t.Fatalf("Expected stack to be empty")
}
stack.Push(1)
if stack.IsEmpty() {
t.Fatalf("Expected stack to not be empty")
}
}
func TestStack_Peek(t *testing.T) {
stack := New[int]()
if _, found := stack.Peek(); found {
t.Fatalf("Expected stack.Peek() to not find an element")
}
stack.Push(1)
stack.Push(2)
stack.Push(3)
if stack.Size() != 3 {
t.Fatalf("Expected stack to have 3 elements, but got %v", stack.Size())
}
val, found := stack.Peek()
if !found {
t.Fatalf("Expected stack.Peek() to find an element")
}
if *val != 3 {
t.Fatalf("Expected stack.Peek() to return 3")
}
if stack.Size() != 3 {
t.Fatalf("Expected stack to have 3 elements after calling stack.Peek(), but got %v", stack.Size())
}
}
func TestStack_Pop(t *testing.T) {
stack := New[int]()
if _, found := stack.Pop(); found {
t.Fatalf("Expected stack.Pop() to not find an element")
}
stack.Push(1)
stack.Push(2)
stack.Push(3)
if stack.Size() != 3 {
t.Fatalf("Expected stack to have 3 elements, but got %v", stack.Size())
}
val, found := stack.Pop()
if !found {
t.Fatalf("Expected stack.Pop() to find an element")
}
if *val != 3 {
t.Fatalf("Expected stack.Pop() to return 3")
}
if stack.Size() != 2 {
t.Fatalf("Expected stack to have 2 elements after calling stack.Pop(), but got %v", stack.Size())
}
}
func TestStack_Size(t *testing.T) {
stack := New[int]()
stack.Push(1)
stack.Push(2)
stack.Push(3)
if stack.Size() != 3 {
t.Fatalf("Expected stack to have 3 elements, but got %v", stack.Size())
}
}
func TestStack_String(t *testing.T) {
stack := New[int]()
stack.Push(1)
stack.Push(2)
stack.Push(3)
if stack.String() != "Stack([1, 2, 3])" {
t.Fatalf("Expected stack.String() to return 'Stack([1, 2, 3])', but got %v", stack.String())
}
}
func TestStack_Values(t *testing.T) {
stack := New[int]()
stack.Push(1)
stack.Push(2)
stack.Push(3)
expected := []int{1, 2, 3}
slice := stack.Values()
if !slices.Equal(slice, expected) {
t.Fatalf("Expected stack.Slice() to return %v, but got %v", expected, slice)
}
}