Files
iD/test/spec/validations/missing_role.js
Bryan Housel 33fab5580b Before calling init() make sure the assetPath is set
init kicks off building the ui, which can fetch spritesheets for the <defs>
The assetPath needs to be set otherwise these files will not be found
2021-08-16 22:06:42 -04:00

101 lines
3.4 KiB
JavaScript

describe('iD.validations.missing_role', function () {
var context;
beforeEach(function() {
context = iD.coreContext().assetPath('../dist/').init();
});
function createWay(tags) {
var n1 = iD.osmNode({id: 'n-1', loc: [4,4]});
var n2 = iD.osmNode({id: 'n-2', loc: [4,5]});
var w = iD.osmWay({id: 'w-1', nodes: ['n-1', 'n-2'], tags: tags});
context.perform(
iD.actionAddEntity(n1),
iD.actionAddEntity(n2),
iD.actionAddEntity(w)
);
}
function createRelation(tags, role) {
var n1 = iD.osmNode({id: 'n-1', loc: [4,4]});
var n2 = iD.osmNode({id: 'n-2', loc: [4,5]});
var n3 = iD.osmNode({id: 'n-3', loc: [5,5]});
var w = iD.osmWay({id: 'w-1', nodes: ['n-1', 'n-2', 'n-3', 'n-1']});
var r = iD.osmRelation({id: 'r-1', members: [{id: 'w-1', role: role}], tags: tags});
context.perform(
iD.actionAddEntity(n1),
iD.actionAddEntity(n2),
iD.actionAddEntity(n3),
iD.actionAddEntity(w),
iD.actionAddEntity(r)
);
}
function validate() {
var validator = iD.validationMissingRole(context);
var changes = context.history().changes();
var entities = changes.modified.concat(changes.created);
var issues = [];
entities.forEach(function(entity) {
issues = issues.concat(validator(entity, context.graph()));
});
return issues;
}
it('has no errors on init', function() {
var issues = validate();
expect(issues).to.have.lengthOf(0);
});
it('ignores way with no relations', function() {
createWay({});
var issues = validate();
expect(issues).to.have.lengthOf(0);
});
it('ignores way with null role in non-multipolygon relation', function() {
createRelation({ type: 'boundary' }, null);
var issues = validate();
expect(issues).to.have.lengthOf(0);
});
it('ignores way with outer role in multipolygon', function() {
createRelation({ type: 'multipolygon' }, 'outer');
var issues = validate();
expect(issues).to.have.lengthOf(0);
});
it('ignores way with inner role in multipolygon', function() {
createRelation({ type: 'multipolygon' }, 'inner');
var issues = validate();
expect(issues).to.have.lengthOf(0);
});
it('flags way with null role in multipolygon', function() {
createRelation({ type: 'multipolygon' }, null);
var issues = validate();
expect(issues).to.have.lengthOf(2);
expect(issues[0].id).to.eql(issues[1].id);
var issue = issues[0];
expect(issue.type).to.eql('missing_role');
expect(issue.entityIds).to.have.lengthOf(2);
expect(issue.entityIds[0]).to.eql('r-1');
expect(issue.entityIds[1]).to.eql('w-1');
});
it('flags way with whitespace string role in multipolygon', function() {
createRelation({ type: 'multipolygon' }, ' ');
var issues = validate();
expect(issues).to.have.lengthOf(2);
expect(issues[0].id).to.eql(issues[1].id);
var issue = issues[0];
expect(issue.type).to.eql('missing_role');
expect(issue.entityIds).to.have.lengthOf(2);
expect(issue.entityIds[0]).to.eql('r-1');
expect(issue.entityIds[1]).to.eql('w-1');
});
});