1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-13 22:12:50 +02:00

Various fixes and added fuzzing program

This commit is contained in:
Laurent Cozic
2017-06-30 16:33:40 +01:00
parent a962f719a7
commit 0fb7463c7e
58 changed files with 5248 additions and 10 deletions

View File

@@ -5,3 +5,6 @@ tests-build/
tests/src
config.json
app/lib
tests/client1
tests/client2
tests/sync

View File

@@ -305,7 +305,7 @@ commands.push({
commands.push({
usage: 'config [name] [value]',
description: 'Gets or sets a config value. If [value] is not provided, it will show the value of [name]. If neither [name] nor [value] is provided, it will list the current configuration.',
action: function(args, end) {
action: async function(args, end) {
try {
if (!args.name && !args.value) {
let keys = Setting.publicKeys();
@@ -316,6 +316,7 @@ commands.push({
this.log(args.name + ' = ' + Setting.value(args.name));
} else {
Setting.setValue(args.name, args.value);
await Setting.saveAll();
}
} catch(error) {
this.log(error);
@@ -548,8 +549,9 @@ async function synchronizer(syncTarget) {
fileApi = new FileApi('joplin', new FileApiDriverMemory());
fileApi.setLogger(logger);
} else if (syncTarget == 'local') {
let syncDir = Setting.value('profileDir') + '/sync';
vorpal.log(syncDir);
let syncDir = Setting.value('sync.local.path');
if (!syncDir) syncDir = Setting.value('profileDir') + '/sync';
vorpal.log(_('Synchronizing with directory "%s"', syncDir));
await fs.mkdirp(syncDir, 0o755);
fileApi = new FileApi(syncDir, new FileApiDriverLocal());
fileApi.setLogger(logger);
@@ -766,15 +768,15 @@ async function main() {
Setting.setValue('activeFolderId', activeFolder.id);
await execCommand('cd', { 'notebook': activeFolder.title }); // Use execCommand() so that no history entry is created
vorpal.delimiter(promptString()).show();
// If we still have arguments, pass it to Vorpal and exit
if (argv.length) {
let cmd = shellArgsToString(argv);
vorpal.log(_('Executing: %s', cmd));
await vorpal.exec(cmd);
await vorpal.exec('exit');
return;
} else {
vorpal.delimiter(promptString()).show();
}
}

View File

@@ -15,4 +15,4 @@ while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symli
done
CLIENT_DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
NODE_PATH="$CLIENT_DIR:$NODE_PATH" node "$CLIENT_DIR/main.js"
NODE_PATH="$CLIENT_DIR:$NODE_PATH" node "$CLIENT_DIR/main.js" "$@"

View File

@@ -7,7 +7,7 @@
"url": "https://github.com/laurent22/joplin"
},
"url": "git://github.com/laurent22/joplin.git",
"version": "0.8.14",
"version": "0.8.21",
"bin": {
"joplin": "./main.sh"
},

View File

@@ -1,6 +1,6 @@
#!/bin/bash
set -e
CLIENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
bash $CLIENT_DIR/build.sh && NODE_PATH="$CLIENT_DIR/build/" node build/main.js --profile ~/Temp/TestNotes
bash $CLIENT_DIR/build.sh && NODE_PATH="$CLIENT_DIR/build/" node build/main.js --profile ~/Temp/TestNotes2
#bash $CLIENT_DIR/build.sh && NODE_PATH="$CLIENT_DIR/build/" node build/main.js --profile ~/Temp/TestNotes import-enex --fuzzy-matching /home/laurent/Desktop/afaire.enex afaire
#bash $CLIENT_DIR/build.sh && NODE_PATH="$CLIENT_DIR/build/" node build/main.js --profile ~/Temp/TestNotes import-enex --fuzzy-matching /home/laurent/Desktop/Laurent.enex laurent

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,47 @@
2017-06-30 16:29:33: Starting synchronization... [1498836573666]
2017-06-30 16:29:33: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local c22fc598ac014dafa599c8d2121a5c0a, "Notebook")
2017-06-30 16:29:33: Synchronization complete [1498836573666]:
2017-06-30 16:29:41: Starting synchronization... [1498836581530]
2017-06-30 16:29:41: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 4b3a0eb941bb49afa2736d49e436d85c, "lumber")
2017-06-30 16:29:41: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 36623aba9d8c45aa874e4fbbbe35e5c2, "cuddly")
2017-06-30 16:29:41: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 5542fde1fd7f42cd8bd39bf2fd00010f, "mountain")
2017-06-30 16:29:42: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 40f5141cf87a41c2b36463000098e433, "lazy")
2017-06-30 16:29:42: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 72fa06d2fb2f4d98abc732a2e968aa28, "save")
2017-06-30 16:29:54: Starting synchronization... [1498836594938]
2017-06-30 16:29:54: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 9d939322414b4c1680052a1e0dda92a2, "share")
2017-06-30 16:29:55: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local a95fb1806fe84132915271c5bef8d429, "remind")
2017-06-30 16:29:55: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local dc8f02a962544a5485451aad3048ce49, "difficult")
2017-06-30 16:29:55: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 03f97bf7f1a24f38a828742e090dfd69, "sail")
2017-06-30 16:29:55: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 885e8c7802a547298c96ab5644965002, "roll")
2017-06-30 16:29:55: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 6d139ba334f34b039b289dc167ab0db7, "conscious")
2017-06-30 16:29:55: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local ee796676943744129cf01cdd7103d380, "detect")
2017-06-30 16:29:55: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 917625fe9474484c948df79d4c3391dd, "wine")
2017-06-30 16:29:55: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 2a2fa1e5410844bd8bdaad016b7ab9f9, "lively")
2017-06-30 16:29:56: Synchronization complete [1498836594938]:
2017-06-30 16:30:18: Starting synchronization... [1498836618840]
2017-06-30 16:30:18: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 5363788a894c439a8d5d763948d04982, "measly")
2017-06-30 16:30:19: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local a9a1ba06692043faa2d70feb7c7406fa, "ragged")
2017-06-30 16:30:19: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local cf565b9f674343758a3403cbabd0ecce, "romantic")
2017-06-30 16:30:19: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 304b2f16e7d948b6a44f56760bb5dd89, "grease")
2017-06-30 16:30:19: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 91db86c3994b42b0bea71847d0913ebc, "steam")
2017-06-30 16:30:19: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local c16d59d404264ccb80bd38514b12f3d2, "squash")
2017-06-30 16:30:19: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local b6786307dd1f47a59771a69c7f1ebf0e, "whimsical")
2017-06-30 16:30:19: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 9ff544edf00e40a8bcb181a60afda286, "six")
2017-06-30 16:30:20: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local a4f0ccf2604144faae301805150ff131, "peace")
2017-06-30 16:30:20: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local f01c90c2048e475292d5a44389508c3a, "paddle")
2017-06-30 16:30:20: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 51d1dca0dcad43cf8458a558d299e92a, "park")
2017-06-30 16:30:20: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local a45831c40ad0478b80d9b7b3ca285b04, "plough")
2017-06-30 16:30:20: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 3f552f96688e4ac9bf6b93dd162e03de, "knock")
2017-06-30 16:30:20: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 023afa2bb4f54a6383984334db8abc00, "gleaming")
2017-06-30 16:30:20: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local c970a6390bf744289970b39008aec35f, "anger")
2017-06-30 16:30:20: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 9e40e0dc97824a34a7babdb2ac09510d, "legal")
2017-06-30 16:30:21: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 920450e8d37e4a17b512f324aa713b06, "acrid")
2017-06-30 16:30:21: Sync: createLocal: remote exists but local does not: (Remote 012318ecb4704d759c717d0d7ebb1a74, "flower")
2017-06-30 16:30:21: Sync: createLocal: remote exists but local does not: (Remote 3b9a42af068d43e8aa8d6664d5dda0b3, "marry")
2017-06-30 16:30:21: Sync: createLocal: remote exists but local does not: (Remote 4ad29f49f0a7470db86b7a40d2e2643b, "duck")
2017-06-30 16:30:21: Sync: createLocal: remote exists but local does not: (Remote 5fc3f7617b55458288714b4c104801c1, "time")
2017-06-30 16:30:22: Sync: createLocal: remote exists but local does not: (Remote 79429b5f11ab4396b472a91877f4351d, "tranquil")
2017-06-30 16:30:22: Sync: createLocal: remote exists but local does not: (Remote b576982b2d80495aa19bee8f962b6385, "sand")
2017-06-30 16:30:22: Sync: createLocal: remote exists but local does not: (Remote b658acdc78c34dc1a058ecef66701745, "blot")
2017-06-30 16:30:22: Sync: createLocal: remote exists but local does not: (Remote c6e06b7776374010a5e9620fad7a67b3, "capricious")
2017-06-30 16:30:22: Sync: createLocal: remote exists but local does not: (Remote cde0337afd8844388fc3b820a473315e, "old-fashioned")

