File: scope_stack_test.go

package info (click to toggle)
golang-github-mendersoftware-scopestack 0.0~git20180403.c2f5599-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 108 kB
  • sloc: makefile: 2
file content (104 lines) | stat: -rw-r--r-- 2,545 bytes parent folder | download
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
// Copyright 2017 Northern.tech AS
//
//    Licensed under the Apache License, Version 2.0 (the "License");
//    you may not use this file except in compliance with the License.
//    You may obtain a copy of the License at
//
//        http://www.apache.org/licenses/LICENSE-2.0
//
//    Unless required by applicable law or agreed to in writing, software
//    distributed under the License is distributed on an "AS IS" BASIS,
//    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//    See the License for the specific language governing permissions and
//    limitations under the License.

package scopestack

import mt "github.com/mendersoftware/mendertesting"
import "testing"

func TestPushPop(t *testing.T) {
	var s ScopeStack
	s.Push("1")
	mt.AssertTrue(t, s.Pop().(string) == "1")
}

func TestTooMuchPopping(t *testing.T) {
	var s ScopeStack
	s.Push("1")
	mt.AssertTrue(t, s.Pop().(string) == "1")
	defer func() {
		if recover() == nil {
			t.Fatal("Unbalanced Pop() did not panic.")
		}
	}()
	mt.AssertTrue(t, s.Pop().(string) == "should never happen")
	t.Fatal("Should never get here")
}

func TestPopInDefer(t *testing.T) {
	var s ScopeStack
	defer s.Pop()
	s.Push("1")
}

func TestPushPopNotInSameFunction(t *testing.T) {
	var s ScopeStack
	func() {
		s.Push("1")
	}()
	defer func() {
		if recover() == nil {
			t.Fatal("Pop() should have panicked when used in a " +
				"different function than Push()")
		}
	}()
	s.Pop()
	t.Fatal("Should never get here")
}

func pushScopeStackDirectly(s *ScopeStack) {
	s.Push("1")
}

func pushScopeStackIndirectly(s *ScopeStack) {
	pushScopeStackDirectly(s)
}

func popScopeStackDirectly(s *ScopeStack) {
	s.Pop()
}

func popScopeStackIndirectly(s *ScopeStack) {
	popScopeStackDirectly(s)
}

func TestDifferentScopeDistance(t *testing.T) {
	var s *ScopeStack = NewScopeStack(1)

	pushScopeStackDirectly(s)
	popScopeStackDirectly(s)

	func() {
		// With scope distance 1, it should not reach all the way out
		// to this function, and should therefore fail because Push()
		// and Pop() are in different functions.
		pushScopeStackIndirectly(s)
		defer func() {
			if recover() == nil {
				t.Fatal("Should have panicked because " +
					"scope stack distance should point " +
					"to this function")
			}
		}()
		popScopeStackIndirectly(s)
		t.Fatal("Should never get here")
	}()

	// Now change the scope distance to 2. Now it should reach all the way
	// out to this test function.
	s = NewScopeStack(2)

	pushScopeStackIndirectly(s)
	popScopeStackIndirectly(s)
}