Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ItemsMap doesn't match real object #1279

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12,253 changes: 12,247 additions & 6 deletions release/remotestorage.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion release/remotestorage.js.map

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions src/inmemorystorage.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { RSNode, RSNodes } from './interfaces/rs_node';
import EventHandling from './eventhandling';
import CachingLayer from './cachinglayer';
import { applyMixins } from './util';
import { applyMixins, deepClone } from './util';

/**
* In-memory caching adapter. Used when no IndexedDB or localStorage
Expand All @@ -23,7 +23,10 @@ class InMemoryStorage extends CachingLayer {
const nodes: RSNodes = {};

for (let i = 0, len = paths.length; i < len; i++) {
nodes[paths[i]] = this._storage[paths[i]];
// Should use a clone of whatever we are retrieving to prevent
// mutation, also to follow the same behavior as localStorage
// and indexeddb.
nodes[paths[i]] = deepClone(this._storage[paths[i]]);
}

return Promise.resolve(nodes);
Expand Down
25 changes: 24 additions & 1 deletion src/sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ class Sync {
_tasks: object;
_running: object;
_timeStarted: object;
_finishedTasks: Array<SyncTask> = [];

constructor (remoteStorage: object) {
this.rs = remoteStorage;
Expand Down Expand Up @@ -907,12 +908,23 @@ class Sync {
}
}

public finishTask (task: SyncTask): void | Promise<void> {
public finishTask (task: SyncTask, queueTask = true): void | Promise<void> {
if (task.action === undefined) {
delete this._running[task.path];
return;
}

if (queueTask){
log("[Sync] queue finished task:", task.path);
this._finishedTasks.push(task);
if (this._finishedTasks.length > 1) {
log("[Sync] delaying finished task:", task.path);
return;
}
}

log("[Sync] run task:", task.path);

return task.promise
.then(res => {
return this.handleResponse(task.path, task.action, res);
Expand All @@ -921,6 +933,7 @@ class Sync {
return this.handleResponse(task.path, task.action, { statusCode: 'offline' });
})
.then(completed => {
this._finishedTasks.shift();
delete this._timeStarted[task.path];
delete this._running[task.path];

Expand All @@ -935,6 +948,11 @@ class Sync {

this.rs._emit('sync-req-done');

if (this._finishedTasks.length > 0) {
this.finishTask(this._finishedTasks[0], false);
return;
}

this.collectTasks(false).then(() => {
// See if there are any more tasks that are not refresh tasks
if (!this.hasTasks() || this.stopped) {
Expand All @@ -952,9 +970,14 @@ class Sync {
});
}, err => {
log('[Sync] Error', err);
this._finishedTasks.shift();
delete this._timeStarted[task.path];
delete this._running[task.path];
this.rs._emit('sync-req-done');
if (this._finishedTasks.length > 0) {
this.finishTask(this._finishedTasks[0], false);
return;
}
if (!this.done) {
this.done = true;
this.rs._emit('sync-done');
Expand Down
174 changes: 173 additions & 1 deletion test/unit/sync-suite.js
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,179 @@ define(['./build/util', 'require', 'test/helpers/mocks'], function(util, require
env.rs.sync.now = function() { return 1234567890123; };
env.rs.sync.completePush('foo', 'put', true, '123');
}
}
},

{
desc: "sync multiple new documents under the same folder while there are local changes should merge folder without missing any document",
run: function(env, test) {
test.assertAnd(env.rs.sync._tasks, {});
test.assertAnd(env.rs.sync._running, {});
var tmpDoTask = env.rs.sync.doTask;

env.rs.sync.doTask = function(path) {
return Promise.resolve({
action: 'get',
path,
promise: Promise.resolve({
statusCode: 200,
body: path,
contentType: 'text/plain',
revision: path
})
});
};

env.rs.sync.rs.remote.connected = true;
env.rs.remote.online = true;
env.rs.sync._tasks = {
'/foo/2': true,
'/foo/3': true,
'/foo/4': true,
'/foo/5': true,
'/foo/6': true,
'/foo/7': true,
'/foo/8': true,
'/foo/9': true,
'/foo/10': true,
'/foo/11': true,
};
env.rs.sync._running = {};
env.rs.sync.doTasks();
test.assertAnd(env.rs.sync._tasks, {
'/foo/2': true,
'/foo/3': true,
'/foo/4': true,
'/foo/5': true,
'/foo/6': true,
'/foo/7': true,
'/foo/8': true,
'/foo/9': true,
'/foo/10': true,
'/foo/11': true,
});
test.assertAnd(Object.getOwnPropertyNames(env.rs.sync._running).sort(), [
'/foo/2',
'/foo/3',
'/foo/4',
'/foo/5',
'/foo/6',
].sort());
env.rs.caching._responses['/'] = 'ALL';
env.rs.caching._responses['/foo/'] = 'ALL';
env.rs.caching._responses['/foo/1'] = 'ALL';
for (const t of Object.keys(env.rs.sync._tasks)) {
env.rs.caching._responses[t] = 'ALL';
}
env.rs.local.setNodes({
'/foo/': {
path: '/foo/',
common: {
itemsMap: {
'1': true,
},
revision: 'remotefolderrevision',
timestamp: 1397210425598,
},
local: {
itemsMap: {
'1': true
},
revision: 'localfolderrevision',
timestamp: 1397210425612
}
},
'/foo/1': {
path: '/foo/1',
local: { body: '/foo/1', contentType: 'test/plain', timestamp: 1234567891000 }
}
}).then(() => {
setTimeout(function () {
env.rs.local.getNodes(['/foo/']).then(function(nodes) {
var node = nodes['/foo/'];
test.assertAnd(node.local.itemsMap, {
'1': true,
'2': true,
'3': true,
'4': true,
'5': true,
'6': true,
'7': true,
'8': true,
'9': true,
'10': true,
'11': true,
});
env.rs.sync.doTask = tmpDoTask;
test.done()
});
}, 100)
});
}
},

{
desc: "calling handleResponse multiple times without waiting for it to return should only update index for latest change",
run: function(env, test) {
env.rs.caching._responses['/'] = 'ALL';
env.rs.caching._responses['/foo/'] = 'ALL';
env.rs.caching._responses['/foo/2'] = 'ALL';
env.rs.caching._responses['/foo/3'] = 'ALL';

const nodesFetched = [
{
path: '/foo/2',
action: 'get',
response: {statusCode: 200, body: { foo: 'new' }, contentType: 'application/json', revision: 'newrevision'},
},
{
path: '/foo/3',
action: 'get',
response: {statusCode: 200, body: { foo: 'new' }, contentType: 'application/json', revision: 'newrevision'},
}
]

env.rs.local.setNodes({
'/foo/': {
path: '/foo/',
common: {
itemsMap: {
'1': false,
},
revision: 'remotefolderrevision',
timestamp: 1397210425598,
},
local: {
itemsMap: {
'1': true
},
revision: 'localfolderrevision',
timestamp: 1397210425612
}
},
'/foo/1': {
path: '/foo/1',
local: { body: {asdf: 'asdf'}, contentType: 'application/json', timestamp: 1234567891000 }
}
}).then(function() {
const promises = []
for (const node of nodesFetched){
promises.push(env.rs.sync.handleResponse(node.path, node.action, node.response))
}
return Promise.all(promises)
}).then(function(){
return env.rs.local.getNodes(['/foo/', '/foo/1', '/foo/2', '/foo/3'])
}).then(function(nodes) {
var parentNode = nodes['/foo/'];
test.assertAnd(parentNode.local.itemsMap, {
'1': true,
'3': true
});
test.assertType(nodes['/foo/2'], 'object');
test.assertType(nodes['/foo/3'], 'object');
test.done()
});
}
},
]
});

Expand Down