Document and test ol.getUid sequence behavior

This commit is contained in:
Thomas Moelhave
2016-09-02 09:09:24 +02:00
parent 617dca34f5
commit eddfc04ccc
2 changed files with 25 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
goog.provide('ol.test');
goog.require('ol');
describe('getUid()', function() {
it('is constant once generated', function() {
var a = {};
expect(ol.getUid(a)).to.be(ol.getUid(a));
});
it('generates a strictly increasing sequence', function() {
var a = {} , b = {}, c = {};
ol.getUid(a);
ol.getUid(c);
ol.getUid(b);
//uid order should be a < c < b
expect(ol.getUid(a)).to.be.lessThan(ol.getUid(c));
expect(ol.getUid(c)).to.be.lessThan(ol.getUid(b));
expect(ol.getUid(a)).to.be.lessThan(ol.getUid(b));
});
});