View File

@@ -0,0 +1,257 @@
2017-06-30 16:29:29: Starting joplin-cli 0.8.21...
2017-06-30 16:29:29: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:32: Starting joplin-cli 0.8.21...
2017-06-30 16:29:32: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:33: Starting joplin-cli 0.8.21...
2017-06-30 16:29:33: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:33: mkdir /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync
2017-06-30 16:29:33: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/c22fc598ac014dafa599c8d2121a5c0a.md
2017-06-30 16:29:33: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c22fc598ac014dafa599c8d2121a5c0a.md_1498836573687
2017-06-30 16:29:33: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/c22fc598ac014dafa599c8d2121a5c0a.md
2017-06-30 16:29:33: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c22fc598ac014dafa599c8d2121a5c0a.md_1498836573687
2017-06-30 16:29:33: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c22fc598ac014dafa599c8d2121a5c0a.md_1498836573687
2017-06-30 16:29:33: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c22fc598ac014dafa599c8d2121a5c0a.md_1498836573687 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/c22fc598ac014dafa599c8d2121a5c0a.md
2017-06-30 16:29:33: list /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync
2017-06-30 16:29:35: Starting joplin-cli 0.8.21...
2017-06-30 16:29:35: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:36: Starting joplin-cli 0.8.21...
2017-06-30 16:29:36: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:37: Starting joplin-cli 0.8.21...
2017-06-30 16:29:37: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:38: Starting joplin-cli 0.8.21...
2017-06-30 16:29:38: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:40: Starting joplin-cli 0.8.21...
2017-06-30 16:29:40: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:41: Starting joplin-cli 0.8.21...
2017-06-30 16:29:41: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:41: mkdir /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync
2017-06-30 16:29:41: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/4b3a0eb941bb49afa2736d49e436d85c.md
2017-06-30 16:29:41: mkdir /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync
2017-06-30 16:29:41: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/4b3a0eb941bb49afa2736d49e436d85c.md
2017-06-30 16:29:41: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/4b3a0eb941bb49afa2736d49e436d85c.md_1498836581545
2017-06-30 16:29:41: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/4b3a0eb941bb49afa2736d49e436d85c.md_1498836581545
2017-06-30 16:29:41: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/4b3a0eb941bb49afa2736d49e436d85c.md_1498836581545
2017-06-30 16:29:41: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/4b3a0eb941bb49afa2736d49e436d85c.md_1498836581545
2017-06-30 16:29:41: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/4b3a0eb941bb49afa2736d49e436d85c.md_1498836581545 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/4b3a0eb941bb49afa2736d49e436d85c.md
2017-06-30 16:29:41: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/36623aba9d8c45aa874e4fbbbe35e5c2.md
2017-06-30 16:29:41: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/36623aba9d8c45aa874e4fbbbe35e5c2.md
2017-06-30 16:29:41: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/36623aba9d8c45aa874e4fbbbe35e5c2.md_1498836581760
2017-06-30 16:29:41: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/36623aba9d8c45aa874e4fbbbe35e5c2.md_1498836581760
2017-06-30 16:29:41: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/36623aba9d8c45aa874e4fbbbe35e5c2.md
2017-06-30 16:29:41: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/36623aba9d8c45aa874e4fbbbe35e5c2.md_1498836581760
2017-06-30 16:29:41: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/36623aba9d8c45aa874e4fbbbe35e5c2.md_1498836581760
2017-06-30 16:29:41: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/36623aba9d8c45aa874e4fbbbe35e5c2.md_1498836581760
2017-06-30 16:29:41: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/36623aba9d8c45aa874e4fbbbe35e5c2.md_1498836581760 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/36623aba9d8c45aa874e4fbbbe35e5c2.md
2017-06-30 16:29:41: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5542fde1fd7f42cd8bd39bf2fd00010f.md
2017-06-30 16:29:41: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5542fde1fd7f42cd8bd39bf2fd00010f.md
2017-06-30 16:29:41: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5542fde1fd7f42cd8bd39bf2fd00010f.md_1498836581973
2017-06-30 16:29:41: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5542fde1fd7f42cd8bd39bf2fd00010f.md
2017-06-30 16:29:41: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5542fde1fd7f42cd8bd39bf2fd00010f.md_1498836581973
2017-06-30 16:29:41: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5542fde1fd7f42cd8bd39bf2fd00010f.md_1498836581973
2017-06-30 16:29:41: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5542fde1fd7f42cd8bd39bf2fd00010f.md_1498836581973
2017-06-30 16:29:41: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5542fde1fd7f42cd8bd39bf2fd00010f.md_1498836581973
2017-06-30 16:29:42: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5542fde1fd7f42cd8bd39bf2fd00010f.md_1498836581973 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5542fde1fd7f42cd8bd39bf2fd00010f.md
2017-06-30 16:29:42: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/40f5141cf87a41c2b36463000098e433.md
2017-06-30 16:29:42: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/40f5141cf87a41c2b36463000098e433.md
2017-06-30 16:29:42: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/40f5141cf87a41c2b36463000098e433.md_1498836582196
2017-06-30 16:29:42: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/40f5141cf87a41c2b36463000098e433.md_1498836582196
2017-06-30 16:29:42: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/40f5141cf87a41c2b36463000098e433.md_1498836582196
2017-06-30 16:29:42: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/40f5141cf87a41c2b36463000098e433.md_1498836582196
2017-06-30 16:29:42: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/40f5141cf87a41c2b36463000098e433.md_1498836582196 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/40f5141cf87a41c2b36463000098e433.md
2017-06-30 16:29:42: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/72fa06d2fb2f4d98abc732a2e968aa28.md
2017-06-30 16:29:42: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/72fa06d2fb2f4d98abc732a2e968aa28.md_1498836582461
2017-06-30 16:29:42: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/72fa06d2fb2f4d98abc732a2e968aa28.md
2017-06-30 16:29:42: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/72fa06d2fb2f4d98abc732a2e968aa28.md_1498836582461
2017-06-30 16:29:42: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/72fa06d2fb2f4d98abc732a2e968aa28.md_1498836582461
2017-06-30 16:29:42: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/72fa06d2fb2f4d98abc732a2e968aa28.md_1498836582461
2017-06-30 16:29:42: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/72fa06d2fb2f4d98abc732a2e968aa28.md_1498836582461 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/72fa06d2fb2f4d98abc732a2e968aa28.md
2017-06-30 16:29:42: list /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync
2017-06-30 16:29:43: Starting joplin-cli 0.8.21...
2017-06-30 16:29:43: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:44: Starting joplin-cli 0.8.21...
2017-06-30 16:29:44: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:46: Starting joplin-cli 0.8.21...
2017-06-30 16:29:46: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:47: Starting joplin-cli 0.8.21...
2017-06-30 16:29:47: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:48: Starting joplin-cli 0.8.21...
2017-06-30 16:29:48: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:50: Starting joplin-cli 0.8.21...
2017-06-30 16:29:50: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:51: Starting joplin-cli 0.8.21...
2017-06-30 16:29:51: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:52: Starting joplin-cli 0.8.21...
2017-06-30 16:29:52: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:53: Starting joplin-cli 0.8.21...
2017-06-30 16:29:53: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:54: Starting joplin-cli 0.8.21...
2017-06-30 16:29:54: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:54: mkdir /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync
2017-06-30 16:29:54: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/9d939322414b4c1680052a1e0dda92a2.md
2017-06-30 16:29:54: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9d939322414b4c1680052a1e0dda92a2.md_1498836594965
2017-06-30 16:29:54: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9d939322414b4c1680052a1e0dda92a2.md_1498836594965
2017-06-30 16:29:54: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/9d939322414b4c1680052a1e0dda92a2.md
2017-06-30 16:29:54: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9d939322414b4c1680052a1e0dda92a2.md_1498836594965
2017-06-30 16:29:54: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9d939322414b4c1680052a1e0dda92a2.md_1498836594965
2017-06-30 16:29:54: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9d939322414b4c1680052a1e0dda92a2.md_1498836594965 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/9d939322414b4c1680052a1e0dda92a2.md
2017-06-30 16:29:55: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/a95fb1806fe84132915271c5bef8d429.md
2017-06-30 16:29:55: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a95fb1806fe84132915271c5bef8d429.md_1498836595159
2017-06-30 16:29:55: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a95fb1806fe84132915271c5bef8d429.md_1498836595159
2017-06-30 16:29:55: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a95fb1806fe84132915271c5bef8d429.md_1498836595159 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/a95fb1806fe84132915271c5bef8d429.md
2017-06-30 16:29:55: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/dc8f02a962544a5485451aad3048ce49.md
2017-06-30 16:29:55: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/dc8f02a962544a5485451aad3048ce49.md_1498836595259
2017-06-30 16:29:55: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/dc8f02a962544a5485451aad3048ce49.md_1498836595259
2017-06-30 16:29:55: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/dc8f02a962544a5485451aad3048ce49.md_1498836595259 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/dc8f02a962544a5485451aad3048ce49.md
2017-06-30 16:29:55: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/03f97bf7f1a24f38a828742e090dfd69.md
2017-06-30 16:29:55: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/03f97bf7f1a24f38a828742e090dfd69.md_1498836595400
2017-06-30 16:29:55: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/03f97bf7f1a24f38a828742e090dfd69.md_1498836595400
2017-06-30 16:29:55: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/03f97bf7f1a24f38a828742e090dfd69.md_1498836595400 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/03f97bf7f1a24f38a828742e090dfd69.md
2017-06-30 16:29:55: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/885e8c7802a547298c96ab5644965002.md
2017-06-30 16:29:55: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/885e8c7802a547298c96ab5644965002.md_1498836595509
2017-06-30 16:29:55: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/885e8c7802a547298c96ab5644965002.md_1498836595509
2017-06-30 16:29:55: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/885e8c7802a547298c96ab5644965002.md_1498836595509 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/885e8c7802a547298c96ab5644965002.md
2017-06-30 16:29:55: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/6d139ba334f34b039b289dc167ab0db7.md
2017-06-30 16:29:55: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/6d139ba334f34b039b289dc167ab0db7.md_1498836595600
2017-06-30 16:29:55: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/6d139ba334f34b039b289dc167ab0db7.md_1498836595600
2017-06-30 16:29:55: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/6d139ba334f34b039b289dc167ab0db7.md_1498836595600 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/6d139ba334f34b039b289dc167ab0db7.md
2017-06-30 16:29:55: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/ee796676943744129cf01cdd7103d380.md
2017-06-30 16:29:55: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/ee796676943744129cf01cdd7103d380.md_1498836595693
2017-06-30 16:29:55: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/ee796676943744129cf01cdd7103d380.md_1498836595693
2017-06-30 16:29:55: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/ee796676943744129cf01cdd7103d380.md_1498836595693 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/ee796676943744129cf01cdd7103d380.md
2017-06-30 16:29:55: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/917625fe9474484c948df79d4c3391dd.md
2017-06-30 16:29:55: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/917625fe9474484c948df79d4c3391dd.md_1498836595798
2017-06-30 16:29:55: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/917625fe9474484c948df79d4c3391dd.md_1498836595798
2017-06-30 16:29:55: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/917625fe9474484c948df79d4c3391dd.md_1498836595798 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/917625fe9474484c948df79d4c3391dd.md
2017-06-30 16:29:55: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/2a2fa1e5410844bd8bdaad016b7ab9f9.md
2017-06-30 16:29:55: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/2a2fa1e5410844bd8bdaad016b7ab9f9.md_1498836595963
2017-06-30 16:29:55: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/2a2fa1e5410844bd8bdaad016b7ab9f9.md_1498836595963
2017-06-30 16:29:55: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/2a2fa1e5410844bd8bdaad016b7ab9f9.md_1498836595963 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/2a2fa1e5410844bd8bdaad016b7ab9f9.md
2017-06-30 16:29:56: list /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync
2017-06-30 16:29:57: Starting joplin-cli 0.8.21...
2017-06-30 16:29:57: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:58: Starting joplin-cli 0.8.21...
2017-06-30 16:29:58: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:29:59: Starting joplin-cli 0.8.21...
2017-06-30 16:29:59: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:00: Starting joplin-cli 0.8.21...
2017-06-30 16:30:00: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:02: Starting joplin-cli 0.8.21...
2017-06-30 16:30:02: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:03: Starting joplin-cli 0.8.21...
2017-06-30 16:30:03: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:04: Starting joplin-cli 0.8.21...
2017-06-30 16:30:04: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:06: Starting joplin-cli 0.8.21...
2017-06-30 16:30:06: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:07: Starting joplin-cli 0.8.21...
2017-06-30 16:30:07: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:08: Starting joplin-cli 0.8.21...
2017-06-30 16:30:08: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:10: Starting joplin-cli 0.8.21...
2017-06-30 16:30:10: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:11: Starting joplin-cli 0.8.21...
2017-06-30 16:30:11: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:12: Starting joplin-cli 0.8.21...
2017-06-30 16:30:12: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:13: Starting joplin-cli 0.8.21...
2017-06-30 16:30:13: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:15: Starting joplin-cli 0.8.21...
2017-06-30 16:30:15: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:16: Starting joplin-cli 0.8.21...
2017-06-30 16:30:16: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:17: Starting joplin-cli 0.8.21...
2017-06-30 16:30:17: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:18: Starting joplin-cli 0.8.21...
2017-06-30 16:30:18: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:18: mkdir /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync
2017-06-30 16:30:18: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5363788a894c439a8d5d763948d04982.md
2017-06-30 16:30:18: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5363788a894c439a8d5d763948d04982.md_1498836618857
2017-06-30 16:30:18: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5363788a894c439a8d5d763948d04982.md
2017-06-30 16:30:18: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5363788a894c439a8d5d763948d04982.md_1498836618857
2017-06-30 16:30:18: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5363788a894c439a8d5d763948d04982.md_1498836618857
2017-06-30 16:30:18: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5363788a894c439a8d5d763948d04982.md_1498836618857 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5363788a894c439a8d5d763948d04982.md
2017-06-30 16:30:19: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/a9a1ba06692043faa2d70feb7c7406fa.md
2017-06-30 16:30:19: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a9a1ba06692043faa2d70feb7c7406fa.md_1498836619010
2017-06-30 16:30:19: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a9a1ba06692043faa2d70feb7c7406fa.md_1498836619010
2017-06-30 16:30:19: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a9a1ba06692043faa2d70feb7c7406fa.md_1498836619010 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/a9a1ba06692043faa2d70feb7c7406fa.md
2017-06-30 16:30:19: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/cf565b9f674343758a3403cbabd0ecce.md
2017-06-30 16:30:19: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/cf565b9f674343758a3403cbabd0ecce.md_1498836619184
2017-06-30 16:30:19: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/cf565b9f674343758a3403cbabd0ecce.md_1498836619184
2017-06-30 16:30:19: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/cf565b9f674343758a3403cbabd0ecce.md_1498836619184 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/cf565b9f674343758a3403cbabd0ecce.md
2017-06-30 16:30:19: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/304b2f16e7d948b6a44f56760bb5dd89.md
2017-06-30 16:30:19: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/304b2f16e7d948b6a44f56760bb5dd89.md_1498836619368
2017-06-30 16:30:19: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/304b2f16e7d948b6a44f56760bb5dd89.md_1498836619368
2017-06-30 16:30:19: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/304b2f16e7d948b6a44f56760bb5dd89.md_1498836619368 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/304b2f16e7d948b6a44f56760bb5dd89.md
2017-06-30 16:30:19: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/91db86c3994b42b0bea71847d0913ebc.md
2017-06-30 16:30:19: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/91db86c3994b42b0bea71847d0913ebc.md_1498836619561
2017-06-30 16:30:19: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/91db86c3994b42b0bea71847d0913ebc.md_1498836619561
2017-06-30 16:30:19: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/91db86c3994b42b0bea71847d0913ebc.md_1498836619561 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/91db86c3994b42b0bea71847d0913ebc.md
2017-06-30 16:30:19: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/c16d59d404264ccb80bd38514b12f3d2.md
2017-06-30 16:30:19: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c16d59d404264ccb80bd38514b12f3d2.md_1498836619732
2017-06-30 16:30:19: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c16d59d404264ccb80bd38514b12f3d2.md_1498836619732
2017-06-30 16:30:19: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c16d59d404264ccb80bd38514b12f3d2.md_1498836619732 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/c16d59d404264ccb80bd38514b12f3d2.md
2017-06-30 16:30:19: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/b6786307dd1f47a59771a69c7f1ebf0e.md
2017-06-30 16:30:19: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/b6786307dd1f47a59771a69c7f1ebf0e.md_1498836619853
2017-06-30 16:30:19: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/b6786307dd1f47a59771a69c7f1ebf0e.md_1498836619853
2017-06-30 16:30:19: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/b6786307dd1f47a59771a69c7f1ebf0e.md_1498836619853 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/b6786307dd1f47a59771a69c7f1ebf0e.md
2017-06-30 16:30:19: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/9ff544edf00e40a8bcb181a60afda286.md
2017-06-30 16:30:19: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9ff544edf00e40a8bcb181a60afda286.md_1498836619943
2017-06-30 16:30:19: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9ff544edf00e40a8bcb181a60afda286.md_1498836619943
2017-06-30 16:30:19: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9ff544edf00e40a8bcb181a60afda286.md_1498836619943 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/9ff544edf00e40a8bcb181a60afda286.md
2017-06-30 16:30:20: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/a4f0ccf2604144faae301805150ff131.md
2017-06-30 16:30:20: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a4f0ccf2604144faae301805150ff131.md_1498836620027
2017-06-30 16:30:20: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a4f0ccf2604144faae301805150ff131.md_1498836620027
2017-06-30 16:30:20: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a4f0ccf2604144faae301805150ff131.md_1498836620027 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/a4f0ccf2604144faae301805150ff131.md
2017-06-30 16:30:20: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/f01c90c2048e475292d5a44389508c3a.md
2017-06-30 16:30:20: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/f01c90c2048e475292d5a44389508c3a.md_1498836620127
2017-06-30 16:30:20: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/f01c90c2048e475292d5a44389508c3a.md_1498836620127
2017-06-30 16:30:20: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/f01c90c2048e475292d5a44389508c3a.md_1498836620127 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/f01c90c2048e475292d5a44389508c3a.md
2017-06-30 16:30:20: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/51d1dca0dcad43cf8458a558d299e92a.md
2017-06-30 16:30:20: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/51d1dca0dcad43cf8458a558d299e92a.md_1498836620244
2017-06-30 16:30:20: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/51d1dca0dcad43cf8458a558d299e92a.md_1498836620244
2017-06-30 16:30:20: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/51d1dca0dcad43cf8458a558d299e92a.md_1498836620244 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/51d1dca0dcad43cf8458a558d299e92a.md
2017-06-30 16:30:20: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/a45831c40ad0478b80d9b7b3ca285b04.md
2017-06-30 16:30:20: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a45831c40ad0478b80d9b7b3ca285b04.md_1498836620393
2017-06-30 16:30:20: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a45831c40ad0478b80d9b7b3ca285b04.md_1498836620393
2017-06-30 16:30:20: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/a45831c40ad0478b80d9b7b3ca285b04.md_1498836620393 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/a45831c40ad0478b80d9b7b3ca285b04.md
2017-06-30 16:30:20: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/3f552f96688e4ac9bf6b93dd162e03de.md
2017-06-30 16:30:20: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/3f552f96688e4ac9bf6b93dd162e03de.md_1498836620585
2017-06-30 16:30:20: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/3f552f96688e4ac9bf6b93dd162e03de.md_1498836620585
2017-06-30 16:30:20: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/3f552f96688e4ac9bf6b93dd162e03de.md_1498836620585 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/3f552f96688e4ac9bf6b93dd162e03de.md
2017-06-30 16:30:20: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/023afa2bb4f54a6383984334db8abc00.md
2017-06-30 16:30:20: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/023afa2bb4f54a6383984334db8abc00.md_1498836620696
2017-06-30 16:30:20: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/023afa2bb4f54a6383984334db8abc00.md_1498836620696
2017-06-30 16:30:20: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/023afa2bb4f54a6383984334db8abc00.md_1498836620696 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/023afa2bb4f54a6383984334db8abc00.md
2017-06-30 16:30:20: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/c970a6390bf744289970b39008aec35f.md
2017-06-30 16:30:20: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c970a6390bf744289970b39008aec35f.md_1498836620820
2017-06-30 16:30:20: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c970a6390bf744289970b39008aec35f.md_1498836620820
2017-06-30 16:30:20: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c970a6390bf744289970b39008aec35f.md_1498836620820 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/c970a6390bf744289970b39008aec35f.md
2017-06-30 16:30:20: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/9e40e0dc97824a34a7babdb2ac09510d.md
2017-06-30 16:30:20: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9e40e0dc97824a34a7babdb2ac09510d.md_1498836620918
2017-06-30 16:30:20: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9e40e0dc97824a34a7babdb2ac09510d.md_1498836620918
2017-06-30 16:30:20: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/9e40e0dc97824a34a7babdb2ac09510d.md_1498836620918 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/9e40e0dc97824a34a7babdb2ac09510d.md
2017-06-30 16:30:21: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/920450e8d37e4a17b512f324aa713b06.md
2017-06-30 16:30:21: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/920450e8d37e4a17b512f324aa713b06.md_1498836621070
2017-06-30 16:30:21: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/920450e8d37e4a17b512f324aa713b06.md_1498836621070
2017-06-30 16:30:21: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/920450e8d37e4a17b512f324aa713b06.md_1498836621070 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/920450e8d37e4a17b512f324aa713b06.md
2017-06-30 16:30:21: list /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync
2017-06-30 16:30:21: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/012318ecb4704d759c717d0d7ebb1a74.md
2017-06-30 16:30:21: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/3b9a42af068d43e8aa8d6664d5dda0b3.md
2017-06-30 16:30:21: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/4ad29f49f0a7470db86b7a40d2e2643b.md
2017-06-30 16:30:21: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5fc3f7617b55458288714b4c104801c1.md
2017-06-30 16:30:22: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/79429b5f11ab4396b472a91877f4351d.md
2017-06-30 16:30:22: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/b576982b2d80495aa19bee8f962b6385.md
2017-06-30 16:30:22: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/b658acdc78c34dc1a058ecef66701745.md
2017-06-30 16:30:22: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/c6e06b7776374010a5e9620fad7a67b3.md
2017-06-30 16:30:22: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/cde0337afd8844388fc3b820a473315e.md
2017-06-30 16:30:22: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/e7a95492e77f44e6a8b6a4ed3087416e.md
2017-06-30 16:30:23: Starting joplin-cli 0.8.21...
2017-06-30 16:30:23: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:24: Starting joplin-cli 0.8.21...
2017-06-30 16:30:24: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:26: Starting joplin-cli 0.8.21...
2017-06-30 16:30:26: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:27: Starting joplin-cli 0.8.21...
2017-06-30 16:30:27: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1
2017-06-30 16:30:28: Starting joplin-cli 0.8.21...
2017-06-30 16:30:28: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client1

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,23 @@
2017-06-30 16:30:06: Starting synchronization... [1498836606127]
2017-06-30 16:30:06: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local f9ce22e174ca4e7daf98f9efdd79116c, "Notebook")
2017-06-30 16:30:06: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local e7a95492e77f44e6a8b6a4ed3087416e, "marvelous")
2017-06-30 16:30:06: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local c6e06b7776374010a5e9620fad7a67b3, "capricious")
2017-06-30 16:30:06: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 79429b5f11ab4396b472a91877f4351d, "tranquil")
2017-06-30 16:30:06: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 012318ecb4704d759c717d0d7ebb1a74, "flower")
2017-06-30 16:30:06: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local b576982b2d80495aa19bee8f962b6385, "sand")
2017-06-30 16:30:07: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local b658acdc78c34dc1a058ecef66701745, "blot")
2017-06-30 16:30:07: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 4ad29f49f0a7470db86b7a40d2e2643b, "duck")
2017-06-30 16:30:07: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local cde0337afd8844388fc3b820a473315e, "old-fashioned")
2017-06-30 16:30:07: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 5fc3f7617b55458288714b4c104801c1, "time")
2017-06-30 16:30:07: Sync: createRemote: remote does not exist, and local is new and has never been synced: (Local 3b9a42af068d43e8aa8d6664d5dda0b3, "marry")
2017-06-30 16:30:07: Sync: createLocal: remote exists but local does not: (Remote 03f97bf7f1a24f38a828742e090dfd69, "sail")
2017-06-30 16:30:07: Sync: createLocal: remote exists but local does not: (Remote 2a2fa1e5410844bd8bdaad016b7ab9f9, "lively")
2017-06-30 16:30:08: Sync: createLocal: remote exists but local does not: (Remote 36623aba9d8c45aa874e4fbbbe35e5c2, "cuddly")
2017-06-30 16:30:08: Sync: createLocal: remote exists but local does not: (Remote 40f5141cf87a41c2b36463000098e433, "lazy")
2017-06-30 16:30:08: Sync: createLocal: remote exists but local does not: (Remote 4b3a0eb941bb49afa2736d49e436d85c, "lumber")
2017-06-30 16:30:08: Sync: createLocal: remote exists but local does not: (Remote 5542fde1fd7f42cd8bd39bf2fd00010f, "mountain")
2017-06-30 16:30:08: Sync: createLocal: remote exists but local does not: (Remote 6d139ba334f34b039b289dc167ab0db7, "conscious")
2017-06-30 16:30:08: Sync: createLocal: remote exists but local does not: (Remote 72fa06d2fb2f4d98abc732a2e968aa28, "save")
2017-06-30 16:30:08: Sync: createLocal: remote exists but local does not: (Remote 885e8c7802a547298c96ab5644965002, "roll")
2017-06-30 16:30:08: Sync: createLocal: remote exists but local does not: (Remote 917625fe9474484c948df79d4c3391dd, "wine")
2017-06-30 16:30:09: Sync: createLocal: remote exists but local does not: (Remote 9d939322414b4c1680052a1e0dda92a2, "share")

