summaryrefslogtreecommitdiff
path: root/misc/openlayers/tests/Symbolizer/Point.html
blob: b1311c07f9c4950ae8932c7e7515879f24b0a183 (plain)
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
<html> 
<head> 
    <script src="../OLLoader.js"></script> 
    <script type="text/javascript">

    function test_constructor(t) { 
        t.plan(3); 
        
        var symbolizer = new OpenLayers.Symbolizer.Point({foo: "bar"});
        
        t.ok(symbolizer instanceof OpenLayers.Symbolizer, "instance of OpenLayers.Symbolizer");
        t.ok(symbolizer instanceof OpenLayers.Symbolizer.Point, "instance of OpenLayers.Symbolizer.Point");
        t.eq(symbolizer.foo, "bar", "constructor applies config properties");

    }
    
    function test_clone(t) {
        t.plan(2);
        
        var symbolizer = new OpenLayers.Symbolizer.Point({foo: "bar"});
        var clone = symbolizer.clone();
        
        t.ok(clone instanceof OpenLayers.Symbolizer.Point, "correct type");
        t.eq(clone.foo, "bar", "clone copies properties");
        
    }

    function test_defaults(t) {
        t.plan(16);
        var symbolizer = new OpenLayers.Symbolizer.Point();
        t.ok(symbolizer.strokeColor === undefined, "no default strokeColor");
        t.ok(symbolizer.strokeOpacity === undefined, "no default strokeOpacity");
        t.ok(symbolizer.strokeWidth === undefined, "no default strokeWidth");
        t.ok(symbolizer.strokeLinecap === undefined, "no default strokeLinecap");
        t.ok(symbolizer.strokeDashstyle === undefined, "no default strokeDashstyle");
        t.ok(symbolizer.fillColor === undefined, "no default fillColor");
        t.ok(symbolizer.fillOpacity === undefined, "no default fillOpacity");
        t.ok(symbolizer.pointRadius === undefined, "no default pointRadius");
        t.ok(symbolizer.externalGraphic === undefined, "no default externalGraphic");
        t.ok(symbolizer.graphicWidth === undefined, "no default graphicWidth");
        t.ok(symbolizer.graphicHeight === undefined, "no default graphicHeight");
        t.ok(symbolizer.graphicOpacity === undefined, "no default graphicOpacity");
        t.ok(symbolizer.graphicXOffset === undefined, "no default graphicXOffset");
        t.ok(symbolizer.graphicYOffset === undefined, "no default graphicYOffset");
        t.ok(symbolizer.rotation === undefined, "no default rotation");
        t.ok(symbolizer.graphicName === undefined, "no default graphicName");
    }

    </script> 
</head>
<body></body> 
</html>