robin-sparkless 4.0.0

PySpark-like DataFrame API in Rust on Polars; no JVM.
Documentation
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
"""
Tests for CaseWhen.cast() and WindowFunction.cast() methods.

This module tests that sparkless correctly supports casting CaseWhen and
WindowFunction expressions, matching PySpark behavior.

These tests work with both sparkless (mock) and PySpark backends.
Set MOCK_SPARK_TEST_BACKEND=pyspark to run with real PySpark.
"""

from tests.fixtures.spark_imports import get_spark_imports

# Get imports based on backend
imports = get_spark_imports()
SparkSession = imports.SparkSession
StringType = imports.StringType
IntegerType = imports.IntegerType
LongType = imports.LongType
DoubleType = imports.DoubleType
FloatType = imports.FloatType
StructType = imports.StructType
StructField = imports.StructField
F = imports.F
Window = imports.Window


class TestCaseWhenCast:
    """Test CaseWhen.cast() method."""

    def test_casewhen_cast_to_long_issue_243(self, spark):
        """Test CaseWhen.cast() to long (exact scenario from issue #243)."""
        df = spark.createDataFrame(
            [
                {"value": "A"},
                {"value": "B"},
            ]
        )

        # This is the exact code from issue #243
        result = df.withColumn(
            "when_result",
            F.when(F.col("value") == "A", F.lit(100))
            .otherwise(F.lit(200))
            .cast("long"),
        )

        rows = result.collect()

        assert len(rows) == 2
        # Verify the cast worked - values should be long/integer
        assert rows[0]["when_result"] == 100
        assert rows[1]["when_result"] == 200

        # Verify schema shows long type
        schema = result.schema
        # Use PySpark-compatible field access
        when_result_field = next(
            (f for f in schema.fields if f.name == "when_result"), None
        )
        assert when_result_field is not None
        assert isinstance(when_result_field.dataType, LongType), (
            f"Expected LongType, got {type(when_result_field.dataType)}"
        )

    def test_casewhen_cast_to_string(self, spark):
        """Test CaseWhen.cast() to string."""
        df = spark.createDataFrame(
            [
                {"value": "A"},
                {"value": "B"},
            ]
        )

        result = df.withColumn(
            "when_result",
            F.when(F.col("value") == "A", F.lit(100))
            .otherwise(F.lit(200))
            .cast("string"),
        )

        rows = result.collect()

        assert len(rows) == 2
        # Values should be strings
        assert rows[0]["when_result"] == "100"
        assert rows[1]["when_result"] == "200"

        # Verify schema shows string type
        schema = result.schema
        # Use PySpark-compatible field access
        when_result_field = next(
            (f for f in schema.fields if f.name == "when_result"), None
        )
        assert when_result_field is not None
        assert isinstance(when_result_field.dataType, StringType)

    def test_casewhen_cast_to_int(self, spark):
        """Test CaseWhen.cast() to int."""
        df = spark.createDataFrame(
            [
                {"value": "A"},
                {"value": "B"},
            ]
        )

        result = df.withColumn(
            "when_result",
            F.when(F.col("value") == "A", F.lit(100.5))
            .otherwise(F.lit(200.7))
            .cast("int"),
        )

        rows = result.collect()

        assert len(rows) == 2
        # Values should be integers (truncated)
        assert rows[0]["when_result"] == 100
        assert rows[1]["when_result"] == 200

    def test_casewhen_cast_to_double(self, spark):
        """Test CaseWhen.cast() to double."""
        df = spark.createDataFrame(
            [
                {"value": "A"},
                {"value": "B"},
            ]
        )

        result = df.withColumn(
            "when_result",
            F.when(F.col("value") == "A", F.lit(100))
            .otherwise(F.lit(200))
            .cast("double"),
        )

        rows = result.collect()

        assert len(rows) == 2
        # Values should be doubles
        assert rows[0]["when_result"] == 100.0
        assert rows[1]["when_result"] == 200.0

        # Verify schema shows double type
        schema = result.schema
        # Use PySpark-compatible field access
        when_result_field = next(
            (f for f in schema.fields if f.name == "when_result"), None
        )
        assert when_result_field is not None
        assert isinstance(when_result_field.dataType, DoubleType)

    def test_casewhen_cast_with_multiple_when(self, spark):
        """Test CaseWhen.cast() with multiple when conditions."""
        df = spark.createDataFrame(
            [
                {"value": 1},
                {"value": 2},
                {"value": 3},
            ]
        )

        result = df.withColumn(
            "category",
            F.when(F.col("value") == 1, "low")
            .when(F.col("value") == 2, "medium")
            .otherwise("high")
            .cast("string"),
        )

        rows = result.collect()

        assert len(rows) == 3
        assert rows[0]["category"] == "low"
        assert rows[1]["category"] == "medium"
        assert rows[2]["category"] == "high"

    def test_casewhen_cast_with_null_values(self, spark):
        """Test CaseWhen.cast() with null values."""
        df = spark.createDataFrame(
            [
                {"value": "A"},
                {"value": None},
            ]
        )

        result = df.withColumn(
            "when_result",
            F.when(F.col("value") == "A", F.lit(100))
            .otherwise(F.lit(None))
            .cast("long"),
        )

        rows = result.collect()

        assert len(rows) == 2
        assert rows[0]["when_result"] == 100
        assert rows[1]["when_result"] is None

    def test_casewhen_cast_in_select(self, spark):
        """Test CaseWhen.cast() in select operation."""
        df = spark.createDataFrame(
            [
                {"value": "A"},
                {"value": "B"},
            ]
        )

        result = df.select(
            F.when(F.col("value") == "A", F.lit(100))
            .otherwise(F.lit(200))
            .cast("long")
            .alias("result")
        )

        rows = result.collect()

        assert len(rows) == 2
        assert rows[0]["result"] == 100
        assert rows[1]["result"] == 200

    def test_casewhen_cast_with_datatype_object(self, spark):
        """Test CaseWhen.cast() with DataType object instead of string."""
        df = spark.createDataFrame(
            [
                {"value": "A"},
                {"value": "B"},
            ]
        )

        result = df.withColumn(
            "when_result",
            F.when(F.col("value") == "A", F.lit(100))
            .otherwise(F.lit(200))
            .cast(LongType()),
        )

        rows = result.collect()

        assert len(rows) == 2
        assert rows[0]["when_result"] == 100
        assert rows[1]["when_result"] == 200

        # Verify schema
        schema = result.schema
        # Use PySpark-compatible field access
        when_result_field = next(
            (f for f in schema.fields if f.name == "when_result"), None
        )
        assert when_result_field is not None
        assert isinstance(when_result_field.dataType, LongType)