View File

@@ -0,0 +1,115 @@
2017-06-30 16:29:49: Starting joplin-cli 0.8.21...
2017-06-30 16:29:49: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:29:52: Starting joplin-cli 0.8.21...
2017-06-30 16:29:52: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:29:53: Starting joplin-cli 0.8.21...
2017-06-30 16:29:53: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:29:54: Starting joplin-cli 0.8.21...
2017-06-30 16:29:54: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:29:55: Starting joplin-cli 0.8.21...
2017-06-30 16:29:55: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:29:56: Starting joplin-cli 0.8.21...
2017-06-30 16:29:56: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:29:58: Starting joplin-cli 0.8.21...
2017-06-30 16:29:58: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:29:59: Starting joplin-cli 0.8.21...
2017-06-30 16:29:59: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:00: Starting joplin-cli 0.8.21...
2017-06-30 16:30:00: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:01: Starting joplin-cli 0.8.21...
2017-06-30 16:30:01: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:03: Starting joplin-cli 0.8.21...
2017-06-30 16:30:03: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:04: Starting joplin-cli 0.8.21...
2017-06-30 16:30:04: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:06: Starting joplin-cli 0.8.21...
2017-06-30 16:30:06: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:06: mkdir /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync
2017-06-30 16:30:06: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/f9ce22e174ca4e7daf98f9efdd79116c.md
2017-06-30 16:30:06: mkdir /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync
2017-06-30 16:30:06: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/f9ce22e174ca4e7daf98f9efdd79116c.md
2017-06-30 16:30:06: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/f9ce22e174ca4e7daf98f9efdd79116c.md_1498836606141
2017-06-30 16:30:06: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/f9ce22e174ca4e7daf98f9efdd79116c.md_1498836606141
2017-06-30 16:30:06: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/f9ce22e174ca4e7daf98f9efdd79116c.md_1498836606141
2017-06-30 16:30:06: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/f9ce22e174ca4e7daf98f9efdd79116c.md_1498836606141 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/f9ce22e174ca4e7daf98f9efdd79116c.md
2017-06-30 16:30:06: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/e7a95492e77f44e6a8b6a4ed3087416e.md
2017-06-30 16:30:06: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/e7a95492e77f44e6a8b6a4ed3087416e.md_1498836606299
2017-06-30 16:30:06: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/e7a95492e77f44e6a8b6a4ed3087416e.md_1498836606299
2017-06-30 16:30:06: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/e7a95492e77f44e6a8b6a4ed3087416e.md_1498836606299 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/e7a95492e77f44e6a8b6a4ed3087416e.md
2017-06-30 16:30:06: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/c6e06b7776374010a5e9620fad7a67b3.md
2017-06-30 16:30:06: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c6e06b7776374010a5e9620fad7a67b3.md_1498836606530
2017-06-30 16:30:06: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c6e06b7776374010a5e9620fad7a67b3.md_1498836606530
2017-06-30 16:30:06: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/c6e06b7776374010a5e9620fad7a67b3.md_1498836606530 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/c6e06b7776374010a5e9620fad7a67b3.md
2017-06-30 16:30:06: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/79429b5f11ab4396b472a91877f4351d.md
2017-06-30 16:30:06: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/79429b5f11ab4396b472a91877f4351d.md_1498836606679
2017-06-30 16:30:06: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/79429b5f11ab4396b472a91877f4351d.md_1498836606679
2017-06-30 16:30:06: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/79429b5f11ab4396b472a91877f4351d.md_1498836606679 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/79429b5f11ab4396b472a91877f4351d.md
2017-06-30 16:30:06: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/012318ecb4704d759c717d0d7ebb1a74.md
2017-06-30 16:30:06: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/012318ecb4704d759c717d0d7ebb1a74.md_1498836606795
2017-06-30 16:30:06: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/012318ecb4704d759c717d0d7ebb1a74.md_1498836606795
2017-06-30 16:30:06: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/012318ecb4704d759c717d0d7ebb1a74.md_1498836606795 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/012318ecb4704d759c717d0d7ebb1a74.md
2017-06-30 16:30:06: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/b576982b2d80495aa19bee8f962b6385.md
2017-06-30 16:30:06: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/b576982b2d80495aa19bee8f962b6385.md_1498836606945
2017-06-30 16:30:06: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/b576982b2d80495aa19bee8f962b6385.md_1498836606945
2017-06-30 16:30:06: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/b576982b2d80495aa19bee8f962b6385.md_1498836606945 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/b576982b2d80495aa19bee8f962b6385.md
2017-06-30 16:30:07: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/b658acdc78c34dc1a058ecef66701745.md
2017-06-30 16:30:07: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/b658acdc78c34dc1a058ecef66701745.md_1498836607045
2017-06-30 16:30:07: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/b658acdc78c34dc1a058ecef66701745.md_1498836607045
2017-06-30 16:30:07: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/b658acdc78c34dc1a058ecef66701745.md_1498836607045 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/b658acdc78c34dc1a058ecef66701745.md
2017-06-30 16:30:07: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/4ad29f49f0a7470db86b7a40d2e2643b.md
2017-06-30 16:30:07: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/4ad29f49f0a7470db86b7a40d2e2643b.md_1498836607153
2017-06-30 16:30:07: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/4ad29f49f0a7470db86b7a40d2e2643b.md_1498836607153
2017-06-30 16:30:07: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/4ad29f49f0a7470db86b7a40d2e2643b.md_1498836607153 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/4ad29f49f0a7470db86b7a40d2e2643b.md
2017-06-30 16:30:07: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/cde0337afd8844388fc3b820a473315e.md
2017-06-30 16:30:07: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/cde0337afd8844388fc3b820a473315e.md_1498836607262
2017-06-30 16:30:07: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/cde0337afd8844388fc3b820a473315e.md_1498836607262
2017-06-30 16:30:07: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/cde0337afd8844388fc3b820a473315e.md_1498836607262 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/cde0337afd8844388fc3b820a473315e.md
2017-06-30 16:30:07: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5fc3f7617b55458288714b4c104801c1.md
2017-06-30 16:30:07: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5fc3f7617b55458288714b4c104801c1.md_1498836607362
2017-06-30 16:30:07: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5fc3f7617b55458288714b4c104801c1.md_1498836607362
2017-06-30 16:30:07: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/5fc3f7617b55458288714b4c104801c1.md_1498836607362 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5fc3f7617b55458288714b4c104801c1.md
2017-06-30 16:30:07: stat /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/3b9a42af068d43e8aa8d6664d5dda0b3.md
2017-06-30 16:30:07: put /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/3b9a42af068d43e8aa8d6664d5dda0b3.md_1498836607470
2017-06-30 16:30:07: setTimestamp /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/3b9a42af068d43e8aa8d6664d5dda0b3.md_1498836607470
2017-06-30 16:30:07: move /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/.sync/3b9a42af068d43e8aa8d6664d5dda0b3.md_1498836607470 => /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/3b9a42af068d43e8aa8d6664d5dda0b3.md
2017-06-30 16:30:07: list /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync
2017-06-30 16:30:07: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/03f97bf7f1a24f38a828742e090dfd69.md
2017-06-30 16:30:07: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/2a2fa1e5410844bd8bdaad016b7ab9f9.md
2017-06-30 16:30:07: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/36623aba9d8c45aa874e4fbbbe35e5c2.md
2017-06-30 16:30:08: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/40f5141cf87a41c2b36463000098e433.md
2017-06-30 16:30:08: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/4b3a0eb941bb49afa2736d49e436d85c.md
2017-06-30 16:30:08: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/5542fde1fd7f42cd8bd39bf2fd00010f.md
2017-06-30 16:30:08: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/6d139ba334f34b039b289dc167ab0db7.md
2017-06-30 16:30:08: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/72fa06d2fb2f4d98abc732a2e968aa28.md
2017-06-30 16:30:08: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/885e8c7802a547298c96ab5644965002.md
2017-06-30 16:30:08: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/917625fe9474484c948df79d4c3391dd.md
2017-06-30 16:30:08: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/9d939322414b4c1680052a1e0dda92a2.md
2017-06-30 16:30:09: get /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/sync/a95fb1806fe84132915271c5bef8d429.md
2017-06-30 16:30:10: Starting joplin-cli 0.8.21...
2017-06-30 16:30:10: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:11: Starting joplin-cli 0.8.21...
2017-06-30 16:30:11: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:12: Starting joplin-cli 0.8.21...
2017-06-30 16:30:12: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:13: Starting joplin-cli 0.8.21...
2017-06-30 16:30:13: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:15: Starting joplin-cli 0.8.21...
2017-06-30 16:30:15: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:16: Starting joplin-cli 0.8.21...
2017-06-30 16:30:16: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:17: Starting joplin-cli 0.8.21...
2017-06-30 16:30:17: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:18: Starting joplin-cli 0.8.21...
2017-06-30 16:30:18: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:20: Starting joplin-cli 0.8.21...
2017-06-30 16:30:20: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:21: Starting joplin-cli 0.8.21...
2017-06-30 16:30:21: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:22: Starting joplin-cli 0.8.21...
2017-06-30 16:30:22: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:24: Starting joplin-cli 0.8.21...
2017-06-30 16:30:24: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:25: Starting joplin-cli 0.8.21...
2017-06-30 16:30:25: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2
2017-06-30 16:30:26: Starting joplin-cli 0.8.21...
2017-06-30 16:30:26: Profile directory: /mnt/d/Web/www/joplin/CliClient/tests/fuzzing/client2

