modify all equals() functions in Util.js (Size, Pixel, LonLat, Bounds) such that if a null value is passed in, they return false. Tests updated to make sure this is true.
git-svn-id: http://svn.openlayers.org/trunk/openlayers@608 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
+27
-5
@@ -48,10 +48,15 @@ OpenLayers.Pixel.prototype = {
|
|||||||
* @param {OpenLayers.Pixel} px
|
* @param {OpenLayers.Pixel} px
|
||||||
*
|
*
|
||||||
* @return whether or not the point passed in as parameter is equal to this
|
* @return whether or not the point passed in as parameter is equal to this
|
||||||
|
* note that if px passed in is null, returns false
|
||||||
* @type bool
|
* @type bool
|
||||||
*/
|
*/
|
||||||
equals:function(px) {
|
equals:function(px) {
|
||||||
return ((this.x == px.x) && (this.y == px.y));
|
var equals = false;
|
||||||
|
if (px != null) {
|
||||||
|
equals = ((this.x == px.x) && (this.y == px.y));
|
||||||
|
}
|
||||||
|
return equals;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -127,11 +132,16 @@ OpenLayers.Size.prototype = {
|
|||||||
* @param {OpenLayers.Size} sz
|
* @param {OpenLayers.Size} sz
|
||||||
* @returns Boolean value indicating whether the passed-in OpenLayers.Size
|
* @returns Boolean value indicating whether the passed-in OpenLayers.Size
|
||||||
* object has the same w and h components as this
|
* object has the same w and h components as this
|
||||||
|
* note that if sz passed in is null, returns false
|
||||||
*
|
*
|
||||||
* @type bool
|
* @type bool
|
||||||
*/
|
*/
|
||||||
equals:function(sz) {
|
equals:function(sz) {
|
||||||
return ((this.w == sz.w) && (this.h == sz.h));
|
var equals = false;
|
||||||
|
if (sz != null) {
|
||||||
|
equals = ((this.w == sz.w) && (this.h == sz.h));
|
||||||
|
}
|
||||||
|
return equals;
|
||||||
},
|
},
|
||||||
|
|
||||||
/** @final @type String */
|
/** @final @type String */
|
||||||
@@ -203,11 +213,16 @@ OpenLayers.LonLat.prototype = {
|
|||||||
* @param {OpenLayers.LonLat} ll
|
* @param {OpenLayers.LonLat} ll
|
||||||
* @returns Boolean value indicating whether the passed-in OpenLayers.LonLat
|
* @returns Boolean value indicating whether the passed-in OpenLayers.LonLat
|
||||||
* object has the same lon and lat components as this
|
* object has the same lon and lat components as this
|
||||||
|
* note that if ll passed in is null, returns false
|
||||||
*
|
*
|
||||||
* @type bool
|
* @type bool
|
||||||
*/
|
*/
|
||||||
equals:function(ll) {
|
equals:function(ll) {
|
||||||
return ((this.lon == ll.lon) && (this.lat == ll.lat));
|
var equals = false;
|
||||||
|
if (ll != null) {
|
||||||
|
equals = ((this.lon == ll.lon) && (this.lat == ll.lat));
|
||||||
|
}
|
||||||
|
return equals;
|
||||||
},
|
},
|
||||||
|
|
||||||
/** @final @type String */
|
/** @final @type String */
|
||||||
@@ -282,12 +297,19 @@ OpenLayers.Bounds.prototype = {
|
|||||||
* @param {OpenLayers.Bounds} bounds
|
* @param {OpenLayers.Bounds} bounds
|
||||||
* @returns Boolean value indicating whether the passed-in OpenLayers.Bounds
|
* @returns Boolean value indicating whether the passed-in OpenLayers.Bounds
|
||||||
* object has the same left, right, top, bottom components as this
|
* object has the same left, right, top, bottom components as this
|
||||||
|
* note that if bounds passed in is null, returns false
|
||||||
*
|
*
|
||||||
* @type bool
|
* @type bool
|
||||||
*/
|
*/
|
||||||
equals:function(bounds) {
|
equals:function(bounds) {
|
||||||
return ((this.left == bounds.left) && (this.right == bounds.right) &&
|
var equals = false;
|
||||||
(this.top == bounds.top) && (this.bottom == bounds.bottom));
|
if (bounds != null) {
|
||||||
|
equals = ((this.left == bounds.left) &&
|
||||||
|
(this.right == bounds.right) &&
|
||||||
|
(this.top == bounds.top) &&
|
||||||
|
(this.bottom == bounds.bottom));
|
||||||
|
}
|
||||||
|
return equals;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -171,13 +171,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function test_11_Bounds_equals(t) {
|
function test_11_Bounds_equals(t) {
|
||||||
t.plan( 2 );
|
t.plan( 3 );
|
||||||
var boundsA = new OpenLayers.Bounds(1,2,3,4);
|
var boundsA = new OpenLayers.Bounds(1,2,3,4);
|
||||||
var boundsB = new OpenLayers.Bounds(1,2,3,4);
|
var boundsB = new OpenLayers.Bounds(1,2,3,4);
|
||||||
var boundsC = new OpenLayers.Bounds(1,5,3,4);
|
var boundsC = new OpenLayers.Bounds(1,5,3,4);
|
||||||
|
|
||||||
t.ok( boundsA.equals(boundsB), "equals() returns true on two equal bounds." );
|
t.ok( boundsA.equals(boundsB), "equals() returns true on two equal bounds." );
|
||||||
t.ok( !boundsA.equals(boundsC), "equals() returns false on two different bounds." );
|
t.ok( !boundsA.equals(boundsC), "equals() returns false on two different bounds." );
|
||||||
|
t.ok( !boundsA.equals(null), "equals() returns false on comparison to null");
|
||||||
}
|
}
|
||||||
|
|
||||||
function test_12_Bounds_getHeight_getWidth(t) {
|
function test_12_Bounds_getHeight_getWidth(t) {
|
||||||
|
|||||||
@@ -52,7 +52,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function test_06_LonLat_equals(t) {
|
function test_06_LonLat_equals(t) {
|
||||||
t.plan( 4 );
|
t.plan( 5 );
|
||||||
lonlat = new OpenLayers.LonLat(5,6);
|
lonlat = new OpenLayers.LonLat(5,6);
|
||||||
|
|
||||||
ll = new OpenLayers.LonLat(5,6);
|
ll = new OpenLayers.LonLat(5,6);
|
||||||
@@ -66,6 +66,9 @@
|
|||||||
|
|
||||||
ll = new OpenLayers.LonLat(1,2);
|
ll = new OpenLayers.LonLat(1,2);
|
||||||
t.eq( lonlat.equals(ll), false, "(5,6) does not equal (1,2)");
|
t.eq( lonlat.equals(ll), false, "(5,6) does not equal (1,2)");
|
||||||
|
|
||||||
|
t.ok( !lonlat.equals(null), "equals() returns false on comparison to null");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function test_07_LonLat_fromString(t) {
|
function test_07_LonLat_fromString(t) {
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function test_06_Pixel_equals(t) {
|
function test_06_Pixel_equals(t) {
|
||||||
t.plan( 4 );
|
t.plan( 5 );
|
||||||
pixel = new OpenLayers.Pixel(5,6);
|
pixel = new OpenLayers.Pixel(5,6);
|
||||||
|
|
||||||
px = new OpenLayers.Pixel(5,6);
|
px = new OpenLayers.Pixel(5,6);
|
||||||
@@ -46,6 +46,9 @@
|
|||||||
|
|
||||||
px = new OpenLayers.Pixel(1,2);
|
px = new OpenLayers.Pixel(1,2);
|
||||||
t.eq( pixel.equals(px), false, "(5,6) does not equal (1,2)");
|
t.eq( pixel.equals(px), false, "(5,6) does not equal (1,2)");
|
||||||
|
|
||||||
|
t.ok( !pixel.equals(null), "equals() returns false on comparison to null");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function test_07_Pixel_add(t) {
|
function test_07_Pixel_add(t) {
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function test_04_Size_equals(t) {
|
function test_04_Size_equals(t) {
|
||||||
t.plan( 4 );
|
t.plan( 5 );
|
||||||
size = new OpenLayers.Size(5,6);
|
size = new OpenLayers.Size(5,6);
|
||||||
|
|
||||||
sz = new OpenLayers.Size(5,6);
|
sz = new OpenLayers.Size(5,6);
|
||||||
@@ -47,6 +47,8 @@
|
|||||||
|
|
||||||
sz = new OpenLayers.Size(1,2);
|
sz = new OpenLayers.Size(1,2);
|
||||||
t.eq( size.equals(sz), false, "(5,6) does not equal (1,2)");
|
t.eq( size.equals(sz), false, "(5,6) does not equal (1,2)");
|
||||||
|
|
||||||
|
t.ok( !size.equals(null), "equals() returns false on comparison to null");
|
||||||
}
|
}
|
||||||
|
|
||||||
// -->
|
// -->
|
||||||
|
|||||||
Reference in New Issue
Block a user