Changeset 18890 in josm for trunk/test


Ignore:
Timestamp:
2023-10-31T19:06:59+01:00 (13 months ago)
Author:
taylor.smock
Message:

Fix #23256: AbstractPrimitive::putAll not updating values (patch by marcello, modified)

Modifications are as follows:

  • Unit tests were split out into discrete units for better test feedback in the future.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/osm/AbstractPrimitiveTest.java

    r18853 r18890  
    22package org.openstreetmap.josm.data.osm;
    33
     4import static org.junit.jupiter.api.Assertions.assertEquals;
    45import static org.junit.jupiter.api.Assertions.assertFalse;
     6import static org.junit.jupiter.api.Assertions.assertNull;
    57import static org.junit.jupiter.api.Assertions.assertTrue;
    68
    79import java.util.Collections;
     10import java.util.HashMap;
     11import java.util.Map;
    812
    913import org.junit.jupiter.api.Test;
     14import org.openstreetmap.josm.TestUtils;
    1015
    1116/**
     
    6671        assertTrue(p.hasTagDifferent("foo", Collections.singleton("bar")));
    6772    }
     73
     74    /**
     75     * Unit test of {@link AbstractPrimitive#putAll}
     76     */
     77    @Test
     78    void testPutAllInsert() {
     79        AbstractPrimitive p = new Node();
     80        Map<String, String> tags = new HashMap<>();
     81
     82        tags.put("a", "va1");
     83        tags.put("b", "vb1");
     84        p.putAll(tags);
     85        assertEquals("va1", p.get("a"));
     86        assertEquals("vb1", p.get("b"));
     87
     88    }
     89
     90    /**
     91     * Unit test of {@link AbstractPrimitive#putAll}
     92     */
     93    @Test
     94    void testPutAllChange() {
     95        AbstractPrimitive p = TestUtils.newNode("a=va1 b=vb1");
     96        Map<String, String> tags = new HashMap<>();
     97
     98        tags.put("a", "va2");
     99        p.putAll(tags);
     100        assertEquals("va2", p.get("a"));
     101        assertEquals("vb1", p.get("b"));
     102    }
     103
     104    /**
     105     * Unit test of {@link AbstractPrimitive#putAll}
     106     */
     107    @Test
     108    void testPutAllChangeAndInsert() {
     109        AbstractPrimitive p = TestUtils.newNode("a=va2 b=vb1");
     110        Map<String, String> tags = new HashMap<>();
     111
     112        tags.put("b", "vb3");
     113        tags.put("c", "vc3");
     114        p.putAll(tags);
     115        assertEquals("va2", p.get("a"));
     116        assertEquals("vb3", p.get("b"));
     117        assertEquals("vc3", p.get("c"));
     118    }
     119
     120    /**
     121     * Unit test of {@link AbstractPrimitive#putAll}
     122     */
     123    @Test
     124    void testPutAllChangeAndRemove() {
     125        AbstractPrimitive p = TestUtils.newNode("a=va2 b=vb3 c=vc3");
     126        Map<String, String> tags = new HashMap<>();
     127
     128        tags.put("a", "va4");
     129        tags.put("b", null);
     130        tags.put(null, null);
     131        p.putAll(tags);
     132        assertEquals("va4", p.get("a"));
     133        assertNull(p.get("b"));
     134        assertEquals("vc3", p.get("c"));
     135    }
    68136}
Note: See TracChangeset for help on using the changeset viewer.