ADD LAStack Test test.sh
This commit is contained in:
parent
02cf7b9672
commit
4f49401561
|
@ -3,41 +3,74 @@ package lastack
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/davecgh/go-spew/spew"
|
||||||
|
|
||||||
"github.com/emirpasic/gods/stacks/arraystack"
|
"github.com/emirpasic/gods/stacks/arraystack"
|
||||||
|
|
||||||
"github.com/Pallinder/go-randomdata"
|
"github.com/Pallinder/go-randomdata"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestPush(t *testing.T) {
|
func TestPush(t *testing.T) {
|
||||||
|
var result string
|
||||||
s := New()
|
s := New()
|
||||||
for i := 0; i < 10; i++ {
|
|
||||||
v := randomdata.Number(0, 10)
|
result = spew.Sprint(s.Values())
|
||||||
|
if result != "[]" {
|
||||||
|
t.Error(result)
|
||||||
|
}
|
||||||
|
|
||||||
|
l := []int{10, 7, 3, 4, 5, 15}
|
||||||
|
for _, v := range l {
|
||||||
s.Push(v)
|
s.Push(v)
|
||||||
|
}
|
||||||
|
|
||||||
|
result = spew.Sprint(s.Values())
|
||||||
|
if result != "[15 5 4 3 7 10]" {
|
||||||
|
t.Error(result)
|
||||||
|
}
|
||||||
|
|
||||||
|
if v, ok := s.Peek(); ok {
|
||||||
|
if v != 15 {
|
||||||
t.Error(v)
|
t.Error(v)
|
||||||
t.Error(s.String(), " size ", s.size)
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
t.Error(s.Values())
|
result = spew.Sprint(s.Values())
|
||||||
|
if result != "[15 5 4 3 7 10]" {
|
||||||
for i := 0; i < 10; i++ {
|
t.Error(result)
|
||||||
v, ok := s.Pop()
|
|
||||||
t.Error(v, ok)
|
|
||||||
t.Error(s.String(), " size ", s.size)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var l []int
|
if v, ok := s.Pop(); ok {
|
||||||
|
if v != 15 {
|
||||||
for i := 0; i < 10; i++ {
|
t.Error(v)
|
||||||
v := randomdata.Number(0, 10)
|
}
|
||||||
s.Push(v)
|
|
||||||
l = append(l, v)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for i := -1; i < 11; i++ {
|
result = spew.Sprint(s.Values())
|
||||||
v, ok := s.Get(i)
|
if result != "[5 4 3 7 10]" {
|
||||||
t.Error(v, ok)
|
t.Error(result)
|
||||||
}
|
}
|
||||||
t.Error(l)
|
|
||||||
|
for s.Size() != 1 {
|
||||||
|
s.Pop()
|
||||||
|
}
|
||||||
|
|
||||||
|
result = spew.Sprint(s.Values())
|
||||||
|
if result != "[10]" {
|
||||||
|
t.Error(result)
|
||||||
|
}
|
||||||
|
|
||||||
|
if v, ok := s.Pop(); ok {
|
||||||
|
if v != 10 {
|
||||||
|
t.Error(v)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
result = spew.Sprint(s.Values())
|
||||||
|
if result != "[]" {
|
||||||
|
t.Error(result)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func BenchmarkGet(b *testing.B) {
|
func BenchmarkGet(b *testing.B) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user