View File

@@ -0,0 +1,71 @@
<?php
$clientId = isset($argv[1]) ? $argv[1] : null;
if (!$clientId) throw new Exception('Client ID not set');
function createClient($id) {
return array(
'id' => $id,
'profileDir' => dirname(__FILE__) . '/client' . $id,
);
}
$client = createClient($clientId);
function deltree($dir) {
$files = array_diff(scandir($dir), array('.','..'));
foreach ($files as $file) {
is_dir("$dir/$file") ? deltree("$dir/$file") : unlink("$dir/$file");
}
return rmdir($dir);
}
function randomElement($array) {
return $array[mt_rand(0, count($array) - 1)];
}
function randomWord() {
$words = array('future','breezy','north','untidy','welcome','tenuous','material','tour','erect','bounce','skirt','compare','needle','abstracted','flower','detect','market','boring','lively','ragged','many','safe','credit','periodic','fold','whip','lewd','perform','nonchalant','rigid','amusing','giant','slippery','dog','tranquil','ajar','fanatical','flood','learned','helpless','size','ambiguous','long','six','jealous','history','distance','automatic','soggy','statuesque','prevent','full','price','parallel','mine','garrulous','wandering','puzzled','argument','sack','boil','marked','alive','observe','earsplitting','loving','fallacious','ice','parched','gleaming','horse','frame','gorgeous','quartz','quill','found','stranger','digestion','balance','cut','savory','peace','passenger','driving','sand','offer','rightful','earthquake','ear','spark','seashore','godly','rabbits','time','flowers','womanly','sulky','penitent','detail','warm','functional','silver','bushes','veil','filthy','jar','stitch','heartbreaking','bite-sized','station','play','plastic','common','save','subsequent','miscreant','slimy','train','disgusted','new','crib','boundless','stop','zephyr','roof','boiling','humdrum','record','park','symptomatic','vegetable','interest','ring','dusty','pet','depressed','murder','humor','capricious','kiss','gold','fax','cycle','river','black','four','irritating','mature','well-groomed','guard','hand','spotty','celery','air','scent','jelly','alleged','preach','anger','daffy','wrestle','torpid','excuse','jump','paint','exotic','tasty','auspicious','shirt','exercise','planes','romantic','telephone','teaching','towering','line','grouchy','eggnog','treat','powerful','abortive','paddle','belief','smash','fowl','steam','scale','workable','overwrought','elated','rustic','cuddly','star','extra-small','wacky','marry','optimal','muddle','care','turn','wealthy','phobic','ticket','petite','order','curly','lazy','careful','unequaled','mountain','attract','guide','robin','plant','hook','sail','creature','sparkle','sugar','volcano','grate','plough','undesirable','clever','mark','sea','responsible','destroy','broken','bore','spell','gate','lean','eye','afternoon','grease','note','smiling','puzzling','annoy','disagreeable','valuable','judge','frequent','live','gentle','reward','calm','aloof','old-fashioned','rule','sweet','hat','lumber','cheer','writing','able','roasted','scream','awful','meaty','nutty','trade','protest','letter','half','spiteful','library','food','sign','side','adhesive','itch','fuzzy','force','circle','historical','door','behavior','smile','bitter','scatter','crow','risk','rebel','milky','wise','rule','confuse','motion','roll','grain','structure','ship','admire','discreet','test','ask','meddle','tacit','abundant','skin','wound','beds','saw','few','rhyme','heavenly','jaded','finger','advice','letters','satisfying','general','add','fork','impartial','remind','rate','rotten','beam','puffy','march','horn','practise','brief','coordinated','ahead','woebegone','insidious','continue','rapid','adamant','gray','bless','dinosaurs','dress','woman','stir','songs','unwieldy','jump','cows','dust','terrify','acrid','illegal','desire','share','strange','damaged','entertaining','stare','underwear','legal','oven','refuse','accidental','blot','snakes','talk','lunchroom','man','blushing','waste','aggressive','oval','tax','clam','present','important','chicken','name','town','mend','knowing','long','wrathful','kettle','difficult','account','choke','decorate','bead','fear','majestic','shame','laborer','wine','story','hissing','stingy','plant','potato','houses','leg','number','condemned','hollow','bashful','distinct','ray','evanescent','whimsical','magic','bomb','cute','omniscient','plane','immense','brake','time','marvelous','mask','conscious','explain','answer','physical','berry','guide','machine','toad','business','milk','examine','chickens','uppity','red','kind','medical','shiver','punch','lake','sleepy','axiomatic','matter','nosy','zealous','mint','embarrassed','psychedelic','imagine','collar','tame','wing','soup','efficient','rat','signal','delight','belong','ducks','wicked','nod','close','snotty','measly','front','flag','smoke','magenta','squash','bubble','downtown','thirsty','tremendous','closed','stupid','shaggy','receipt','low','famous','momentous','grateful','concerned','tart','bomb','existence','vacation','grandfather','duck','bubble','reason','glue','assorted','peaceful','questionable','type','industry','chemical','rambunctious','plant','heap','church','suggestion','tickle','income','aberrant','enormous','knock');
return randomElement($words);
}
function execCommand($cmd) {
global $client;
$cmd = 'joplin --profile ' . $client['profileDir'] . ' ' . $cmd;
echo $cmd . "\n";
exec($cmd, $output);
return implode("\n", $output);
}
function execRandomCommand() {
$possibleCommands = array(
array('mkbook {word}', 10),
array('mknote {word}', 100),
array('sync', 10),
);
$cmd = null;
while (true) {
$cmd = randomElement($possibleCommands);
$r = mt_rand(1,100);
if ($r <= $cmd[1]) break;
}
$cmd = $cmd[0];
$cmd = str_replace('{word}', randomWord(), $cmd);
return execCommand($cmd);
}
deltree($client['profileDir']);
execCommand('config sync.target local');
execCommand('config sync.local.path ' . dirname(__FILE__) . '/sync');
while (true) {
$r = execRandomCommand();
if ($r) {
echo $r . "\n";
}
}

