Leaflet/spec/suites/control/Control.AttributionSpec.js

127 lines
3.9 KiB
JavaScript
Raw Normal View History

describe("Control.Attribution", function () {
var map, control, container;
beforeEach(function () {
map = L.map(document.createElement('div'));
control = new L.Control.Attribution({
prefix: 'prefix'
}).addTo(map);
map.setView([0, 0], 1);
container = control.getContainer();
});
function dummyLayer() {
var layer = new L.Layer();
layer.onAdd = function () { };
layer.onRemove = function () { };
return layer;
}
it("contains just prefix if no attributions added", function () {
2013-03-02 05:49:20 +08:00
expect(container.innerHTML).to.eql('prefix');
});
describe('#addAttribution', function () {
it('adds one attribution correctly', function () {
control.addAttribution('foo');
2013-03-02 05:49:20 +08:00
expect(container.innerHTML).to.eql('prefix | foo');
});
it('adds no duplicate attributions', function () {
control.addAttribution('foo');
control.addAttribution('foo');
2013-03-02 05:49:20 +08:00
expect(container.innerHTML).to.eql('prefix | foo');
});
it('adds several attributions listed with comma', function () {
control.addAttribution('foo');
control.addAttribution('bar');
2013-03-02 05:49:20 +08:00
expect(container.innerHTML).to.eql('prefix | foo, bar');
});
});
describe('#removeAttribution', function () {
it('removes attribution correctly', function () {
control.addAttribution('foo');
control.addAttribution('bar');
control.removeAttribution('foo');
2013-03-02 05:49:20 +08:00
expect(container.innerHTML).to.eql('prefix | bar');
});
it('does nothing if removing attribution that was not present', function () {
control.addAttribution('foo');
control.addAttribution('baz');
control.removeAttribution('bar');
control.removeAttribution('baz');
control.removeAttribution('baz');
control.removeAttribution('');
2013-03-02 05:49:20 +08:00
expect(container.innerHTML).to.eql('prefix | foo');
});
});
describe('#setPrefix', function () {
it('changes prefix', function () {
control.setPrefix('bla');
2013-03-02 05:49:20 +08:00
expect(container.innerHTML).to.eql('bla');
});
});
describe('control.attribution factory', function () {
it('creates Control.Attribution instance', function () {
var options = {prefix: 'prefix'};
2013-03-02 05:49:20 +08:00
expect(L.control.attribution(options)).to.eql(new L.Control.Attribution(options));
});
});
describe('on layer add/remove', function () {
it('changes text', function () {
var fooLayer = dummyLayer();
var barLayer = dummyLayer();
var bazLayer = dummyLayer();
fooLayer.getAttribution = function () { return 'foo'; };
barLayer.getAttribution = function () { return 'bar'; };
bazLayer.getAttribution = function () { return 'baz'; };
expect(container.innerHTML).to.eql('prefix');
map.addLayer(fooLayer);
expect(container.innerHTML).to.eql('prefix | foo');
map.addLayer(barLayer);
expect(container.innerHTML).to.eql('prefix | foo, bar');
map.addLayer(bazLayer);
expect(container.innerHTML).to.eql('prefix | foo, bar, baz');
map.removeLayer(fooLayer);
expect(container.innerHTML).to.eql('prefix | bar, baz');
map.removeLayer(barLayer);
expect(container.innerHTML).to.eql('prefix | baz');
map.removeLayer(bazLayer);
expect(container.innerHTML).to.eql('prefix');
});
it('keeps count of duplicated attributions', function () {
var fooLayer = dummyLayer();
var fo2Layer = dummyLayer();
var fo3Layer = dummyLayer();
fooLayer.getAttribution = function () { return 'foo'; };
fo2Layer.getAttribution = function () { return 'foo'; };
fo3Layer.getAttribution = function () { return 'foo'; };
expect(container.innerHTML).to.eql('prefix');
map.addLayer(fooLayer);
expect(container.innerHTML).to.eql('prefix | foo');
map.addLayer(fo2Layer);
expect(container.innerHTML).to.eql('prefix | foo');
map.addLayer(fo3Layer);
expect(container.innerHTML).to.eql('prefix | foo');
map.removeLayer(fooLayer);
expect(container.innerHTML).to.eql('prefix | foo');
map.removeLayer(fo2Layer);
expect(container.innerHTML).to.eql('prefix | foo');
map.removeLayer(fo3Layer);
expect(container.innerHTML).to.eql('prefix');
});
});
});