Keep the oldest IDs alive when merging nodes into a way

This commit is contained in:
Thomas Petillon
2020-04-11 16:26:17 +02:00
parent 7a1d08f80e
commit 21f171863c
2 changed files with 164 additions and 26 deletions
+105 -12
View File
@@ -37,22 +37,115 @@ describe('iD.actionMerge', function () {
expect(graph.entity('r').members).to.eql([{id: 'w', role: 'r', type: 'way'}]);
});
it('preserves original point if possible', function () {
it('preserves existing point id when possible', function () {
var graph = iD.coreGraph([
iD.osmNode({id: 'a', loc: [1, 0], tags: {a: 'a'}}),
iD.osmNode({id: 'p', loc: [0, 0], tags: {p: 'p'}}),
iD.osmNode({id: 'q', loc: [0, 1]}),
iD.osmWay({id: 'w', nodes: ['p', 'q'], tags: {w: 'w'}})
iD.osmNode({id: 'n1', loc: [1, 0], tags: {n1: 'n1'}}),
iD.osmNode({id: 'a', loc: [0, 0], tags: {a: 'a'}}),
iD.osmNode({id: 'b', loc: [0, 1]}),
iD.osmWay({id: 'w', nodes: ['a', 'b'], tags: {w: 'w'}})
]),
action = iD.actionMerge(['a', 'w']);
action = iD.actionMerge(['n1', 'w']);
graph = action(graph);
expect(graph.hasEntity('a')).to.be.ok;
expect(graph.hasEntity('p')).to.be.ok;
expect(graph.hasEntity('q')).to.be.undefined;
expect(graph.hasEntity('n1')).to.be.ok;
expect(graph.hasEntity('a')).to.be.undefined;
expect(graph.hasEntity('b')).to.be.ok;
expect(graph.entity('w').tags).to.eql({n1: 'n1', w: 'w'});
expect(graph.entity('w').nodes).to.eql(['n1', 'b']);
expect(graph.entity('n1').loc[0]).to.eql(0);
expect(graph.entity('n1').loc[1]).to.eql(0);
});
it('preserves existing point ids when possible', function () {
var graph = iD.coreGraph([
iD.osmNode({id: 'n1', loc: [1, 0], tags: {n1: 'n1'}}),
iD.osmNode({id: 'n2', loc: [2, 0], tags: {n2: 'n2'}}),
iD.osmNode({id: 'a', loc: [0, 1]}),
iD.osmNode({id: 'b', loc: [0, 2], tags: {b: 'b'}}),
iD.osmNode({id: 'c', loc: [0, 3]}),
iD.osmWay({id: 'w', nodes: ['a', 'b', 'c'], tags: {w: 'w'}})
]),
action = iD.actionMerge(['n1', 'n2', 'w']);
graph = action(graph);
expect(graph.hasEntity('n1')).to.be.ok;
expect(graph.hasEntity('n2')).to.be.ok;
expect(graph.hasEntity('a')).to.be.undefined;
expect(graph.hasEntity('b')).to.be.undefined;
expect(graph.hasEntity('c')).to.be.ok;
expect(graph.entity('n2').tags).to.eql({b: 'b'});
expect(graph.entity('w').tags).to.eql({n1: 'n1', n2: 'n2', w: 'w'});
expect(graph.entity('w').nodes).to.eql(['n1', 'n2', 'c']);
expect(graph.entity('n1').loc[0]).to.eql(0);
expect(graph.entity('n1').loc[1]).to.eql(1);
expect(graph.entity('n2').loc[0]).to.eql(0);
expect(graph.entity('n2').loc[1]).to.eql(2);
});
it('preserves existing node ids when possible', function () {
var graph = iD.coreGraph([
iD.osmNode({id: 'a', loc: [1, 0], tags: {a: 'a'}}),
iD.osmNode({id: 'b', loc: [2, 0]}),
iD.osmNode({id: 'n1', loc: [0, 1]}),
iD.osmNode({id: 'n2', loc: [0, 2], tags: {n2: 'n2'}}),
iD.osmWay({id: 'w', nodes: ['n1', 'n2'], tags: {w: 'w'}})
]),
action = iD.actionMerge(['a', 'b', 'w']);
graph = action(graph);
expect(graph.hasEntity('a')).to.be.undefined;
expect(graph.hasEntity('b')).to.be.undefined;
expect(graph.hasEntity('n1')).to.be.ok;
expect(graph.hasEntity('n2')).to.be.ok;
expect(graph.entity('w').tags).to.eql({a: 'a', w: 'w'});
expect(graph.entity('w').nodes).to.eql(['p', 'a']);
expect(graph.entity('a').loc[0]).to.eql(0);
expect(graph.entity('a').loc[1]).to.eql(1);
expect(graph.entity('w').nodes).to.eql(['n1', 'n2']);
expect(graph.entity('n1').loc[0]).to.eql(0);
expect(graph.entity('n1').loc[1]).to.eql(1);
expect(graph.entity('n2').loc[0]).to.eql(0);
expect(graph.entity('n2').loc[1]).to.eql(2);
});
it('preserves interesting existing node ids when possible', function () {
var graph = iD.coreGraph([
iD.osmNode({id: 'n1', loc: [1, 0], tags: {n1: 'n1'}}),
iD.osmNode({id: 'n2', loc: [0, 1], tags: {n2: 'n2'}}),
iD.osmNode({id: 'n3', loc: [0, 2]}),
iD.osmWay({id: 'w', nodes: ['n2', 'n3'], tags: {w: 'w'}})
]),
action = iD.actionMerge(['n1', 'w']);
graph = action(graph);
expect(graph.hasEntity('n1')).to.be.ok;
expect(graph.hasEntity('n2')).to.be.ok;
expect(graph.hasEntity('n3')).to.be.undefined;
expect(graph.entity('w').tags).to.eql({n1: 'n1', w: 'w'});
expect(graph.entity('w').nodes).to.eql(['n2', 'n1']);
expect(graph.entity('n1').loc[0]).to.eql(0);
expect(graph.entity('n1').loc[1]).to.eql(2);
});
it('preserves oldest interesting existing node ids', function () {
var graph = iD.coreGraph([
iD.osmNode({id: 'n3', loc: [1, 0], tags: {n3: 'n3'}}),
iD.osmNode({id: 'n6', loc: [2, 0], tags: {n6: 'n6'}}),
iD.osmNode({id: 'n2', loc: [0, 1], tags: {n2: 'n2'}}),
iD.osmNode({id: 'n5', loc: [0, 2], tags: {n5: 'n5'}}),
iD.osmNode({id: 'n1', loc: [0, 3], tags: {n1: 'n1'}}),
iD.osmNode({id: 'n4', loc: [0, 4], tags: {n4: 'n4'}}),
iD.osmWay({id: 'w', nodes: ['n2', 'n5', 'n1', 'n4'], tags: {w: 'w'}})
]),
action = iD.actionMerge(['n3', 'n6', 'w']);
graph = action(graph);
expect(graph.hasEntity('n1')).to.be.ok;
expect(graph.hasEntity('n2')).to.be.ok;
expect(graph.hasEntity('n3')).to.be.ok;
expect(graph.hasEntity('n4')).to.be.ok;
expect(graph.hasEntity('n5')).to.be.undefined;
expect(graph.hasEntity('n6')).to.be.undefined;
expect(graph.entity('w').tags).to.eql({n3: 'n3', n6: 'n6', w: 'w'});
expect(graph.entity('w').nodes).to.eql(['n2', 'n3', 'n1', 'n4']);
expect(graph.entity('n3').loc[0]).to.eql(0);
expect(graph.entity('n3').loc[1]).to.eql(2);
});
});