View File

@@ -0,0 +1,23 @@
flower
id: 012318ecb4704d759c717d0d7ebb1a74
parent_id: f9ce22e174ca4e7daf98f9efdd79116c
title: flower
body:
created_time: 2017-06-30T15:29:55.737Z
updated_time: 2017-06-30T15:29:55.737Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
gleaming
id: 023afa2bb4f54a6383984334db8abc00
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: gleaming
body:
created_time: 2017-06-30T15:30:13.870Z
updated_time: 2017-06-30T15:30:13.869Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
sail
id: 03f97bf7f1a24f38a828742e090dfd69
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: sail
body:
created_time: 2017-06-30T15:29:47.651Z
updated_time: 2017-06-30T15:29:47.650Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
lively
id: 2a2fa1e5410844bd8bdaad016b7ab9f9
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: lively
body:
created_time: 2017-06-30T15:29:53.725Z
updated_time: 2017-06-30T15:29:53.725Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
grease
id: 304b2f16e7d948b6a44f56760bb5dd89
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: grease
body:
created_time: 2017-06-30T15:30:00.811Z
updated_time: 2017-06-30T15:30:00.810Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,9 @@
cuddly
id: 36623aba9d8c45aa874e4fbbbe35e5c2
title: cuddly
created_time: 2017-06-30T15:29:40.316Z
updated_time: 2017-06-30T15:29:40.316Z
type_: 2

