mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
83 lines
2.7 KiB
JavaScript
83 lines
2.7 KiB
JavaScript
describe('iD.coreContext', function() {
|
|
var assets = {
|
|
'iD/img/loader.gif': '/assets/iD/img/loader-b66184b5c4afbccc25f.gif'
|
|
};
|
|
|
|
describe('#assetPath', function() {
|
|
it('sets and gets assetPath', function() {
|
|
var context = iD.coreContext().init();
|
|
expect(context.assetPath()).to.eql('');
|
|
|
|
context.assetPath('iD/');
|
|
expect(context.assetPath()).to.eql('iD/');
|
|
});
|
|
});
|
|
|
|
describe('#assetMap', function() {
|
|
it('sets and gets assetMap', function() {
|
|
var context = iD.coreContext().init();
|
|
expect(context.assetMap()).to.eql({});
|
|
|
|
context.assetMap(assets);
|
|
expect(context.assetMap()).to.eql(assets);
|
|
});
|
|
});
|
|
|
|
describe('#asset', function() {
|
|
var context;
|
|
beforeEach(function() {
|
|
context = iD.coreContext().assetPath('iD/').assetMap(assets).init();
|
|
});
|
|
|
|
it('ignores absolute urls', function() {
|
|
expect(context.asset('HTTP://hello')).to.eql('HTTP://hello');
|
|
expect(context.asset('https://world')).to.eql('https://world');
|
|
});
|
|
it('looks first in assetMap', function() {
|
|
expect(context.asset('img/loader.gif')).to.eql('/assets/iD/img/loader-b66184b5c4afbccc25f.gif');
|
|
});
|
|
it('falls back to prepending assetPath', function() {
|
|
expect(context.asset('img/spinner.gif')).to.eql('iD/img/spinner.gif');
|
|
});
|
|
});
|
|
|
|
describe('#imagePath', function() {
|
|
var context;
|
|
beforeEach(function() {
|
|
context = iD.coreContext().assetPath('iD/').assetMap(assets).init();
|
|
});
|
|
|
|
it('looks first in assetMap', function() {
|
|
expect(context.imagePath('loader.gif')).to.eql('/assets/iD/img/loader-b66184b5c4afbccc25f.gif');
|
|
});
|
|
it('falls back to prepending assetPath', function() {
|
|
expect(context.imagePath('spinner.gif')).to.eql('iD/img/spinner.gif');
|
|
});
|
|
});
|
|
|
|
describe('#debug', function() {
|
|
it('sets and gets debug flags', function() {
|
|
var context = iD.coreContext().init();
|
|
var flags = {
|
|
tile: false,
|
|
collision: false,
|
|
imagery: false,
|
|
target: false,
|
|
downloaded: false
|
|
};
|
|
|
|
expect(context.debugFlags()).to.eql(flags);
|
|
|
|
context.setDebug('tile', true);
|
|
expect(context.getDebug('tile')).to.be.true;
|
|
|
|
context.setDebug('collision');
|
|
expect(context.getDebug('collision')).to.be.true;
|
|
|
|
context.setDebug('tile', false);
|
|
expect(context.getDebug('tile')).to.be.false;
|
|
});
|
|
});
|
|
|
|
});
|