mirror of
https://github.com/emirpasic/gods
synced 2024-11-18 09:25:50 +00:00
161 lines
4.2 KiB
Go
161 lines
4.2 KiB
Go
// Copyright (c) 2015, Emir Pasic. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package linkedliststack
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestStackPush(t *testing.T) {
|
|
stack := New()
|
|
if actualValue := stack.Empty(); actualValue != true {
|
|
t.Errorf("Got %v expected %v", actualValue, true)
|
|
}
|
|
stack.Push(1)
|
|
stack.Push(2)
|
|
stack.Push(3)
|
|
|
|
if actualValue := stack.Values(); actualValue[0].(int) != 3 || actualValue[1].(int) != 2 || actualValue[2].(int) != 1 {
|
|
t.Errorf("Got %v expected %v", actualValue, "[3,2,1]")
|
|
}
|
|
if actualValue := stack.Empty(); actualValue != false {
|
|
t.Errorf("Got %v expected %v", actualValue, false)
|
|
}
|
|
if actualValue := stack.Size(); actualValue != 3 {
|
|
t.Errorf("Got %v expected %v", actualValue, 3)
|
|
}
|
|
if actualValue, ok := stack.Peek(); actualValue != 3 || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, 3)
|
|
}
|
|
}
|
|
|
|
func TestStackPeek(t *testing.T) {
|
|
stack := New()
|
|
if actualValue, ok := stack.Peek(); actualValue != nil || ok {
|
|
t.Errorf("Got %v expected %v", actualValue, nil)
|
|
}
|
|
stack.Push(1)
|
|
stack.Push(2)
|
|
stack.Push(3)
|
|
if actualValue, ok := stack.Peek(); actualValue != 3 || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, 3)
|
|
}
|
|
}
|
|
|
|
func TestStackPop(t *testing.T) {
|
|
stack := New()
|
|
stack.Push(1)
|
|
stack.Push(2)
|
|
stack.Push(3)
|
|
stack.Pop()
|
|
if actualValue, ok := stack.Peek(); actualValue != 2 || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, 2)
|
|
}
|
|
if actualValue, ok := stack.Pop(); actualValue != 2 || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, 2)
|
|
}
|
|
if actualValue, ok := stack.Pop(); actualValue != 1 || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, 1)
|
|
}
|
|
if actualValue, ok := stack.Pop(); actualValue != nil || ok {
|
|
t.Errorf("Got %v expected %v", actualValue, nil)
|
|
}
|
|
if actualValue := stack.Empty(); actualValue != true {
|
|
t.Errorf("Got %v expected %v", actualValue, true)
|
|
}
|
|
if actualValue := stack.Values(); len(actualValue) != 0 {
|
|
t.Errorf("Got %v expected %v", actualValue, "[]")
|
|
}
|
|
}
|
|
|
|
func TestStackIterator(t *testing.T) {
|
|
stack := New()
|
|
stack.Push("a")
|
|
stack.Push("b")
|
|
stack.Push("c")
|
|
|
|
// Iterator
|
|
it := stack.Iterator()
|
|
count := 0
|
|
for it.Next() {
|
|
count++
|
|
index := it.Index()
|
|
value := it.Value()
|
|
switch index {
|
|
case 0:
|
|
if actualValue, expectedValue := value, "c"; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
case 1:
|
|
if actualValue, expectedValue := value, "b"; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
case 2:
|
|
if actualValue, expectedValue := value, "a"; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
default:
|
|
t.Errorf("Too many")
|
|
}
|
|
if actualValue, expectedValue := index, count-1; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
}
|
|
if actualValue, expectedValue := count, 3; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
|
|
stack.Clear()
|
|
it = stack.Iterator()
|
|
for it.Next() {
|
|
t.Errorf("Shouldn't iterate on empty stack")
|
|
}
|
|
}
|
|
|
|
func TestStackIteratorBegin(t *testing.T) {
|
|
stack := New()
|
|
it := stack.Iterator()
|
|
it.Begin()
|
|
stack.Push("a")
|
|
stack.Push("b")
|
|
stack.Push("c")
|
|
for it.Next() {
|
|
}
|
|
it.Begin()
|
|
it.Next()
|
|
if index, value := it.Index(), it.Value(); index != 0 || value != "c" {
|
|
t.Errorf("Got %v,%v expected %v,%v", index, value, 0, "c")
|
|
}
|
|
}
|
|
|
|
func TestStackIteratorFirst(t *testing.T) {
|
|
stack := New()
|
|
it := stack.Iterator()
|
|
if actualValue, expectedValue := it.First(), false; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
stack.Push("a")
|
|
stack.Push("b")
|
|
stack.Push("c")
|
|
if actualValue, expectedValue := it.First(), true; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
if index, value := it.Index(), it.Value(); index != 0 || value != "c" {
|
|
t.Errorf("Got %v,%v expected %v,%v", index, value, 0, "c")
|
|
}
|
|
}
|
|
|
|
func BenchmarkStack(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
stack := New()
|
|
for n := 0; n < 1000; n++ {
|
|
stack.Push(i)
|
|
}
|
|
for !stack.Empty() {
|
|
stack.Pop()
|
|
}
|
|
}
|
|
}
|