1
+ namespace TailwindMerge . Tests ;
2
+ using TailwindMerge ; // Replace with the namespace of your class library
3
+
4
+ public class ValidatorTests
5
+ {
6
+ [ Fact ]
7
+ public void IsLengthTests ( )
8
+ {
9
+ Assert . True ( Validators . IsLength ( "1" ) ) ;
10
+ Assert . True ( Validators . IsLength ( "1023713" ) ) ;
11
+ Assert . True ( Validators . IsLength ( "1.5" ) ) ;
12
+ Assert . True ( Validators . IsLength ( "1231.503761" ) ) ;
13
+ Assert . True ( Validators . IsLength ( "px" ) ) ;
14
+ Assert . True ( Validators . IsLength ( "full" ) ) ;
15
+ Assert . True ( Validators . IsLength ( "screen" ) ) ;
16
+ Assert . True ( Validators . IsLength ( "1/2" ) ) ;
17
+ Assert . True ( Validators . IsLength ( "123/345" ) ) ;
18
+
19
+ Assert . False ( Validators . IsLength ( "[3.7%]" ) ) ;
20
+ Assert . False ( Validators . IsLength ( "[481px]" ) ) ;
21
+ Assert . False ( Validators . IsLength ( "[19.1rem]" ) ) ;
22
+ Assert . False ( Validators . IsLength ( "[50vw]" ) ) ;
23
+ Assert . False ( Validators . IsLength ( "[56vh]" ) ) ;
24
+ Assert . False ( Validators . IsLength ( "[length:var(--arbitrary)]" ) ) ;
25
+ Assert . False ( Validators . IsLength ( "1d5" ) ) ;
26
+ Assert . False ( Validators . IsLength ( "[1]" ) ) ;
27
+ Assert . False ( Validators . IsLength ( "[12px" ) ) ;
28
+ Assert . False ( Validators . IsLength ( "12px]" ) ) ;
29
+ Assert . False ( Validators . IsLength ( "one" ) ) ;
30
+ }
31
+
32
+ [ Fact ]
33
+ public void IsArbitraryLengthTests ( )
34
+ {
35
+ Assert . True ( Validators . IsArbitraryLength ( "[3.7%]" ) ) ;
36
+ Assert . True ( Validators . IsArbitraryLength ( "[481px]" ) ) ;
37
+ Assert . True ( Validators . IsArbitraryLength ( "[19.1rem]" ) ) ;
38
+ Assert . True ( Validators . IsArbitraryLength ( "[50vw]" ) ) ;
39
+ Assert . True ( Validators . IsArbitraryLength ( "[56vh]" ) ) ;
40
+ Assert . True ( Validators . IsArbitraryLength ( "[length:var(--arbitrary)]" ) ) ;
41
+
42
+ Assert . False ( Validators . IsArbitraryLength ( "1" ) ) ;
43
+ Assert . False ( Validators . IsArbitraryLength ( "3px" ) ) ;
44
+ Assert . False ( Validators . IsArbitraryLength ( "1d5" ) ) ;
45
+ Assert . False ( Validators . IsArbitraryLength ( "[1]" ) ) ;
46
+ Assert . False ( Validators . IsArbitraryLength ( "[12px" ) ) ;
47
+ Assert . False ( Validators . IsArbitraryLength ( "12px]" ) ) ;
48
+ Assert . False ( Validators . IsArbitraryLength ( "one" ) ) ;
49
+ }
50
+
51
+ [ Fact ]
52
+ public void IsIntegerTests ( )
53
+ {
54
+ Assert . True ( Validators . IsInteger ( "1" ) ) ;
55
+ Assert . True ( Validators . IsInteger ( "123" ) ) ;
56
+ Assert . True ( Validators . IsInteger ( "8312" ) ) ;
57
+
58
+ Assert . False ( Validators . IsInteger ( "[8312]" ) ) ;
59
+ Assert . False ( Validators . IsInteger ( "[2]" ) ) ;
60
+ Assert . False ( Validators . IsInteger ( "[8312px]" ) ) ;
61
+ Assert . False ( Validators . IsInteger ( "[8312%]" ) ) ;
62
+ Assert . False ( Validators . IsInteger ( "[8312rem]" ) ) ;
63
+ Assert . False ( Validators . IsInteger ( "8312.2" ) ) ;
64
+ Assert . False ( Validators . IsInteger ( "1.2" ) ) ;
65
+ Assert . False ( Validators . IsInteger ( "one" ) ) ;
66
+ Assert . False ( Validators . IsInteger ( "1/2" ) ) ;
67
+ Assert . False ( Validators . IsInteger ( "1%" ) ) ;
68
+ Assert . False ( Validators . IsInteger ( "1px" ) ) ;
69
+ }
70
+
71
+ [ Fact ]
72
+ public void IsArbitraryValueTests ( )
73
+ {
74
+ Assert . True ( Validators . IsArbitraryValue ( "[1]" ) ) ;
75
+ Assert . True ( Validators . IsArbitraryValue ( "[bla]" ) ) ;
76
+ Assert . True ( Validators . IsArbitraryValue ( "[not-an-arbitrary-value?]" ) ) ;
77
+ Assert . True ( Validators . IsArbitraryValue ( "[auto,auto,minmax(0,1fr),calc(100vw-50%)]" ) ) ;
78
+
79
+ Assert . False ( Validators . IsArbitraryValue ( "[]" ) ) ;
80
+ Assert . False ( Validators . IsArbitraryValue ( "[1" ) ) ;
81
+ Assert . False ( Validators . IsArbitraryValue ( "1]" ) ) ;
82
+ Assert . False ( Validators . IsArbitraryValue ( "1" ) ) ;
83
+ Assert . False ( Validators . IsArbitraryValue ( "one" ) ) ;
84
+ Assert . False ( Validators . IsArbitraryValue ( "o[n]e" ) ) ;
85
+ }
86
+
87
+ [ Fact ]
88
+ public void IsAnyTests ( )
89
+ {
90
+ Assert . True ( Validators . IsAny ( ) ) ;
91
+ // TypeScript specific @ts-expect-error tests are not applicable in C#
92
+ }
93
+
94
+ [ Fact ]
95
+ public void IsTshirtSizeTests ( )
96
+ {
97
+ Assert . True ( Validators . IsTshirtSize ( "xs" ) ) ;
98
+ Assert . True ( Validators . IsTshirtSize ( "sm" ) ) ;
99
+ Assert . True ( Validators . IsTshirtSize ( "md" ) ) ;
100
+ Assert . True ( Validators . IsTshirtSize ( "lg" ) ) ;
101
+ Assert . True ( Validators . IsTshirtSize ( "xl" ) ) ;
102
+ Assert . True ( Validators . IsTshirtSize ( "2xl" ) ) ;
103
+ Assert . True ( Validators . IsTshirtSize ( "2.5xl" ) ) ;
104
+ Assert . True ( Validators . IsTshirtSize ( "10xl" ) ) ;
105
+ Assert . True ( Validators . IsTshirtSize ( "2xs" ) ) ;
106
+ Assert . True ( Validators . IsTshirtSize ( "2lg" ) ) ;
107
+
108
+ Assert . False ( Validators . IsTshirtSize ( "" ) ) ;
109
+ Assert . False ( Validators . IsTshirtSize ( "hello" ) ) ;
110
+ Assert . False ( Validators . IsTshirtSize ( "1" ) ) ;
111
+ Assert . False ( Validators . IsTshirtSize ( "xl3" ) ) ;
112
+ Assert . False ( Validators . IsTshirtSize ( "2xl3" ) ) ;
113
+ Assert . False ( Validators . IsTshirtSize ( "-xl" ) ) ;
114
+ Assert . False ( Validators . IsTshirtSize ( "[sm]" ) ) ;
115
+ }
116
+
117
+ [ Fact ]
118
+ public void IsArbitrarySizeTests ( )
119
+ {
120
+ Assert . True ( Validators . IsArbitrarySize ( "[size:2px]" ) ) ;
121
+ Assert . True ( Validators . IsArbitrarySize ( "[size:bla]" ) ) ;
122
+ Assert . True ( Validators . IsArbitrarySize ( "[length:bla]" ) ) ;
123
+ Assert . True ( Validators . IsArbitrarySize ( "[percentage:bla]" ) ) ;
124
+
125
+ Assert . False ( Validators . IsArbitrarySize ( "[2px]" ) ) ;
126
+ Assert . False ( Validators . IsArbitrarySize ( "[bla]" ) ) ;
127
+ Assert . False ( Validators . IsArbitrarySize ( "size:2px" ) ) ;
128
+ }
129
+
130
+ [ Fact ]
131
+ public void IsArbitraryPositionTests ( )
132
+ {
133
+ Assert . True ( Validators . IsArbitraryPosition ( "[position:2px]" ) ) ;
134
+ Assert . True ( Validators . IsArbitraryPosition ( "[position:bla]" ) ) ;
135
+
136
+ Assert . False ( Validators . IsArbitraryPosition ( "[2px]" ) ) ;
137
+ Assert . False ( Validators . IsArbitraryPosition ( "[bla]" ) ) ;
138
+ Assert . False ( Validators . IsArbitraryPosition ( "position:2px" ) ) ;
139
+ }
140
+
141
+ [ Fact ]
142
+ public void IsArbitraryImageTests ( )
143
+ {
144
+ Assert . True ( Validators . IsArbitraryImage ( "[url:var(--my-url)]" ) ) ;
145
+ Assert . True ( Validators . IsArbitraryImage ( "[url(something)]" ) ) ;
146
+ Assert . True ( Validators . IsArbitraryImage ( "[url:bla]" ) ) ;
147
+ Assert . True ( Validators . IsArbitraryImage ( "[image:bla]" ) ) ;
148
+ Assert . True ( Validators . IsArbitraryImage ( "[linear-gradient(something)]" ) ) ;
149
+ Assert . True ( Validators . IsArbitraryImage ( "[repeating-conic-gradient(something)]" ) ) ;
150
+
151
+ Assert . False ( Validators . IsArbitraryImage ( "[var(--my-url)]" ) ) ;
152
+ Assert . False ( Validators . IsArbitraryImage ( "[bla]" ) ) ;
153
+ Assert . False ( Validators . IsArbitraryImage ( "url:2px" ) ) ;
154
+ Assert . False ( Validators . IsArbitraryImage ( "url(2px)" ) ) ;
155
+ }
156
+
157
+ [ Fact ]
158
+ public void IsArbitraryNumberTests ( )
159
+ {
160
+ Assert . True ( Validators . IsArbitraryNumber ( "[number:black]" ) ) ;
161
+ Assert . True ( Validators . IsArbitraryNumber ( "[number:bla]" ) ) ;
162
+ Assert . True ( Validators . IsArbitraryNumber ( "[number:230]" ) ) ;
163
+ Assert . True ( Validators . IsArbitraryNumber ( "[450]" ) ) ;
164
+
165
+ Assert . False ( Validators . IsArbitraryNumber ( "[2px]" ) ) ;
166
+ Assert . False ( Validators . IsArbitraryNumber ( "[bla]" ) ) ;
167
+ Assert . False ( Validators . IsArbitraryNumber ( "[black]" ) ) ;
168
+ Assert . False ( Validators . IsArbitraryNumber ( "black" ) ) ;
169
+ Assert . False ( Validators . IsArbitraryNumber ( "450" ) ) ;
170
+ }
171
+
172
+ [ Fact ]
173
+ public void IsArbitraryShadowTests ( )
174
+ {
175
+ Assert . True ( Validators . IsArbitraryShadow ( "[0_35px_60px_-15px_rgba(0,0,0,0.3)]" ) ) ;
176
+ Assert . True ( Validators . IsArbitraryShadow ( "[0_0_#00f]" ) ) ;
177
+ Assert . True ( Validators . IsArbitraryShadow ( "[.5rem_0_rgba(5,5,5,5)]" ) ) ;
178
+ Assert . True ( Validators . IsArbitraryShadow ( "[-.5rem_0_#123456]" ) ) ;
179
+ Assert . True ( Validators . IsArbitraryShadow ( "[0.5rem_-0_#123456]" ) ) ;
180
+ Assert . True ( Validators . IsArbitraryShadow ( "[0.5rem_-0.005vh_#123456]" ) ) ;
181
+ Assert . True ( Validators . IsArbitraryShadow ( "[0.5rem_-0.005vh]" ) ) ;
182
+
183
+ Assert . False ( Validators . IsArbitraryShadow ( "[rgba(5,5,5,5)]" ) ) ;
184
+ Assert . False ( Validators . IsArbitraryShadow ( "[#00f]" ) ) ;
185
+ Assert . False ( Validators . IsArbitraryShadow ( "[something-else]" ) ) ;
186
+ }
187
+
188
+ [ Fact ]
189
+ public void IsPercentTests ( )
190
+ {
191
+ Assert . True ( Validators . IsPercent ( "1%" ) ) ;
192
+ Assert . True ( Validators . IsPercent ( "100.001%" ) ) ;
193
+ Assert . True ( Validators . IsPercent ( ".01%" ) ) ;
194
+ Assert . True ( Validators . IsPercent ( "0%" ) ) ;
195
+
196
+ Assert . False ( Validators . IsPercent ( "0" ) ) ;
197
+ Assert . False ( Validators . IsPercent ( "one%" ) ) ;
198
+ }
199
+ }
0 commit comments