View File

@@ -0,0 +1,23 @@
marry
id: 3b9a42af068d43e8aa8d6664d5dda0b3
parent_id: f9ce22e174ca4e7daf98f9efdd79116c
title: marry
body:
created_time: 2017-06-30T15:30:04.779Z
updated_time: 2017-06-30T15:30:04.779Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
knock
id: 3f552f96688e4ac9bf6b93dd162e03de
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: knock
body:
created_time: 2017-06-30T15:30:12.624Z
updated_time: 2017-06-30T15:30:12.624Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
lazy
id: 40f5141cf87a41c2b36463000098e433
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: lazy
body:
created_time: 2017-06-30T15:29:37.709Z
updated_time: 2017-06-30T15:29:37.709Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
duck
id: 4ad29f49f0a7470db86b7a40d2e2643b
parent_id: f9ce22e174ca4e7daf98f9efdd79116c
title: duck
body:
created_time: 2017-06-30T15:30:00.602Z
updated_time: 2017-06-30T15:30:00.602Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,9 @@
lumber
id: 4b3a0eb941bb49afa2736d49e436d85c
title: lumber
created_time: 2017-06-30T15:29:35.092Z
updated_time: 2017-06-30T15:29:35.091Z
type_: 2

View File

@@ -0,0 +1,23 @@
park
id: 51d1dca0dcad43cf8458a558d299e92a
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: park
body:
created_time: 2017-06-30T15:30:10.144Z
updated_time: 2017-06-30T15:30:10.143Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
measly
id: 5363788a894c439a8d5d763948d04982
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: measly
body:
created_time: 2017-06-30T15:29:57.246Z
updated_time: 2017-06-30T15:29:57.246Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
mountain
id: 5542fde1fd7f42cd8bd39bf2fd00010f
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: mountain
body:
created_time: 2017-06-30T15:29:36.400Z
updated_time: 2017-06-30T15:29:36.400Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
time
id: 5fc3f7617b55458288714b4c104801c1
parent_id: f9ce22e174ca4e7daf98f9efdd79116c
title: time
body:
created_time: 2017-06-30T15:30:03.284Z
updated_time: 2017-06-30T15:30:03.283Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
conscious
id: 6d139ba334f34b039b289dc167ab0db7
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: conscious
body:
created_time: 2017-06-30T15:29:50.115Z
updated_time: 2017-06-30T15:29:50.115Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
save
id: 72fa06d2fb2f4d98abc732a2e968aa28
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: save
body:
created_time: 2017-06-30T15:29:39.015Z
updated_time: 2017-06-30T15:29:39.015Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
tranquil
id: 79429b5f11ab4396b472a91877f4351d
parent_id: f9ce22e174ca4e7daf98f9efdd79116c
title: tranquil
body:
created_time: 2017-06-30T15:29:54.542Z
updated_time: 2017-06-30T15:29:54.542Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
roll
id: 885e8c7802a547298c96ab5644965002
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: roll
body:
created_time: 2017-06-30T15:29:48.862Z
updated_time: 2017-06-30T15:29:48.862Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
wine
id: 917625fe9474484c948df79d4c3391dd
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: wine
body:
created_time: 2017-06-30T15:29:52.558Z
updated_time: 2017-06-30T15:29:52.558Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
steam
id: 91db86c3994b42b0bea71847d0913ebc
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: steam
body:
created_time: 2017-06-30T15:30:02.185Z
updated_time: 2017-06-30T15:30:02.185Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
acrid
id: 920450e8d37e4a17b512f324aa713b06
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: acrid
body:
created_time: 2017-06-30T15:30:17.602Z
updated_time: 2017-06-30T15:30:17.601Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
share
id: 9d939322414b4c1680052a1e0dda92a2
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: share
body:
created_time: 2017-06-30T15:29:43.833Z
updated_time: 2017-06-30T15:29:43.833Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
legal
id: 9e40e0dc97824a34a7babdb2ac09510d
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: legal
body:
created_time: 2017-06-30T15:30:16.364Z
updated_time: 2017-06-30T15:30:16.363Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
six
id: 9ff544edf00e40a8bcb181a60afda286
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: six
body:
created_time: 2017-06-30T15:30:06.256Z
updated_time: 2017-06-30T15:30:06.255Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
plough
id: a45831c40ad0478b80d9b7b3ca285b04
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: plough
body:
created_time: 2017-06-30T15:30:11.408Z
updated_time: 2017-06-30T15:30:11.407Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
peace
id: a4f0ccf2604144faae301805150ff131
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: peace
body:
created_time: 2017-06-30T15:30:07.549Z
updated_time: 2017-06-30T15:30:07.549Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
remind
id: a95fb1806fe84132915271c5bef8d429
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: remind
body:
created_time: 2017-06-30T15:29:45.044Z
updated_time: 2017-06-30T15:29:45.044Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
ragged
id: a9a1ba06692043faa2d70feb7c7406fa
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: ragged
body:
created_time: 2017-06-30T15:29:58.426Z
updated_time: 2017-06-30T15:29:58.425Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
sand
id: b576982b2d80495aa19bee8f962b6385
parent_id: f9ce22e174ca4e7daf98f9efdd79116c
title: sand
body:
created_time: 2017-06-30T15:29:57.004Z
updated_time: 2017-06-30T15:29:57.004Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
blot
id: b658acdc78c34dc1a058ecef66701745
parent_id: f9ce22e174ca4e7daf98f9efdd79116c
title: blot
body:
created_time: 2017-06-30T15:29:59.407Z
updated_time: 2017-06-30T15:29:59.407Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
whimsical
id: b6786307dd1f47a59771a69c7f1ebf0e
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: whimsical
body:
created_time: 2017-06-30T15:30:04.911Z
updated_time: 2017-06-30T15:30:04.911Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
squash
id: c16d59d404264ccb80bd38514b12f3d2
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: squash
body:
created_time: 2017-06-30T15:30:03.462Z
updated_time: 2017-06-30T15:30:03.462Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,9 @@
Notebook
id: c22fc598ac014dafa599c8d2121a5c0a
title: Notebook
created_time: 2017-06-30T15:29:29.224Z
updated_time: 2017-06-30T15:29:29.224Z
type_: 2

