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

    var popup;

    function test_Popup_default_constructor(t) {
        t.plan( 8 );

        var size = new OpenLayers.Size(OpenLayers.Popup.WIDTH,
                                       OpenLayers.Popup.HEIGHT);
        popup = new OpenLayers.Popup();

        t.ok( popup instanceof OpenLayers.Popup, "new OpenLayers.Popup returns Popup object" );
        t.ok(OpenLayers.String.startsWith(popup.id, "OpenLayers_Popup"),
             "valid default popupid");
        var firstID = popup.id;
        t.ok(popup.contentSize.equals(size), "good default popup.size");
        t.eq(popup.contentHTML, null, "good default popup.contentHTML");
        t.eq(popup.backgroundColor, OpenLayers.Popup.COLOR, "good default popup.backgroundColor");
        t.eq(popup.opacity, OpenLayers.Popup.OPACITY, "good default popup.opacity");
        t.eq(popup.border, OpenLayers.Popup.BORDER, "good default popup.border");

        
        popup = new OpenLayers.Popup();
        var newID = popup.id;
        t.ok(newID != firstID, "default id generator creating unique ids");
    }
    
    function test_Popup_constructor (t) {
        t.plan(9);

        var id = "chicken";
        var w = 500;
        var h = 400;
        var sz = new OpenLayers.Size(w,h);
        var lon = 5;
        var lat = 40;
        var ll = new OpenLayers.LonLat(lon, lat);
        var content = "foo";
        var closePopupCallback = function(e) {
            //this should get triggered by the "observer.observer();" call below
            t.ok(true, "closePopupCallback called")
        };

        popup = new OpenLayers.Popup(id,
                                     ll,
                                     sz,
                                     content,
                                     true,
                                     closePopupCallback);

        t.ok( popup instanceof OpenLayers.Popup, "new OpenLayers.Popup returns Popup object" );
        t.eq(popup.id, id, "popup.id set correctly");
        t.ok(popup.lonlat.equals(ll), "popup.lonlat set correctly");
        t.ok(popup.contentSize.equals(sz), "popup.size set correctly");
        t.eq(popup.contentHTML, content, "contentHTML porpoerty of set correctly");

        // test that a browser event is registered on click on popup closebox
        var closeImgDiv = popup.groupDiv.childNodes[1];
        var cacheID = closeImgDiv._eventCacheID;
        for (var i = 0; i < OpenLayers.Event.observers[cacheID].length; i++) {
            var observer = OpenLayers.Event.observers[cacheID][i];
            if (observer.element == closeImgDiv) {
                if (observer.name == "click") {
                    t.ok(true, "A click event was registered for the close box element");
                    //call the registered observer to make sure it's the right one
                    observer.observer();
                } else if (observer.name == "touchend") {
                    t.ok(true, "A touchend event was registered for the close box element");
                    //call the registered observer to make sure it's the right one
                    observer.observer();
                } else {
                    t.fail("A " + observer.name + " event was registered for the close box element");
                }
            }
        }
    }

    function test_Popup_updatePosition(t) {
        t.plan(1)
        var map = new OpenLayers.Map('map');
        map.addLayer(new OpenLayers.Layer('name', {'isBaseLayer':true}));
        map.zoomToMaxExtent();
        var popup = new OpenLayers.Popup('id');
        map.addPopup(popup);
        map.getLayerPxFromLonLat = function () { return null; }
        popup.moveTo=function() { t.fail("Shouldnt' call moveTo if layerpx is null"); }
        popup.lonlat = true;
        popup.updatePosition();
        t.ok(true, "update position doesn't fail when getLayerPxFromLonLat fails.");
        map.destroy();
    }
    function test_Popup_keepInMap(t) {
        
        var bn = OpenLayers.BROWSER_NAME;
        OpenLayers.BROWSER_NAME = "mock";
        t.plan(3);
        var map = new OpenLayers.Map("map");
        map.addLayer(new OpenLayers.Layer("", {isBaseLayer: true}));
        map.zoomToMaxExtent();
        var longString = "<div style='width: 200px; height: 200px'>Abc def</div>"; 
        popup = new OpenLayers.Popup("chicken", 
                                 new OpenLayers.LonLat(90, 60),
                                 new OpenLayers.Size(100,100),
                                 longString,
                                 null, true);
        popup.panMapIfOutOfView = false;
        popup.keepInMap = true;
        map.addPopup(popup);
        var safeSize = popup.getSafeContentSize(new OpenLayers.Size(1000,1000));
        popup = new OpenLayers.Popup("chicken", 
                                 new OpenLayers.LonLat(90, 60),
                                 new OpenLayers.Size(100,100),
                                 longString,
                                 null, true);
        popup.panMapIfOutOfView = true;
        popup.keepInMap = true;
        map.addPopup(popup);
        var safeSizePanKeep = popup.getSafeContentSize(new OpenLayers.Size(1000,1000));
        popup.keepInMap = false;
        map.addPopup(popup);
        map.setCenter(-180, -90);
        var safeSizePan = popup.getSafeContentSize(new OpenLayers.Size(1000,1000));
        t.ok(safeSizePan.equals(safeSizePanKeep), "Panning means that all sizes are equal");
        t.ok(safeSize.w < safeSizePan.w, "Width of non-panning is less");    
        t.ok(safeSize.h < safeSizePan.h, "Height of non-panning is less");    
        OpenLayers.BROWSER_NAME = bn;
    }    
    function test_Popup_draw(t) {
        t.plan( 15 );
        
        var id = "chicken";
        var x = 50;
        var y = 100;
        var w = 500;
        var h = 400;
        var content = "charlie";
        var color = "red";
        var hexColor = "#ff0000";
        var opacity = 0.5;
        var border = "1px solid";
        map1 = new OpenLayers.Map("map");
        popup = new OpenLayers.Popup(id);
        popup.setSize(new OpenLayers.Size(w, h));
        popup.setContentHTML(content);
        popup.setBackgroundColor(color);
        popup.setOpacity(opacity);
        popup.setBorder(border);
        map1.addPopup(popup);
        popup.moveTo(new OpenLayers.Pixel(x, y));
                                     
        t.eq(popup.div.id, id, "popup.div.id set correctly");
        t.eq(popup.div.style.left, x + "px", "left position of popup.div set correctly");
        t.eq(popup.div.style.top, y + "px", "top position of popup.div set correctly");

        var contentDiv = popup.div.childNodes[0].childNodes[0];
        
        t.eq(contentDiv.className, "olPopupContent", "correct content div className");
        t.eq(contentDiv.id, "chicken_contentDiv", "correct content div id");
        t.eq(contentDiv.style.position, "relative", "correct content div position");
        //Safari 3 separates style overflow into overflow-x and overflow-y
        var prop = (OpenLayers.BROWSER_NAME == 'safari') ? 'overflowX' : 'overflow';
        t.eq(contentDiv.style[prop], "", "correct content div overflow");
        t.eq(contentDiv.innerHTML, content, "correct content div content");

        var bColor = popup.div.style.backgroundColor;
        var goodColor = ( (bColor == color) || (bColor == hexColor));
        t.ok(goodColor, "good default popup.backgroundColor");
        if (navigator.appName.indexOf("Microsoft") == -1 || new RegExp(/msie 10/).test(navigator.userAgent.toLowerCase())) {
            t.eq(parseFloat(popup.div.style.opacity), opacity, "good default popup.opacity");
        } else {
            t.eq(popup.div.style.filter, "alpha(opacity=" + opacity*100 + ")", "good default popup.opacity");
        }
        //Safari 3 separates the border style into separate entities when reading it
        if (OpenLayers.BROWSER_NAME == 'safari') {
          var s = border.split(' ');
          t.ok(popup.div.style.borderTopWidth == s[0] && popup.div.style.borderTopStyle == s[1], "good default popup.border")
        } else {
          t.ok(popup.div.style.border.indexOf(border) != -1, "good default popup.border");
        }

        x += 50;
        popup.moveTo(new OpenLayers.Pixel(x, y));
        t.eq(popup.div.style.left, x + "px", "moveTo updates left position of popup.div correctly");
        t.eq(popup.div.style.top, y + "px", "moveTo updates top position of popup.div correctly");


    //closeOnMove
        var checkMapEvent = function(map, popup) {
            var startListeners = map.events.listeners['movestart'];
            if (startListeners) {
                for (var i = 0; i < startListeners.length; i++) {
                    var listener = startListeners[i];
                    if ((listener.obj == popup) && (listener.func == popup.hide)) {
                        return true;
                    }
                }
            }
            return false;
        };
        var registered = checkMapEvent(map1, popup);
        t.ok(!registered, "when not 'closeOnMove', correctly not registered hide() on map's movestart.")    
        
        var popup2 = new OpenLayers.Popup('test');
        popup2.closeOnMove = true;
        map1.addPopup(popup2);
        
        registered = checkMapEvent(map1, popup2);
        t.ok(registered, "when 'closeOnMove', correctly registered hide() on map's movestart.")    
    }

  </script>
</head>
<body>
<div id="map" style="width:512px; height:256px"> </div>
</body>
</html>