mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-26 15:33:50 +00:00
149 lines
6.8 KiB
JavaScript
149 lines
6.8 KiB
JavaScript
/* globals context: true */
|
|
describe('iD.presetPreset', function() {
|
|
it('has optional fields', function() {
|
|
var preset = iD.presetPreset('test', {});
|
|
expect(preset.fields).to.eql([]);
|
|
});
|
|
|
|
describe('#matchGeometry', function() {
|
|
it('returns false if it doesn\'t match', function() {
|
|
var preset = iD.presetPreset('test', {geometry: ['line']});
|
|
expect(preset.matchGeometry('point')).to.equal(false);
|
|
});
|
|
|
|
it('returns true if it does match', function() {
|
|
var preset = iD.presetPreset('test', {geometry: ['point', 'line']});
|
|
expect(preset.matchGeometry('point')).to.equal(true);
|
|
});
|
|
});
|
|
|
|
describe('#matchScore', function() {
|
|
it('returns -1 if preset does not match tags', function() {
|
|
var preset = iD.presetPreset('test', {tags: {foo: 'bar'}}),
|
|
entity = iD.Way({tags: {highway: 'motorway'}});
|
|
expect(preset.matchScore(entity)).to.equal(-1);
|
|
});
|
|
|
|
it('returns the value of the matchScore property when matched', function() {
|
|
var preset = iD.presetPreset('test', {tags: {highway: 'motorway'}, matchScore: 0.2}),
|
|
entity = iD.Way({tags: {highway: 'motorway'}});
|
|
expect(preset.matchScore(entity)).to.equal(0.2);
|
|
});
|
|
|
|
it('defaults to the number of matched tags', function() {
|
|
var preset = iD.presetPreset('test', {tags: {highway: 'residential'}}),
|
|
entity = iD.Way({tags: {highway: 'residential'}});
|
|
expect(preset.matchScore(entity)).to.equal(1);
|
|
|
|
preset = iD.presetPreset('test', {tags: {highway: 'service', service: 'alley'}});
|
|
entity = iD.Way({tags: {highway: 'service', service: 'alley'}});
|
|
expect(preset.matchScore(entity)).to.equal(2);
|
|
});
|
|
|
|
it('counts * as a match for any value with score 0.5', function() {
|
|
var preset = iD.presetPreset('test', {tags: {building: '*'}}),
|
|
entity = iD.Way({tags: {building: 'yep'}});
|
|
expect(preset.matchScore(entity)).to.equal(0.5);
|
|
});
|
|
});
|
|
|
|
describe('isFallback', function() {
|
|
it('returns true if preset has no tags', function() {
|
|
var preset = iD.presetPreset('point', {tags: {}});
|
|
expect(preset.isFallback()).to.equal(true);
|
|
});
|
|
|
|
it('returns true if preset has a single \'area\' tag', function() {
|
|
var preset = iD.presetPreset('area', {tags: {area: 'yes'}});
|
|
expect(preset.isFallback()).to.equal(true);
|
|
});
|
|
|
|
it('returns false if preset has a single non-\'area\' tag', function() {
|
|
var preset = iD.presetPreset('building', {tags: {building: 'yes'}});
|
|
expect(preset.isFallback()).to.equal(false);
|
|
});
|
|
|
|
it('returns false if preset has multiple tags', function() {
|
|
var preset = iD.presetPreset('building', {tags: {area: 'yes', building: 'yes'}});
|
|
expect(preset.isFallback()).to.equal(false);
|
|
});
|
|
});
|
|
|
|
describe('#applyTags', function() {
|
|
it('adds match tags', function() {
|
|
var preset = iD.presetPreset('test', {tags: {highway: 'residential'}});
|
|
expect(preset.applyTags({}, 'line')).to.eql({highway: 'residential'});
|
|
});
|
|
|
|
it('adds wildcard tags with value \'yes\'', function() {
|
|
var preset = iD.presetPreset('test', {tags: {building: '*'}});
|
|
expect(preset.applyTags({}, 'area')).to.eql({building: 'yes'});
|
|
});
|
|
|
|
it('prefers to add tags of addTags property', function() {
|
|
var preset = iD.presetPreset('test', {tags: {building: '*'}, addTags: {building: 'ok'}});
|
|
expect(preset.applyTags({}, 'area')).to.eql({building: 'ok'});
|
|
});
|
|
|
|
it('adds default tags of fields with matching geometry', function() {
|
|
var field = iD.presetField('field', {key: 'building', geometry: 'area', default: 'yes'}),
|
|
preset = iD.presetPreset('test', {fields: ['field']}, {field: field});
|
|
expect(preset.applyTags({}, 'area')).to.eql({area: 'yes', building: 'yes'});
|
|
});
|
|
|
|
it('adds no default tags of fields with non-matching geometry', function() {
|
|
var field = iD.presetField('field', {key: 'building', geometry: 'area', default: 'yes'}),
|
|
preset = iD.presetPreset('test', {fields: ['field']}, {field: field});
|
|
expect(preset.applyTags({}, 'point')).to.eql({});
|
|
});
|
|
|
|
context('for a preset with no tag in areaKeys', function() {
|
|
var preset = iD.presetPreset('test', {geometry: ['line', 'area'], tags: {name: 'testname', highway: 'pedestrian'}});
|
|
|
|
it('doesn\'t add area=yes to non-areas', function() {
|
|
expect(preset.applyTags({}, 'line')).to.eql({name: 'testname', highway: 'pedestrian'});
|
|
});
|
|
|
|
it('adds area=yes to areas', function() {
|
|
expect(preset.applyTags({}, 'area')).to.eql({name: 'testname', highway: 'pedestrian', area: 'yes'});
|
|
});
|
|
});
|
|
|
|
context('for a preset with a tag in areaKeys', function() {
|
|
var preset = iD.presetPreset('test', {geometry: ['area'], tags: {name: 'testname', natural: 'water'}});
|
|
it('doesn\'t add area=yes', function() {
|
|
expect(preset.applyTags({}, 'area')).to.eql({name: 'testname', natural: 'water'});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('#removeTags', function() {
|
|
it('removes tags that match preset tags', function() {
|
|
var preset = iD.presetPreset('test', {tags: {highway: 'residential'}});
|
|
expect(preset.removeTags({highway: 'residential'}, 'area')).to.eql({});
|
|
});
|
|
|
|
it('removes tags that match field default tags', function() {
|
|
var field = iD.presetField('field', {key: 'building', geometry: 'area', default: 'yes'}),
|
|
preset = iD.presetPreset('test', {fields: ['field']}, {field: field});
|
|
expect(preset.removeTags({building: 'yes'}, 'area')).to.eql({});
|
|
});
|
|
|
|
it('removes area=yes', function() {
|
|
var preset = iD.presetPreset('test', {tags: {highway: 'pedestrian'}});
|
|
expect(preset.removeTags({highway: 'pedestrian', area: 'yes'}, 'area')).to.eql({});
|
|
});
|
|
|
|
it('preserves tags that do not match field default tags', function() {
|
|
var field = iD.presetField('field', {key: 'building', geometry: 'area', default: 'yes'}),
|
|
preset = iD.presetPreset('test', {fields: ['field']}, {field: field});
|
|
expect(preset.removeTags({building: 'yep'}, 'area')).to.eql({ building: 'yep'});
|
|
});
|
|
|
|
it('preserves tags that are not listed in removeTags', function() {
|
|
var preset = iD.presetPreset('test', {tags: {a: 'b'}, removeTags: {}});
|
|
expect(preset.removeTags({a: 'b'}, 'area')).to.eql({a: 'b'});
|
|
});
|
|
});
|
|
});
|