aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/Casts/StrictCastOverOptional.yql
blob: 28cf793e44e87ecb6ff36d021195d0e3470c4627 (plain) (blame)
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
(

(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))
(let res_sink (DataSink 'result))

# Int32? -> Uint16
(let targetType (OptionalType (DataType 'Uint16)))
(let cast (StrictCast (Just (Int32 '1)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Int32 '1000000)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Nothing (OptionalType (DataType 'Int32))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))

# Int32? -> Uint16?
(let targetType (OptionalType (DataType 'Uint16)))
(let cast (StrictCast (Just (Int32 '1)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Int32 '1000000)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Nothing (OptionalType (DataType 'Int32))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))

# Int32? -> Uint16???
(let targetType (OptionalType (OptionalType (OptionalType (DataType 'Uint16)))))
(let cast (StrictCast (Just (Int32 '1)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Int32 '1000000)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Nothing (OptionalType (DataType 'Int32))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))

# Int32??? -> Uint16?
(let targetType (OptionalType (DataType 'Uint16)))
(let cast (StrictCast (Just (Just (Just (Int32 '1)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Just (Just (Int32 '1000000)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Nothing (OptionalType (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Nothing (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Just (Nothing (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))

# Int32??? -> Uint16??
(let targetType (OptionalType (OptionalType (DataType 'Uint16))))
(let cast (StrictCast (Just (Just (Just (Int32 '1)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Just (Just (Int32 '1000000)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Nothing (OptionalType (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Nothing (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Just (Nothing (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))

# Int32??? -> Uint16????
(let targetType (OptionalType (OptionalType (OptionalType (OptionalType (DataType 'Uint16))))))
(let cast (StrictCast (Just (Just (Just (Int32 '1)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Just (Just (Int32 '1000000)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Nothing (OptionalType (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Nothing (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (StrictCast (Just (Just (Nothing (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))

(let world (Commit! world res_sink))
(return world)

)