-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstack.test.ts
80 lines (75 loc) · 2.2 KB
/
stack.test.ts
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
import { Stack } from './stack';
describe('Stack', () => {
it('should create an instance', () => {
const stack = new Stack(10);
expect(stack).toBeInstanceOf(Stack);
expect(stack.length).toBe(0);
expect(stack.toArray().length).toBe(0);
expect(stack.read()).toBeUndefined();
});
it('should push and pop values', () => {
const stack = new Stack(10);
stack.push(1);
expect(stack.length).toBe(1);
expect(stack.pop()).toBe(1);
expect(stack.length).toBe(0);
stack.push(1);
stack.push(2);
expect(stack.read()).toBe(2);
expect(stack.length).toBe(2);
expect(stack.pop()).toBe(2);
expect(stack.read()).toBe(1);
expect(stack.length).toBe(1);
expect(stack.pop()).toBe(1);
expect(stack.length).toBe(0);
expect(stack.read()).toBe(undefined);
});
it('should peek', () => {
const stack = new Stack(3);
expect(stack.peek()).toBeUndefined();
stack.push(1);
stack.push(2);
expect(stack.peek()).toBe(2);
stack.pop();
expect(stack.peek()).toBe(1);
stack.pop();
expect(stack.peek()).toBeUndefined();
stack.push(1);
stack.push(2);
stack.push(3);
expect(stack.peek()).toBe(3);
});
it('should throw error for overflow or underflow', () => {
const stack = new Stack(3);
expect(stack.isFull()).toBe(false);
stack.push(1);
stack.push(2);
stack.push(3);
expect(stack.isFull()).toBe(true);
expect(() => {
stack.push(4);
}).toThrowError('Stack is full');
expect(stack.toArray()).toEqual([1, 2, 3]);
expect(stack.length).toBe(3);
expect(stack.read()).toBe(3);
expect(stack.pop()).toBe(3);
stack.push(3);
expect(() => {
stack.push(4);
}).toThrowError('Stack is full');
expect(stack.length).toBe(3);
expect(stack.read()).toBe(3);
expect(stack.isEmpty()).toBe(false);
stack.pop();
expect(stack.toArray()).toEqual([1, 2, undefined]);
stack.pop();
stack.pop();
expect(stack.isEmpty()).toBe(true);
expect(() => {
stack.pop();
}).toThrowError('Stack is empty');
expect(stack.length).toBe(0);
expect(stack.read()).toBeUndefined();
expect(stack.toArray()).toEqual([undefined, undefined, undefined]);
});
});