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
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
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
"""
Tests for issue #287: NAHandler.replace method.

Uses PySpark APIs only: df.na.replace() for mapping values.
Exception assertions use generic Exception (PySpark raises AnalysisException/ValueError).
"""

import os
import pytest
from tests.fixtures.spark_imports import get_spark_imports

_imports = get_spark_imports()
SparkSession = _imports.SparkSession


class TestIssue287NAReplace:
    """Test NAHandler.replace method."""

    def test_na_replace_with_dict_and_subset(self):
        """Test na.replace with dict mapping and subset parameter."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            map_value = {"A": "TypeA", "B": "TypeB"}

            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Type": "A"},
                    {"Name": "Bob", "Type": "B"},
                ]
            )

            # Test na.replace with dict and subset
            result = df.na.replace(map_value, subset=["Type"])

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

            # Verify replacements
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Type"] == "TypeA"

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Type"] == "TypeB"

            # Verify Name column unchanged
            assert alice_row["Name"] == "Alice"
            assert bob_row["Name"] == "Bob"
        finally:
            spark.stop()

    def test_na_replace_with_dict_no_subset(self):
        """Test na.replace with dict mapping without subset (applies to all columns)."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            map_value = {"A": "TypeA", "B": "TypeB"}

            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Type": "A"},
                    {"Name": "Bob", "Type": "B"},
                ]
            )

            # Test na.replace with dict but no subset (applies to all columns)
            result = df.na.replace(map_value)

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

            # Verify replacements in Type column
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Type"] == "TypeA"

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Type"] == "TypeB"
        finally:
            spark.stop()

    def test_na_replace_single_value(self):
        """Test na.replace with single value replacement."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 1},
                    {"Name": "Bob", "Value": 1},
                    {"Name": "Charlie", "Value": 2},
                ]
            )

            # Replace 1 with 99 in Value column
            result = df.na.replace(1, 99, subset=["Value"])

            rows = result.collect()
            assert len(rows) == 3

            # Verify replacements
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Value"] == 99

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Value"] == 99

            # Value 2 should remain unchanged
            charlie_row = next((r for r in rows if r["Name"] == "Charlie"), None)
            assert charlie_row is not None
            assert charlie_row["Value"] == 2
        finally:
            spark.stop()

    def test_na_replace_list_with_single_value(self):
        """Test na.replace with list of values replaced by single value."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 1},
                    {"Name": "Bob", "Value": 2},
                    {"Name": "Charlie", "Value": 3},
                ]
            )

            # Replace [1, 2] with 99
            result = df.na.replace([1, 2], 99, subset=["Value"])

            rows = result.collect()
            assert len(rows) == 3

            # Verify replacements
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Value"] == 99

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Value"] == 99

            # Value 3 should remain unchanged
            charlie_row = next((r for r in rows if r["Name"] == "Charlie"), None)
            assert charlie_row is not None
            assert charlie_row["Value"] == 3
        finally:
            spark.stop()

    def test_na_replace_list_with_list(self):
        """Test na.replace with list of values replaced by list of values."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 1},
                    {"Name": "Bob", "Value": 2},
                    {"Name": "Charlie", "Value": 3},
                ]
            )

            # Replace [1, 2] with [10, 20]
            result = df.na.replace([1, 2], [10, 20], subset=["Value"])

            rows = result.collect()
            assert len(rows) == 3

            # Verify replacements
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Value"] == 10

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Value"] == 20

            # Value 3 should remain unchanged
            charlie_row = next((r for r in rows if r["Name"] == "Charlie"), None)
            assert charlie_row is not None
            assert charlie_row["Value"] == 3
        finally:
            spark.stop()

    def test_na_replace_with_string_subset(self):
        """Test na.replace with string subset (single column)."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            map_value = {"A": "TypeA", "B": "TypeB"}

            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Type": "A"},
                    {"Name": "Bob", "Type": "B"},
                ]
            )

            # Test with string subset (should be converted to list)
            result = df.na.replace(map_value, subset="Type")

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

            # Verify replacements
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Type"] == "TypeA"

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Type"] == "TypeB"
        finally:
            spark.stop()

    def test_na_replace_with_tuple_subset(self):
        """Test na.replace with tuple subset."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            map_value = {"A": "TypeA", "B": "TypeB"}

            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Type": "A", "Category": "A"},
                    {"Name": "Bob", "Type": "B", "Category": "B"},
                ]
            )

            # Test with tuple subset
            result = df.na.replace(map_value, subset=("Type", "Category"))

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

            # Verify replacements in both columns
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Type"] == "TypeA"
            assert alice_row["Category"] == "TypeA"

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Type"] == "TypeB"
            assert bob_row["Category"] == "TypeB"
        finally:
            spark.stop()

    def test_na_replace_multiple_columns(self):
        """Test na.replace affecting multiple columns."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Type": "A", "Status": "A"},
                    {"Name": "Bob", "Type": "B", "Status": "B"},
                ]
            )

            # Replace in multiple columns
            result = df.na.replace(
                {"A": "TypeA", "B": "TypeB"}, subset=["Type", "Status"]
            )

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

            # Verify replacements in both columns
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Type"] == "TypeA"
            assert alice_row["Status"] == "TypeA"

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Type"] == "TypeB"
            assert bob_row["Status"] == "TypeB"
        finally:
            spark.stop()

    def test_na_replace_with_numeric_values(self):
        """Test na.replace with numeric values."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Score": 1.0},
                    {"Name": "Bob", "Score": 2.0},
                    {"Name": "Charlie", "Score": 3.0},
                ]
            )

            # Replace numeric values
            result = df.na.replace({1.0: 10.0, 2.0: 20.0}, subset=["Score"])

            rows = result.collect()
            assert len(rows) == 3

            # Verify replacements
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Score"] == 10.0

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Score"] == 20.0

            # Value 3.0 should remain unchanged
            charlie_row = next((r for r in rows if r["Name"] == "Charlie"), None)
            assert charlie_row is not None
            assert charlie_row["Score"] == 3.0
        finally:
            spark.stop()

    def test_na_replace_no_matches(self):
        """Test na.replace when no values match."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Type": "A"},
                    {"Name": "Bob", "Type": "B"},
                ]
            )

            # Replace values that don't exist
            result = df.na.replace({"X": "TypeX", "Y": "TypeY"}, subset=["Type"])

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

            # Values should remain unchanged
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Type"] == "A"

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Type"] == "B"
        finally:
            spark.stop()

    def test_na_replace_partial_matches(self):
        """Test na.replace when only some values match."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Type": "A"},
                    {"Name": "Bob", "Type": "B"},
                    {"Name": "Charlie", "Type": "C"},
                ]
            )

            # Replace only A and B, C should remain unchanged
            result = df.na.replace({"A": "TypeA", "B": "TypeB"}, subset=["Type"])

            rows = result.collect()
            assert len(rows) == 3

            # Verify replacements
            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Type"] == "TypeA"

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Type"] == "TypeB"

            # C should remain unchanged
            charlie_row = next((r for r in rows if r["Name"] == "Charlie"), None)
            assert charlie_row is not None
            assert charlie_row["Type"] == "C"
        finally:
            spark.stop()

    def test_na_replace_empty_dataframe(self):
        """Test na.replace on empty DataFrame."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame([], schema="Name string, Type string")

            # Should not raise error
            result = df.na.replace({"A": "TypeA"}, subset=["Type"])

            rows = result.collect()
            assert len(rows) == 0
        finally:
            spark.stop()

    def test_na_replace_chained_operations(self):
        """Test na.replace with chained DataFrame operations."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Type": "A", "Value": 1},
                    {"Name": "Bob", "Type": "B", "Value": 2},
                ]
            )

            # Chain replace with filter
            result = df.na.replace(
                {"A": "TypeA", "B": "TypeB"}, subset=["Type"]
            ).filter("Type = 'TypeA'")

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

            # Verify result
            alice_row = rows[0]
            assert alice_row["Name"] == "Alice"
            assert alice_row["Type"] == "TypeA"
        finally:
            spark.stop()

    def test_na_replace_with_none_values(self):
        """PySpark na.replace does not accept None as to_replace; use fillna for nulls."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": None},
                    {"Name": "Bob", "Value": 1},
                    {"Name": "Charlie", "Value": None},
                ]
            )

            with pytest.raises(Exception):
                df.na.replace(None, 0, subset=["Value"]).collect()
        finally:
            spark.stop()

    @pytest.mark.skipif(
        (
            os.environ.get("SPARKLESS_TEST_BACKEND")
            or os.environ.get("MOCK_SPARK_TEST_BACKEND")
            or ""
        )
        .strip()
        .lower()
        == "pyspark",
        reason="Skipped in PySpark mode (driver/worker Python version mismatch with pytest-xdist)",
    )
    def test_na_replace_with_none_as_replacement(self):
        """Test na.replace replacing values with None using dict."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 1},
                    {"Name": "Bob", "Value": 2},
                    {"Name": "Charlie", "Value": 3},
                ]
            )

            # Replace 2 with None using dict (dict allows None as value)
            result = df.na.replace({2: None}, subset=["Value"])

            rows = result.collect()
            assert len(rows) == 3

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Value"] is None

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Value"] == 1
        finally:
            spark.stop()

    def test_na_replace_with_boolean_values(self):
        """Test na.replace with boolean values."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Active": True},
                    {"Name": "Bob", "Active": False},
                    {"Name": "Charlie", "Active": True},
                ]
            )

            # Replace True with False
            result = df.na.replace(True, False, subset=["Active"])

            rows = result.collect()
            assert len(rows) == 3

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Active"] is False

            charlie_row = next((r for r in rows if r["Name"] == "Charlie"), None)
            assert charlie_row is not None
            assert charlie_row["Active"] is False

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Active"] is False
        finally:
            spark.stop()

    def test_na_replace_with_type_coercion(self):
        """Test na.replace with type coercion (string to number)."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": "1"},
                    {"Name": "Bob", "Value": "2"},
                    {"Name": "Charlie", "Value": "3"},
                ]
            )

            # Replace string "1" with string "10"
            result = df.na.replace("1", "10", subset=["Value"])

            rows = result.collect()
            assert len(rows) == 3

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Value"] == "10"
        finally:
            spark.stop()

    def test_na_replace_with_special_characters(self):
        """Test na.replace with special characters in strings."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Text": "Hello, World!"},
                    {"Name": "Bob", "Text": "Test@123"},
                    {"Name": "Charlie", "Text": "Hello, World!"},
                ]
            )

            # Replace special character strings
            result = df.na.replace("Hello, World!", "Hi", subset=["Text"])

            rows = result.collect()
            assert len(rows) == 3

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Text"] == "Hi"

            charlie_row = next((r for r in rows if r["Name"] == "Charlie"), None)
            assert charlie_row is not None
            assert charlie_row["Text"] == "Hi"
        finally:
            spark.stop()

    def test_na_replace_with_unicode(self):
        """Test na.replace with unicode characters."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Text": "Hello 🌍"},
                    {"Name": "Bob", "Text": "Test"},
                    {"Name": "Charlie", "Text": "Hello 🌍"},
                ]
            )

            # Replace unicode strings
            result = df.na.replace("Hello 🌍", "Hi World", subset=["Text"])

            rows = result.collect()
            assert len(rows) == 3

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Text"] == "Hi World"
        finally:
            spark.stop()

    def test_na_replace_with_zero_and_negative(self):
        """Test na.replace with zero and negative numbers."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 0},
                    {"Name": "Bob", "Value": -1},
                    {"Name": "Charlie", "Value": 5},
                ]
            )

            # Replace 0 and -1
            result = df.na.replace({0: 100, -1: 200}, subset=["Value"])

            rows = result.collect()
            assert len(rows) == 3

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Value"] == 100

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Value"] == 200

            charlie_row = next((r for r in rows if r["Name"] == "Charlie"), None)
            assert charlie_row is not None
            assert charlie_row["Value"] == 5
        finally:
            spark.stop()

    def test_na_replace_with_empty_dict(self):
        """Test na.replace with empty dict (should not change anything)."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 1},
                    {"Name": "Bob", "Value": 2},
                ]
            )

            # Empty dict should not change anything
            result = df.na.replace({}, subset=["Value"])

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

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Value"] == 1
        finally:
            spark.stop()

    def test_na_replace_with_empty_list(self):
        """Test na.replace with empty list (should not change anything)."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 1},
                    {"Name": "Bob", "Value": 2},
                ]
            )

            # Empty list should not change anything
            result = df.na.replace([], 99, subset=["Value"])

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

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Value"] == 1
        finally:
            spark.stop()

    def test_na_replace_invalid_subset_column(self):
        """Test na.replace with invalid subset column (should raise error)."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 1},
                ]
            )

            # Invalid column should raise error
            with pytest.raises(Exception):
                df.na.replace(1, 99, subset=["NonExistentColumn"]).collect()
        finally:
            spark.stop()

    def test_na_replace_mismatched_list_lengths(self):
        """Test na.replace with mismatched list lengths (should raise error)."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 1},
                ]
            )

            # Mismatched lengths should raise error
            with pytest.raises(Exception):
                df.na.replace([1, 2], [10], subset=["Value"]).collect()
        finally:
            spark.stop()

    def test_na_replace_none_value_with_scalar(self):
        """Test na.replace replacing a scalar with None (dict allows None as value)."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 1},
                    {"Name": "Bob", "Value": 2},
                    {"Name": "Charlie", "Value": 3},
                ]
            )

            result = df.na.replace({2: None}, subset=["Value"])
            rows = result.collect()

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Value"] is None
        finally:
            spark.stop()

    def test_na_replace_none_value_with_list(self):
        """PySpark: replacing list of values with None may raise or behave; assert result or exception."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": 1},
                    {"Name": "Bob", "Value": 2},
                    {"Name": "Charlie", "Value": 3},
                ]
            )

            try:
                result = df.na.replace([1, 2], None, subset=["Value"])
                rows = result.collect()
                assert len(rows) == 3
            except Exception:
                pass  # PySpark may reject None in list replacement
        finally:
            spark.stop()

    def test_na_replace_multiple_chained_operations(self):
        """Test na.replace with multiple chained replace operations."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Type": "A", "Status": "X"},
                    {"Name": "Bob", "Type": "B", "Status": "Y"},
                ]
            )

            # Chain multiple replace operations
            result = df.na.replace({"A": "TypeA"}, subset=["Type"]).na.replace(
                {"X": "StatusX"}, subset=["Status"]
            )

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

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Type"] == "TypeA"
            assert alice_row["Status"] == "StatusX"
        finally:
            spark.stop()

    def test_na_replace_with_mixed_types_in_column(self):
        """Test na.replace when column has mixed types (strings and numbers)."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            # Note: In Sparkless, columns typically have consistent types
            # This test verifies behavior when replacing specific values
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Value": "1"},
                    {"Name": "Bob", "Value": "2"},
                    {"Name": "Charlie", "Value": "3"},
                ]
            )

            # Replace string "1" with "10"
            result = df.na.replace("1", "10", subset=["Value"])

            rows = result.collect()
            assert len(rows) == 3

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Value"] == "10"
        finally:
            spark.stop()

    def test_na_replace_large_dataframe(self):
        """Test na.replace with a larger DataFrame (stress test)."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            # Create a larger DataFrame
            data = [{"Name": f"Person{i}", "Value": i % 3} for i in range(100)]
            df = spark.createDataFrame(data)

            # Replace values
            result = df.na.replace({0: 100, 1: 200, 2: 300}, subset=["Value"])

            rows = result.collect()
            assert len(rows) == 100

            # Verify some replacements
            person0_row = next((r for r in rows if r["Name"] == "Person0"), None)
            assert person0_row is not None
            assert person0_row["Value"] == 100

            person1_row = next((r for r in rows if r["Name"] == "Person1"), None)
            assert person1_row is not None
            assert person1_row["Value"] == 200
        finally:
            spark.stop()

    def test_na_replace_preserves_other_columns(self):
        """Test that na.replace preserves columns not in subset."""
        spark = SparkSession.builder.appName("issue-287").getOrCreate()
        try:
            df = spark.createDataFrame(
                [
                    {"Name": "Alice", "Type": "A", "Age": 25, "City": "NYC"},
                    {"Name": "Bob", "Type": "B", "Age": 30, "City": "LA"},
                ]
            )

            # Replace only in Type column
            result = df.na.replace({"A": "TypeA"}, subset=["Type"])

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

            alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
            assert alice_row is not None
            assert alice_row["Type"] == "TypeA"
            assert alice_row["Age"] == 25
            assert alice_row["City"] == "NYC"

            bob_row = next((r for r in rows if r["Name"] == "Bob"), None)
            assert bob_row is not None
            assert bob_row["Type"] == "B"
            assert bob_row["Age"] == 30
            assert bob_row["City"] == "LA"
        finally:
            spark.stop()

    def test_na_replace_subset_column_name(self, spark):
        """Test na.replace with subset column name (PySpark uses case-sensitive column names)."""
        df = spark.createDataFrame(
            [
                {"Name": "Alice", "Value": 1},
                {"Name": "Bob", "Value": 2},
            ]
        )

        result = df.na.replace(1, 99, subset=["Value"])

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

        alice_row = next((r for r in rows if r["Name"] == "Alice"), None)
        assert alice_row is not None
        assert alice_row["Value"] == 99