-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathstring.test.ts
More file actions
138 lines (114 loc) · 4.25 KB
/
Copy pathstring.test.ts
File metadata and controls
138 lines (114 loc) · 4.25 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/**
* @vitest-environment node
*/
import { describe, expect, it } from 'vitest'
import {
formatQuotedNameList,
isVersionedType,
normalizeEmail,
sanitizeForJsonb,
sanitizeValueForJsonb,
stripVersionSuffix,
truncate,
} from './string.js'
describe('truncate', () => {
it('appends the suffix when the string exceeds the slice length', () => {
expect(truncate('hello world', 8)).toBe('hello wo...')
})
it('uses a custom suffix when provided', () => {
expect(truncate('hello world', 8, ' …')).toBe('hello wo …')
})
it('returns the original string when within the slice length', () => {
expect(truncate('hi', 10)).toBe('hi')
})
})
describe('stripVersionSuffix', () => {
it('strips a trailing _vN suffix', () => {
expect(stripVersionSuffix('notion_search_v2')).toBe('notion_search')
expect(stripVersionSuffix('github_create_pr_v3')).toBe('github_create_pr')
})
it('strips multi-digit versions', () => {
expect(stripVersionSuffix('x_v10')).toBe('x')
})
it('leaves plain values unchanged', () => {
expect(stripVersionSuffix('plain')).toBe('plain')
})
it('does not strip a non-version trailing token', () => {
expect(stripVersionSuffix('a_version')).toBe('a_version')
})
it('only strips the single trailing suffix', () => {
expect(stripVersionSuffix('a_v2_v3')).toBe('a_v2')
})
})
describe('isVersionedType', () => {
it('returns true for trailing _vN suffixes', () => {
expect(isVersionedType('notion_search_v2')).toBe(true)
expect(isVersionedType('github_create_pr_v3')).toBe(true)
expect(isVersionedType('x_v10')).toBe(true)
expect(isVersionedType('a_v2_v3')).toBe(true)
})
it('returns false when there is no trailing version suffix', () => {
expect(isVersionedType('plain')).toBe(false)
expect(isVersionedType('a_version')).toBe(false)
expect(isVersionedType('x')).toBe(false)
})
})
describe('sanitizeForJsonb', () => {
it('replaces a lone high surrogate left by mid-character truncation', () => {
// '𝐀'.slice(0, 1) cuts the surrogate pair in half
const cut = '\uD835\uDC00'.slice(0, 1)
expect(sanitizeForJsonb(`FIFA WORLD CU${cut}`)).toBe('FIFA WORLD CU\uFFFD')
})
it('replaces a lone low surrogate', () => {
expect(sanitizeForJsonb('x\uDC00y')).toBe('x\uFFFDy')
})
it('replaces NUL characters', () => {
expect(sanitizeForJsonb('a\u0000b')).toBe('a\uFFFDb')
})
it('preserves well-formed surrogate pairs', () => {
expect(sanitizeForJsonb('𝐅𝐈𝐅𝐀 🏆')).toBe('𝐅𝐈𝐅𝐀 🏆')
})
it('handles a lone high surrogate followed by a valid pair', () => {
expect(sanitizeForJsonb('\uD835\uD835\uDC00')).toBe('\uFFFD\uD835\uDC00')
})
})
describe('sanitizeValueForJsonb', () => {
it('sanitizes strings nested in objects and arrays', () => {
const input = { outline: ['ok', 'bad\uD835'], meta: { title: 'x\u0000' } }
expect(sanitizeValueForJsonb(input)).toEqual({
outline: ['ok', 'bad\uFFFD'],
meta: { title: 'x\uFFFD' },
})
})
it('sanitizes object keys', () => {
expect(sanitizeValueForJsonb({ 'k\uDC00': 1 })).toEqual({ 'k\uFFFD': 1 })
})
it('returns the same reference when nothing needs rewriting', () => {
const input = { a: ['clean', { b: 'also clean 🏆' }], n: 3 }
expect(sanitizeValueForJsonb(input)).toBe(input)
})
it('passes primitives through unchanged', () => {
expect(sanitizeValueForJsonb(42)).toBe(42)
expect(sanitizeValueForJsonb(null)).toBe(null)
expect(sanitizeValueForJsonb(undefined)).toBe(undefined)
})
})
describe('normalizeEmail', () => {
it('trims surrounding whitespace and lowercases', () => {
expect(normalizeEmail(' USER@Example.COM ')).toBe('user@example.com')
})
it('leaves an already-normalized email unchanged', () => {
expect(normalizeEmail('user@example.com')).toBe('user@example.com')
})
})
describe('formatQuotedNameList', () => {
it('lists all names quoted when within the cap', () => {
expect(formatQuotedNameList(['A', 'B'], 3)).toBe('"A", "B"')
})
it('truncates to the cap with an overflow tail', () => {
expect(formatQuotedNameList(['A', 'B', 'C', 'D', 'E'], 3)).toBe('"A", "B", "C" and 2 more')
})
it('returns an empty string for no names', () => {
expect(formatQuotedNameList([], 3)).toBe('')
})
})