Changeset 6774 in josm for trunk/test/unit


Ignore:
Timestamp:
2014-01-29T22:15:06+01:00 (10 years ago)
Author:
simon04
Message:

fix #9633 - MapCSS: allow (named) colours with alpha

Location:
trunk/test/unit/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/PreferencesTest.groovy

    r6671 r6774  
    22
    33import org.openstreetmap.josm.Main
     4
     5import java.awt.Color
    46
    57class PreferencesTest extends GroovyTestCase {
     
    1012
    1113    void testColorName() {
    12         Main.pref.getColorName("color.layer {5DE308C0-916F-4B5A-B3DB-D45E17F30172}.gpx") == "{5DE308C0-916F-4B5A-B3DB-D45E17F30172}.gpx"
     14        assert Main.pref.getColorName("color.layer {5DE308C0-916F-4B5A-B3DB-D45E17F30172}.gpx") == "color.layer {5DE308C0-916F-4B5A-B3DB-D45E17F30172}.gpx"
     15    }
     16
     17    void testColorAlpha() {
     18        assert Main.pref.getColor("foo", new Color(0x12345678, true)).alpha == 0x12
     19        assert Main.pref.putColor("bar", new Color(0x12345678, true))
     20        assert Main.pref.getColor("bar", null).alpha == 0x12
     21    }
     22
     23    void testColorNameAlpha() {
     24        assert Main.pref.getColor("foo", "bar", new Color(0x12345678, true)).alpha == 0x12
     25        assert Main.pref.getDefaultColor("foo") == new Color(0x34, 0x56, 0x78, 0x12)
     26        assert Main.pref.getDefaultColor("foo").alpha == 0x12
    1327    }
    1428}
  • trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParserTest.groovy

    r6740 r6774  
    225225        def expected = new Color(0x88DD22)
    226226        assert e.getCascade(Environment.DEFAULT_LAYER).get("color") == expected
    227         assert Main.pref.getDefaultColor("MapCSS.testcolour1") == expected
     227        assert Main.pref.getDefaultColor("mappaint.mapcss.testcolour1") == expected
     228    }
     229
     230    @Test
     231    public void testColorNameTicket9191Alpha() throws Exception {
     232        def e = new Environment(null, new MultiCascade(), Environment.DEFAULT_LAYER, null)
     233        getParser("{color: testcolour2#12345678}").declaration().get(0).execute(e)
     234        def expected = new Color(0x12, 0x34, 0x56, 0x78)
     235        assert e.getCascade(Environment.DEFAULT_LAYER).get("color") == expected
     236        assert Main.pref.getDefaultColor("mappaint.mapcss.testcolour2") == expected
     237    }
     238
     239    @Test
     240    public void testColorParsing() throws Exception {
     241        assert ColorHelper.html2color("#12345678") == new Color(0x12, 0x34, 0x56, 0x78)
    228242    }
    229243}
Note: See TracChangeset for help on using the changeset viewer.