View File

@@ -0,0 +1,23 @@
capricious
id: c6e06b7776374010a5e9620fad7a67b3
parent_id: f9ce22e174ca4e7daf98f9efdd79116c
title: capricious
body:
created_time: 2017-06-30T15:29:53.317Z
updated_time: 2017-06-30T15:29:53.317Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
anger
id: c970a6390bf744289970b39008aec35f
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: anger
body:
created_time: 2017-06-30T15:30:15.109Z
updated_time: 2017-06-30T15:30:15.109Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
old-fashioned
id: cde0337afd8844388fc3b820a473315e
parent_id: f9ce22e174ca4e7daf98f9efdd79116c
title: old-fashioned
body:
created_time: 2017-06-30T15:30:01.958Z
updated_time: 2017-06-30T15:30:01.957Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
romantic
id: cf565b9f674343758a3403cbabd0ecce
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: romantic
body:
created_time: 2017-06-30T15:29:59.620Z
updated_time: 2017-06-30T15:29:59.620Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
difficult
id: dc8f02a962544a5485451aad3048ce49
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: difficult
body:
created_time: 2017-06-30T15:29:46.312Z
updated_time: 2017-06-30T15:29:46.312Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,9 @@
marvelous
id: e7a95492e77f44e6a8b6a4ed3087416e
title: marvelous
created_time: 2017-06-30T15:29:58.190Z
updated_time: 2017-06-30T15:29:58.190Z
type_: 2

View File

@@ -0,0 +1,23 @@
detect
id: ee796676943744129cf01cdd7103d380
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: detect
body:
created_time: 2017-06-30T15:29:51.362Z
updated_time: 2017-06-30T15:29:51.361Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,23 @@
paddle
id: f01c90c2048e475292d5a44389508c3a
parent_id: c22fc598ac014dafa599c8d2121a5c0a
title: paddle
body:
created_time: 2017-06-30T15:30:08.764Z
updated_time: 2017-06-30T15:30:08.764Z
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin
source_application: net.cozic.joplin-cli
application_data:
order: 0
type_: 1

View File

@@ -0,0 +1,9 @@
Notebook
id: f9ce22e174ca4e7daf98f9efdd79116c
title: Notebook
created_time: 2017-06-30T15:29:49.444Z
updated_time: 2017-06-30T15:29:49.444Z
type_: 2

View File

@@ -142,6 +142,7 @@ Setting.defaults_ = {
'clientId': { value: '', type: 'string', public: false },
'activeFolderId': { value: '', type: 'string', public: false },
'sync.onedrive.auth': { value: '', type: 'string', public: false },
'sync.local.path': { value: '', type: 'string', public: true },
'sync.target': { value: 'onedrive', type: 'string', public: true },
};