class TestWindowFunctionCast:
    """Test WindowFunction.cast() method."""

    def test_window_function_cast_to_long(self, spark):
        """Test WindowFunction.cast() to long."""
        df = spark.createDataFrame(
            [
                {"id": 1, "value": 10},
                {"id": 2, "value": 20},
                {"id": 3, "value": 30},
            ]
        )

        window_spec = Window.orderBy("id")
        result = df.withColumn(
            "rank_long",
            F.row_number().over(window_spec).cast("long"),
        )

        rows = result.collect()

        assert len(rows) == 3
        # Verify the cast worked
        assert rows[0]["rank_long"] == 1
        assert rows[1]["rank_long"] == 2
        assert rows[2]["rank_long"] == 3

        # Verify schema shows long type
        schema = result.schema
        # Use PySpark-compatible field access
        rank_field = next((f for f in schema.fields if f.name == "rank_long"), None)
        assert rank_field is not None
        assert isinstance(rank_field.dataType, LongType)

    def test_window_function_cast_to_string(self, spark):
        """Test WindowFunction.cast() to string."""
        df = spark.createDataFrame(
            [
                {"id": 1, "value": 10},
                {"id": 2, "value": 20},
                {"id": 3, "value": 30},
            ]
        )

        window_spec = Window.orderBy("id")
        result = df.withColumn(
            "rank_str",
            F.row_number().over(window_spec).cast("string"),
        )

        rows = result.collect()

        assert len(rows) == 3
        # Values should be strings
        assert rows[0]["rank_str"] == "1"
        assert rows[1]["rank_str"] == "2"
        assert rows[2]["rank_str"] == "3"

        # Verify schema shows string type
        schema = result.schema
        # Use PySpark-compatible field access
        rank_field = next((f for f in schema.fields if f.name == "rank_str"), None)
        assert rank_field is not None
        assert isinstance(rank_field.dataType, StringType)

    def test_window_function_cast_to_double(self, spark):
        """Test WindowFunction.cast() to double."""
        df = spark.createDataFrame(
            [
                {"id": 1, "value": 10},
                {"id": 2, "value": 20},
                {"id": 3, "value": 30},
            ]
        )

        window_spec = Window.orderBy("id")
        result = df.withColumn(
            "rank_double",
            F.row_number().over(window_spec).cast("double"),
        )

        rows = result.collect()

        assert len(rows) == 3
        # Values should be doubles
        assert rows[0]["rank_double"] == 1.0
        assert rows[1]["rank_double"] == 2.0
        assert rows[2]["rank_double"] == 3.0

        # Verify schema shows double type
        schema = result.schema
        # Use PySpark-compatible field access
        rank_field = next((f for f in schema.fields if f.name == "rank_double"), None)
        assert rank_field is not None
        assert isinstance(rank_field.dataType, DoubleType)

    def test_window_function_cast_with_partition(self, spark):
        """Test WindowFunction.cast() with partitioned window."""
        df = spark.createDataFrame(
            [
                {"category": "A", "value": 10},
                {"category": "A", "value": 20},
                {"category": "B", "value": 30},
                {"category": "B", "value": 40},
            ]
        )

        window_spec = Window.partitionBy("category").orderBy("value")
        result = df.withColumn(
            "rank_long",
            F.row_number().over(window_spec).cast("long"),
        )

        rows = result.collect()

        assert len(rows) == 4
        # Verify ranks are per partition
        assert rows[0]["rank_long"] == 1  # First in category A
        assert rows[1]["rank_long"] == 2  # Second in category A
        assert rows[2]["rank_long"] == 1  # First in category B
        assert rows[3]["rank_long"] == 2  # Second in category B

    def test_window_function_cast_with_sum(self, spark):
        """Test WindowFunction.cast() with sum() window function."""
        df = spark.createDataFrame(
            [
                {"id": 1, "value": 10},
                {"id": 2, "value": 20},
                {"id": 3, "value": 30},
            ]
        )

        window_spec = Window.orderBy("id").rowsBetween(
            Window.unboundedPreceding, Window.currentRow
        )
        result = df.withColumn(
            "sum_long",
            F.sum("value").over(window_spec).cast("long"),
        )

        rows = result.collect()

        assert len(rows) == 3
        # Verify cumulative sum
        assert rows[0]["sum_long"] == 10
        assert rows[1]["sum_long"] == 30
        assert rows[2]["sum_long"] == 60

    def test_window_function_cast_in_select(self, spark):
        """Test WindowFunction.cast() in select operation."""
        df = spark.createDataFrame(
            [
                {"id": 1, "value": 10},
                {"id": 2, "value": 20},
            ]
        )

        window_spec = Window.orderBy("id")
        result = df.select(F.row_number().over(window_spec).cast("long").alias("rank"))

        rows = result.collect()

        assert len(rows) == 2
        assert rows[0]["rank"] == 1
        assert rows[1]["rank"] == 2

    def test_window_function_cast_with_datatype_object(self, spark):
        """Test WindowFunction.cast() with DataType object instead of string."""
        df = spark.createDataFrame(
            [
                {"id": 1, "value": 10},
                {"id": 2, "value": 20},
            ]
        )

        window_spec = Window.orderBy("id")
        result = df.withColumn(
            "rank_long",
            F.row_number().over(window_spec).cast(LongType()),
        )

        rows = result.collect()

        assert len(rows) == 2
        assert rows[0]["rank_long"] == 1
        assert rows[1]["rank_long"] == 2

        # Verify schema
        schema = result.schema
        # Use PySpark-compatible field access
        rank_field = next((f for f in schema.fields if f.name == "rank_long"), None)
        assert rank_field is not None
        assert isinstance(rank_field.dataType, LongType)


