2013-02-19 23:47:38 +08:00
|
|
|
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);
|
|
|
|
container = control.getContainer();
|
|
|
|
});
|
|
|
|
|
2013-02-20 04:41:48 +08:00
|
|
|
it("contains just prefix if no attributions added", function () {
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(container.innerHTML).to.eql('prefix');
|
2013-02-19 23:47:38 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('#addAttribution', function () {
|
2013-02-20 04:41:48 +08:00
|
|
|
it('adds one attribution correctly', function () {
|
2013-02-19 23:47:38 +08:00
|
|
|
control.addAttribution('foo');
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(container.innerHTML).to.eql('prefix | foo');
|
2013-02-19 23:47:38 +08:00
|
|
|
});
|
|
|
|
|
2013-02-20 04:41:48 +08:00
|
|
|
it('adds no duplicate attributions', function () {
|
2013-02-19 23:47:38 +08:00
|
|
|
control.addAttribution('foo');
|
|
|
|
control.addAttribution('foo');
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(container.innerHTML).to.eql('prefix | foo');
|
2013-02-19 23:47:38 +08:00
|
|
|
});
|
|
|
|
|
2013-02-20 04:41:48 +08:00
|
|
|
it('adds several attributions listed with comma', function () {
|
2013-02-19 23:47:38 +08:00
|
|
|
control.addAttribution('foo');
|
|
|
|
control.addAttribution('bar');
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(container.innerHTML).to.eql('prefix | foo, bar');
|
2013-02-19 23:47:38 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('#removeAttribution', function () {
|
2013-02-20 04:41:48 +08:00
|
|
|
it('removes attribution correctly', function () {
|
2013-02-19 23:47:38 +08:00
|
|
|
control.addAttribution('foo');
|
|
|
|
control.addAttribution('bar');
|
|
|
|
control.removeAttribution('foo');
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(container.innerHTML).to.eql('prefix | bar');
|
2013-02-19 23:47:38 +08:00
|
|
|
});
|
2013-02-20 04:41:48 +08:00
|
|
|
it('does nothing if removing attribution that was not present', function () {
|
2013-02-19 23:47:38 +08:00
|
|
|
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');
|
2013-02-19 23:47:38 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('#setPrefix', function () {
|
2013-02-20 04:41:48 +08:00
|
|
|
it('changes prefix', function () {
|
2013-02-19 23:47:38 +08:00
|
|
|
control.setPrefix('bla');
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(container.innerHTML).to.eql('bla');
|
2013-02-19 23:47:38 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('control.attribution factory', function () {
|
2013-02-20 04:41:48 +08:00
|
|
|
it('creates Control.Attribution instance', function () {
|
2013-02-19 23:47:38 +08:00
|
|
|
var options = {prefix: 'prefix'};
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(L.control.attribution(options)).to.eql(new L.Control.Attribution(options));
|
2013-02-19 23:47:38 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|