|
| 1 | +// tslint:disable:no-magic-numbers |
| 2 | +import { describe, it, expect } from 'vitest' |
| 3 | +import { ListNode } from 'src/main/js/com_github_leetcode/listnode' |
| 4 | +import { constructLinkedList, createSinglyLinkedList } from 'src/test/js/com_github_leetcode/linkedlistutils' |
| 5 | + |
| 6 | +describe('ListNode', () => { |
| 7 | + it('should initialize with default values', () => { |
| 8 | + const node = new ListNode() |
| 9 | + expect(node.val).toBe(0) |
| 10 | + expect(node.next).toBeNull() |
| 11 | + }) |
| 12 | + |
| 13 | + it('should initialize with given values', () => { |
| 14 | + const nextNode = new ListNode(2) |
| 15 | + const node = new ListNode(1, nextNode) |
| 16 | + expect(node.val).toBe(1) |
| 17 | + expect(node.next).toBe(nextNode) |
| 18 | + }) |
| 19 | + |
| 20 | + it('toString should return a comma-separated list of values', () => { |
| 21 | + const node3 = new ListNode(3) |
| 22 | + const node2 = new ListNode(2, node3) |
| 23 | + const node1 = new ListNode(1, node2) |
| 24 | + expect(node1.toString()).toBe('1, 2, 3') |
| 25 | + }) |
| 26 | +}) |
| 27 | + |
| 28 | +describe('constructLinkedList', () => { |
| 29 | + it('should return null for an empty array', () => { |
| 30 | + expect(constructLinkedList([])).toBeNull() |
| 31 | + }) |
| 32 | + |
| 33 | + it('should create a linked list from an array', () => { |
| 34 | + const nums = [1, 2, 3] |
| 35 | + const list = constructLinkedList(nums) |
| 36 | + expect(list.val).toBe(1) |
| 37 | + expect(list.next.val).toBe(2) |
| 38 | + expect(list.next.next.val).toBe(3) |
| 39 | + expect(list.next.next.next).toBeNull() |
| 40 | + }) |
| 41 | +}) |
| 42 | + |
| 43 | +describe('createSinglyLinkedList', () => { |
| 44 | + it('should throw an error for an empty array', () => { |
| 45 | + expect(() => createSinglyLinkedList([])).toThrow( |
| 46 | + 'Please pass in a valid listValues to create a singly linked list.', |
| 47 | + ) |
| 48 | + }) |
| 49 | + |
| 50 | + it('should create a singly linked list from an array', () => { |
| 51 | + const listValues = [1, 2, 3] |
| 52 | + const list = createSinglyLinkedList(listValues) |
| 53 | + expect(list.val).toBe(1) |
| 54 | + expect(list.next.val).toBe(2) |
| 55 | + expect(list.next.next.val).toBe(3) |
| 56 | + expect(list.next.next.next).toBeNull() |
| 57 | + }) |
| 58 | +}) |
0 commit comments