class TestCaseWhenWindowFunctionCastParity:
    """PySpark parity tests for CaseWhen and WindowFunction cast operations."""

    def test_casewhen_cast_parity_issue_243(self, spark):
        """Test CaseWhen.cast() parity with PySpark (exact issue #243 scenario)."""
        df = spark.createDataFrame(
            [
                {"value": "A"},
                {"value": "B"},
            ]
        )

        # Exact code from issue #243
        result = df.withColumn(
            "when_result",
            F.when(F.col("value") == "A", F.lit(100))
            .otherwise(F.lit(200))
            .cast("long"),
        )

        rows = result.collect()

        # Verify PySpark behavior
        assert len(rows) == 2
        assert rows[0]["when_result"] == 100
        assert rows[1]["when_result"] == 200

        # Verify schema matches PySpark
        schema = result.schema
        # Use PySpark-compatible field access
        when_result_field = next(
            (f for f in schema.fields if f.name == "when_result"), None
        )
        assert when_result_field is not None
        # PySpark returns LongType for cast("long")
        assert isinstance(when_result_field.dataType, LongType)

    def test_window_function_cast_parity(self, spark):
        """Test WindowFunction.cast() parity with PySpark."""
        df = spark.createDataFrame(
            [
                {"id": 1, "value": 10},
                {"id": 2, "value": 20},
                {"id": 3, "value": 30},
            ]
        )

        window_spec = Window.orderBy("id")
        result = df.withColumn(
            "rank_long",
            F.row_number().over(window_spec).cast("long"),
        )

        rows = result.collect()

        # Verify PySpark behavior
        assert len(rows) == 3
        assert rows[0]["rank_long"] == 1
        assert rows[1]["rank_long"] == 2
        assert rows[2]["rank_long"] == 3

        # Verify schema matches PySpark
        schema = result.schema
        # Use PySpark-compatible field access
        rank_field = next((f for f in schema.fields if f.name == "rank_long"), None)
        assert rank_field is not None
        assert isinstance(rank_field.dataType, LongType)