robin-sparkless 4.4.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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
"""Test issue #328: split() function with limit parameter.

This test verifies that F.split() correctly supports the optional limit
parameter. Uses get_imports from fixture only.
"""

from sparkless.testing import get_imports

_imports = get_imports()
SparkSession = _imports.SparkSession
F = _imports.F


class TestIssue328SplitLimit:
    """Test split() function with limit parameter."""

    def _get_unique_app_name(self, test_name: str) -> str:
        """Generate unique app name for parallel test execution."""
        import os
        import threading

        thread_id = threading.current_thread().ident
        process_id = os.getpid()
        return f"{test_name}_{process_id}_{thread_id}"

    def test_split_with_limit(self):
        """Test split with limit parameter (issue example)."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            # Exact example from issue #328
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "StringValue": "A,B,C,D,E,F"},
                ]
            )

            # split StringValue with a pattern match limit of 3
            df = df.withColumn("StringArray", F.split(F.col("StringValue"), ",", 3))

            # show that the limit was applied by exploding the array
            df = df.withColumn("StringArray", F.explode(F.col("StringArray")))

            rows = df.collect()
            assert len(rows) == 3  # Should have 3 elements after limit=3

            # Expected: ["A", "B", "C,D,E,F"]
            values = [r["StringArray"] for r in rows]
            assert "A" in values
            assert "B" in values
            assert "C,D,E,F" in values
            assert "C" not in values  # Should not be split further
        finally:
            spark.stop()

    def test_split_with_limit_1(self):
        """Test split with limit=1 (no split, returns original as single element)."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": "A,B,C,D"},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), ",", 1))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 1  # limit=1 means 1 part (no split)

            values = [r["Array"] for r in rows]
            assert "A,B,C,D" in values  # Original string unsplit
        finally:
            spark.stop()

    def test_split_with_limit_2(self):
        """Test split with limit=2."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": "A,B,C,D"},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), ",", 2))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 2  # limit=2 means 2 parts

            values = [r["Array"] for r in rows]
            assert "A" in values
            assert "B,C,D" in values
        finally:
            spark.stop()

    def test_split_without_limit(self):
        """Test split without limit (default behavior)."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": "A,B,C,D"},
                ]
            )

            # No limit parameter - should split all
            df = df.withColumn("Array", F.split(F.col("Value"), ","))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 4  # All parts split

            values = [r["Array"] for r in rows]
            assert "A" in values
            assert "B" in values
            assert "C" in values
            assert "D" in values
        finally:
            spark.stop()

    def test_split_with_limit_larger_than_splits(self):
        """Test split with limit larger than actual number of splits."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": "A,B,C"},
                ]
            )

            # Limit=10, but only 2 splits possible -> should split all
            df = df.withColumn("Array", F.split(F.col("Value"), ",", 10))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 3  # All parts split (limit doesn't matter)

            values = [r["Array"] for r in rows]
            assert "A" in values
            assert "B" in values
            assert "C" in values
        finally:
            spark.stop()

    def test_split_with_limit_minus_one(self):
        """Test split with limit=-1 (no limit, default behavior)."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": "A,B,C,D"},
                ]
            )

            # limit=-1 should behave like no limit
            df = df.withColumn("Array", F.split(F.col("Value"), ",", -1))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 4  # All parts split

            values = [r["Array"] for r in rows]
            assert "A" in values
            assert "B" in values
            assert "C" in values
            assert "D" in values
        finally:
            spark.stop()

    def test_split_with_null_values(self):
        """Test split with null values."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": "A,B,C"},
                    {"Name": "Bob", "Value": None},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), ",", 2))

            rows = df.collect()
            assert len(rows) == 2

            row_alice = [r for r in rows if r["Name"] == "Alice"][0]
            row_bob = [r for r in rows if r["Name"] == "Bob"][0]

            # Alice should have array
            assert row_alice["Array"] is not None
            # Bob should have None
            assert row_bob["Array"] is None
        finally:
            spark.stop()

    def test_split_with_empty_string(self):
        """Test split with empty string."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": ""},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), ",", 2))

            rows = df.collect()
            assert len(rows) == 1

            row_alice = [r for r in rows if r["Name"] == "Alice"][0]
            # Empty string should result in array with one empty element
            assert row_alice["Array"] == [""]
        finally:
            spark.stop()

    def test_split_in_select(self):
        """Test split with limit in select context."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": "A,B,C,D"},
                ]
            )

            df = df.select(
                "Name",
                F.split(F.col("Value"), ",", 2).alias("Array"),
            )

            rows = df.collect()
            assert len(rows) == 1

            row_alice = [r for r in rows if r["Name"] == "Alice"][0]
            assert len(row_alice["Array"]) == 2  # limit=2 means 2 parts
            assert row_alice["Array"][0] == "A"
            assert row_alice["Array"][1] == "B,C,D"
        finally:
            spark.stop()

    def test_split_multi_char_delimiter(self):
        """Test split with multi-character delimiter."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Value": "A::B::C::D"},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), "::", 2))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 2
            values = [r["Array"] for r in rows]
            assert "A" in values
            assert "B::C::D" in values
        finally:
            spark.stop()

    def test_split_special_regex_characters(self):
        """Test split with special regex characters in delimiter."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            # Test with dot (.) which is special in regex
            df = spark.createDataFrame(
                [
                    {"Value": "192.168.1.1"},
                ]
            )

            # Use escaped dot so split treats '.' as a literal (PySpark regex).
            df = df.withColumn("Array", F.split(F.col("Value"), "\\.", 3))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 3
            values = [r["Array"] for r in rows]
            assert "192" in values
            assert "168" in values
            assert "1.1" in values
        finally:
            spark.stop()

    def test_split_whitespace_delimiter(self):
        """Test split with whitespace delimiter."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Value": "one two three four"},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), " ", 2))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 2
            values = [r["Array"] for r in rows]
            assert "one" in values
            assert "two three four" in values
        finally:
            spark.stop()

    def test_split_consecutive_delimiters(self):
        """Test split with consecutive delimiters."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Value": "A,,B,,C"},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), ",", 3))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 3
            values = [r["Array"] for r in rows]
            assert "A" in values
            assert "" in values  # Empty string between consecutive delimiters
            assert "B,,C" in values
        finally:
            spark.stop()

    def test_split_delimiter_not_found(self):
        """Test split when delimiter is not found in string."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Value": "NoDelimiterHere"},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), ",", 2))

            rows = df.collect()
            assert len(rows) == 1
            # When delimiter not found, should return array with original string
            assert rows[0]["Array"] == ["NoDelimiterHere"]
        finally:
            spark.stop()

    def test_split_limit_zero(self):
        """Test split with limit=0 (edge case - PySpark treats as no limit)."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Value": "A,B,C,D"},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), ",", 0))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            # limit=0 in PySpark behaves like no limit (splits all)
            assert len(rows) == 4
            values = [r["Array"] for r in rows]
            assert "A" in values
            assert "B" in values
            assert "C" in values
            assert "D" in values
        finally:
            spark.stop()

    def test_split_unicode_characters(self):
        """Test split with Unicode characters."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Value": "José|María|José"},
                ]
            )

            # Escape '|' so it is treated as a literal, not regex alternation.
            df = df.withColumn("Array", F.split(F.col("Value"), "\\|", 2))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 2
            values = [r["Array"] for r in rows]
            assert "José" in values
            assert "María|José" in values
        finally:
            spark.stop()

    def test_split_very_long_string(self):
        """Test split with very long string."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            # Create a long string with many delimiters
            long_str = ",".join([f"item{i}" for i in range(100)])
            df = spark.createDataFrame(
                [
                    {"Value": long_str},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), ",", 10))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 10  # limit=10 means 10 parts
            # First should be "item0"
            values = [r["Array"] for r in rows]
            assert "item0" in values
            # Last should contain remaining items
            last_item = [r["Array"] for r in rows if "item99" in r["Array"]]
            assert len(last_item) > 0
        finally:
            spark.stop()

    def test_split_empty_delimiter(self):
        """Test split with empty delimiter (splits into individual characters)."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Value": "ABC"},
                ]
            )

            # Empty delimiter - PySpark splits into individual characters
            df = df.withColumn("Array", F.split(F.col("Value"), ""))

            rows = df.collect()
            assert len(rows) == 1
            # Empty delimiter splits into individual characters
            assert rows[0]["Array"] == ["A", "B", "C"]
        finally:
            spark.stop()

    def test_split_leading_trailing_delimiters(self):
        """Test split with leading and trailing delimiters."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Value": ",A,B,C,"},
                ]
            )

            df = df.withColumn("Array", F.split(F.col("Value"), ",", 4))
            df = df.withColumn("Array", F.explode(F.col("Array")))

            rows = df.collect()
            assert len(rows) == 4
            values = [r["Array"] for r in rows]
            # Leading delimiter creates empty string at start
            # With limit=4, trailing delimiter is included in last part
            assert "" in values
            assert "A" in values
            assert "B" in values
            assert "C," in values  # Trailing delimiter included in last part
        finally:
            spark.stop()

    def test_split_different_limit_values(self):
        """Test split with various limit values to verify behavior."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            base_value = "A,B,C,D,E"
            df = spark.createDataFrame(
                [
                    {"Value": base_value},
                ]
            )

            # Test multiple limits
            for limit in [1, 2, 3, 4, 5, 6, 10]:
                result_df = df.withColumn("Array", F.split(F.col("Value"), ",", limit))
                rows = result_df.collect()
                arr = rows[0]["Array"]
                # Verify we get exactly 'limit' parts (or all parts if limit > splits)
                expected_parts = min(limit, 5) if limit > 0 else 1
                assert len(arr) == expected_parts, (
                    f"limit={limit}: expected {expected_parts} parts, got {len(arr)}"
                )
        finally:
            spark.stop()

    def test_split_in_filter_context(self):
        """Test split with limit used in filter context."""
        import inspect

        test_name = inspect.stack()[1].function
        spark = SparkSession.builder.appName(
            self._get_unique_app_name(test_name)
        ).getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Value": "A,B,C", "Category": "test1"},
                    {"Value": "X,Y", "Category": "test2"},
                    {"Value": "P,Q,R,S", "Category": "test3"},
                ]
            )

            # Filter where split with limit=2 has first element "A"
            df = df.withColumn(
                "First", F.element_at(F.split(F.col("Value"), ",", 2), 1)
            )
            df = df.filter(F.col("First") == "A")

            rows = df.collect()
            assert len(rows) == 1
            assert rows[0]["Category"] == "test1"
        finally:
            spark.stop()