JsonPropertyRename5398Test.java

package tools.jackson.databind.introspect;

import org.junit.jupiter.api.Test;

import com.fasterxml.jackson.annotation.*;

import tools.jackson.databind.*;
import tools.jackson.databind.testutil.DatabindTestUtil;

import static org.junit.jupiter.api.Assertions.*;

// [databind#5398] @JsonProperty on getter with @JsonIgnore on setter
// causes deserialization to fail since 2.18.4
public class JsonPropertyRename5398Test extends DatabindTestUtil
{
    static class TestRename5398 {
        private String prop;

        @JsonProperty(value = "renamedProp")
        public String getProp() {
            return prop;
        }

        @JsonIgnore
        public void setProp(String prop) {
            this.prop = prop;
        }
    }

	static class TestStd5398 {
        private String prop;

        @JsonProperty
        public String getProp() {
            return prop;
        }

        @JsonIgnore
        public void setProp(String prop) {
            this.prop = prop;
        }
    }

    private final ObjectMapper MAPPER = newJsonMapper();

    @Test
    public void testRenamedPropertyWithIgnoredSetter5398()
    {
        TestRename5398 original = new TestRename5398();
		original.setProp("someValue");

        String json = MAPPER.writeValueAsString(original);

        // Should serialize with renamed property
        assertEquals("{\"renamedProp\":\"someValue\"}", json);

        // Should be able to deserialize back (setter is ignored, so field remains default)
        TestRename5398 result = MAPPER.readValue(json, TestRename5398.class);
        assertNotNull(result);
        // The setter is ignored but the property is still considered read-write
		assertEquals("someValue", result.getProp());
    }

    @Test
    public void testStandardPropertyWithIgnoredSetter5398() throws Exception
    {
        TestStd5398 original = new TestStd5398();
		original.setProp("someValue");

        String json = MAPPER.writeValueAsString(original);

        // Should serialize with renamed property
        assertEquals("{\"prop\":\"someValue\"}", json);

        // Should be able to deserialize back (setter is ignored, so field remains default)
        TestStd5398 result = MAPPER.readValue(json, TestStd5398.class);
        assertNotNull(result);
		// The setter is ignored but the property is still considered read-write
		assertEquals("someValue", result.getProp());
    }
}