-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcast.test.ts
126 lines (116 loc) · 2.22 KB
/
cast.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
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
import { cast } from '../src/cast'
describe('cast', () => {
test('casts NULL values', () => {
expect(
cast(
{
name: 'email',
type: 'VARCHAR'
},
null
)
).toEqual(null)
})
test('casts INT64, UINT64 values', () => {
expect(
cast(
{
name: 'id',
type: 'UINT64'
},
'1'
)
).toEqual('1')
})
test('casts DATETIME, DATE, TIMESTAMP, TIME values', () => {
expect(
cast(
{
name: 'created_at',
type: 'DATETIME'
},
'2024-01-01 00:00:00'
)
).toEqual('2024-01-01 00:00:00')
})
test('casts DECIMAL values', () => {
expect(
cast(
{
name: 'decimal',
type: 'DECIMAL'
},
'5.4'
)
).toEqual('5.4')
})
test('casts JSON values', () => {
expect(
cast(
{
name: 'metadata',
type: 'JSON'
},
'{ "color": "blue" }'
)
).toStrictEqual({ color: 'blue' })
})
test('casts INT8, UINT8, INT16, UINT16, INT24, UINT24, INT32, UINT32, INT64, UINT64, YEAR values', () => {
expect(
cast(
{
name: 'verified',
type: 'INT8'
},
'1'
)
).toEqual(1)
expect(
cast(
{
name: 'age',
type: 'INT32'
},
'21'
)
).toEqual(21)
})
test('casts FLOAT32, FLOAT64 values', () => {
expect(
cast(
{
name: 'float',
type: 'FLOAT32'
},
'20.4'
)
).toEqual(20.4)
expect(
cast(
{
name: 'double',
type: 'FLOAT64'
},
'101.4'
)
).toEqual(101.4)
})
test('casts BLOB, BIT, GEOMETRY, BINARY, VARBINARY values', () => {
/** See e2e tests in __tests__/golden.test.ts. */
})
test('casts BINARY, VARBINARY string values', () => {
/** See e2e tests in __tests__/golden.test.ts. */
})
test('casts VARCHAR values', () => {
expect(
cast(
{
name: 'email',
type: 'VARCHAR',
charset: 255
},
)
).toEqual('[email protected]')
})
})