Fix file sync error on Windows for old filenames containing colons
OS.Path.basename() stops at colons on Windows, so calling it on the full path produces unexpected results.
This commit is contained in:
parent
59fb9d0226
commit
9e59500619
2 changed files with 412 additions and 110 deletions
|
@ -632,33 +632,32 @@ Zotero.Sync.Storage.Local = {
|
||||||
|
|
||||||
yield Zotero.Attachments.createDirectoryForItem(item);
|
yield Zotero.Attachments.createDirectoryForItem(item);
|
||||||
|
|
||||||
var path = item.getFilePath();
|
var filename = item.attachmentFilename;
|
||||||
if (!path) {
|
if (!filename) {
|
||||||
throw new Error("Empty path for item " + item.key);
|
throw new Error("Empty path for item " + item.key);
|
||||||
}
|
}
|
||||||
// Don't save Windows aliases
|
// Don't save Windows aliases
|
||||||
if (path.endsWith('.lnk')) {
|
if (filename.endsWith('.lnk')) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
var dir = OS.Path.dirname(path);
|
var attachmentDir = Zotero.Attachments.getStorageDirectory(item).path;
|
||||||
var fileName = OS.Path.basename(path);
|
|
||||||
var renamed = false;
|
var renamed = false;
|
||||||
|
|
||||||
// Make sure the new filename is valid, in case an invalid character made it over
|
// Make sure the new filename is valid, in case an invalid character made it over
|
||||||
// (e.g., from before we checked for them)
|
// (e.g., from before we checked for them)
|
||||||
var filteredName = Zotero.File.getValidFileName(fileName);
|
var filteredFilename = Zotero.File.getValidFileName(filename);
|
||||||
if (filteredName != fileName) {
|
if (filteredFilename != filename) {
|
||||||
Zotero.debug("Filtering filename '" + fileName + "' to '" + filteredName + "'");
|
Zotero.debug("Filtering filename '" + filename + "' to '" + filteredFilename + "'");
|
||||||
fileName = filteredName;
|
filename = filteredFilename;
|
||||||
path = OS.Path.join(dir, fileName);
|
|
||||||
renamed = true;
|
renamed = true;
|
||||||
}
|
}
|
||||||
|
var path = OS.Path.join(attachmentDir, filename);
|
||||||
|
|
||||||
Zotero.debug("Moving download file " + OS.Path.basename(tempFilePath)
|
Zotero.debug("Moving download file " + OS.Path.basename(tempFilePath)
|
||||||
+ " into attachment directory as '" + fileName + "'");
|
+ ` into attachment directory as '${filename}'`);
|
||||||
try {
|
try {
|
||||||
var finalFileName = Zotero.File.createShortened(
|
var finalFilename = Zotero.File.createShortened(
|
||||||
path, Components.interfaces.nsIFile.NORMAL_FILE_TYPE, 0o644
|
path, Components.interfaces.nsIFile.NORMAL_FILE_TYPE, 0o644
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -666,14 +665,14 @@ Zotero.Sync.Storage.Local = {
|
||||||
Zotero.File.checkFileAccessError(e, path, 'create');
|
Zotero.File.checkFileAccessError(e, path, 'create');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (finalFileName != fileName) {
|
if (finalFilename != filename) {
|
||||||
Zotero.debug("Changed filename '" + fileName + "' to '" + finalFileName + "'");
|
Zotero.debug("Changed filename '" + filename + "' to '" + finalFilename + "'");
|
||||||
|
|
||||||
fileName = finalFileName;
|
filename = finalFilename;
|
||||||
path = OS.Path.join(dir, fileName);
|
path = OS.Path.join(attachmentDir, filename);
|
||||||
|
|
||||||
// Abort if Windows path limitation would cause filenames to be overly truncated
|
// Abort if Windows path limitation would cause filenames to be overly truncated
|
||||||
if (Zotero.isWin && fileName.length < 40) {
|
if (Zotero.isWin && filename.length < 40) {
|
||||||
try {
|
try {
|
||||||
yield OS.File.remove(path);
|
yield OS.File.remove(path);
|
||||||
}
|
}
|
||||||
|
@ -776,12 +775,11 @@ Zotero.Sync.Storage.Local = {
|
||||||
Zotero.debug("Skipping directory " + filePath);
|
Zotero.debug("Skipping directory " + filePath);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
|
|
||||||
Zotero.debug("Extracting " + filePath);
|
Zotero.debug("Extracting " + filePath);
|
||||||
|
|
||||||
var primaryFile = false;
|
var primaryFile = itemFileName == filePath;
|
||||||
var filtered = false;
|
var filtered = false;
|
||||||
var renamed = false;
|
var renamed = false;
|
||||||
|
|
||||||
|
@ -808,10 +806,10 @@ Zotero.Sync.Storage.Local = {
|
||||||
filePath = itemFileName;
|
filePath = itemFileName;
|
||||||
destPath = OS.Path.join(OS.Path.dirname(destPath), itemFileName);
|
destPath = OS.Path.join(OS.Path.dirname(destPath), itemFileName);
|
||||||
renamed = true;
|
renamed = true;
|
||||||
|
primaryFile = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var primaryFile = itemFileName == filePath;
|
|
||||||
if (primaryFile && filtered) {
|
if (primaryFile && filtered) {
|
||||||
renamed = true;
|
renamed = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -119,103 +119,407 @@ describe("Zotero.Sync.Storage.Local", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("#processDownload()", function () {
|
describe("#processDownload()", function () {
|
||||||
var file1Name = 'index.html';
|
describe("single file", function () {
|
||||||
var file1Contents = '<html><body>Test</body></html>';
|
it("should download a single file into the attachment directory", function* () {
|
||||||
var file2Name = 'aux1.txt';
|
var libraryID = Zotero.Libraries.userLibraryID;
|
||||||
var file2Contents = 'Test 1';
|
var parentItem = yield createDataObject('item');
|
||||||
var subDirName = 'sub';
|
var key = Zotero.DataObjectUtilities.generateKey();
|
||||||
var file3Name = 'aux2';
|
var fileContents = Zotero.Utilities.randomString();
|
||||||
var file3Contents = 'Test 2';
|
|
||||||
|
var oldFilename = "Old File";
|
||||||
var createZIP = Zotero.Promise.coroutine(function* (zipFile) {
|
var tmpDir = Zotero.getTempDirectory().path;
|
||||||
var tmpDir = Zotero.getTempDirectory().path;
|
var tmpFile = OS.Path.join(tmpDir, key + '.tmp');
|
||||||
var zipDir = OS.Path.join(tmpDir, Zotero.Utilities.randomString());
|
yield Zotero.File.putContentsAsync(tmpFile, fileContents);
|
||||||
yield OS.File.makeDir(zipDir);
|
|
||||||
yield Zotero.File.putContentsAsync(OS.Path.join(zipDir, file1Name), file1Contents);
|
// Create an existing attachment directory to replace
|
||||||
yield Zotero.File.putContentsAsync(OS.Path.join(zipDir, file2Name), file2Contents);
|
var dir = Zotero.Attachments.getStorageDirectoryByLibraryAndKey(libraryID, key).path;
|
||||||
|
yield OS.File.makeDir(
|
||||||
|
dir,
|
||||||
|
{
|
||||||
|
unixMode: 0o755
|
||||||
|
}
|
||||||
|
);
|
||||||
|
yield Zotero.File.putContentsAsync(OS.Path.join(dir, oldFilename), '');
|
||||||
|
|
||||||
|
var md5 = Zotero.Utilities.Internal.md5(Zotero.File.pathToFile(tmpFile));
|
||||||
|
var mtime = 1445667239000;
|
||||||
|
|
||||||
|
var json = {
|
||||||
|
key,
|
||||||
|
version: 10,
|
||||||
|
itemType: 'attachment',
|
||||||
|
linkMode: 'imported_url',
|
||||||
|
url: 'https://example.com/foo.txt',
|
||||||
|
filename: 'foo.txt',
|
||||||
|
contentType: 'text/plain',
|
||||||
|
charset: 'utf-8',
|
||||||
|
md5,
|
||||||
|
mtime
|
||||||
|
};
|
||||||
|
yield Zotero.Sync.Data.Local.processObjectsFromJSON('item', libraryID, [json]);
|
||||||
|
|
||||||
|
var item = yield Zotero.Items.getByLibraryAndKeyAsync(libraryID, key);
|
||||||
|
yield Zotero.Sync.Storage.Local.processDownload({
|
||||||
|
item,
|
||||||
|
md5,
|
||||||
|
mtime
|
||||||
|
});
|
||||||
|
yield OS.File.remove(tmpFile);
|
||||||
|
|
||||||
|
var storageDir = Zotero.Attachments.getStorageDirectory(item).path;
|
||||||
|
|
||||||
|
// Make sure previous files don't exist
|
||||||
|
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, oldFilename)));
|
||||||
|
|
||||||
|
// Make sure main file matches attachment hash and mtime
|
||||||
|
yield assert.eventually.equal(
|
||||||
|
item.attachmentHash, Zotero.Utilities.Internal.md5(fileContents)
|
||||||
|
);
|
||||||
|
yield assert.eventually.equal(item.attachmentModificationTime, mtime);
|
||||||
|
});
|
||||||
|
|
||||||
// Subdirectory
|
|
||||||
var subDir = OS.Path.join(zipDir, subDirName);
|
|
||||||
yield OS.File.makeDir(subDir);
|
|
||||||
yield Zotero.File.putContentsAsync(OS.Path.join(subDir, file3Name), file3Contents);
|
|
||||||
|
|
||||||
yield Zotero.File.zipDirectory(zipDir, zipFile);
|
it("should download and rename a single file with invalid filename into the attachment directory", function* () {
|
||||||
yield removeDir(zipDir);
|
var libraryID = Zotero.Libraries.userLibraryID;
|
||||||
|
var parentItem = yield createDataObject('item');
|
||||||
|
var key = Zotero.DataObjectUtilities.generateKey();
|
||||||
|
var fileContents = Zotero.Utilities.randomString();
|
||||||
|
|
||||||
|
var oldFilename = "Old File";
|
||||||
|
var newFilename = " ab — c \\:.txt.";
|
||||||
|
var filteredFilename = " ab — c .txt.";
|
||||||
|
var tmpDir = Zotero.getTempDirectory().path;
|
||||||
|
var tmpFile = OS.Path.join(tmpDir, key + '.tmp');
|
||||||
|
yield Zotero.File.putContentsAsync(tmpFile, fileContents);
|
||||||
|
|
||||||
|
// Create an existing attachment directory to replace
|
||||||
|
var dir = Zotero.Attachments.getStorageDirectoryByLibraryAndKey(libraryID, key).path;
|
||||||
|
yield OS.File.makeDir(
|
||||||
|
dir,
|
||||||
|
{
|
||||||
|
unixMode: 0o755
|
||||||
|
}
|
||||||
|
);
|
||||||
|
yield Zotero.File.putContentsAsync(OS.Path.join(dir, oldFilename), '');
|
||||||
|
|
||||||
|
var md5 = Zotero.Utilities.Internal.md5(Zotero.File.pathToFile(tmpFile));
|
||||||
|
var mtime = 1445667239000;
|
||||||
|
|
||||||
|
var json = {
|
||||||
|
key,
|
||||||
|
version: 10,
|
||||||
|
itemType: 'attachment',
|
||||||
|
linkMode: 'imported_url',
|
||||||
|
url: 'https://example.com/foo.txt',
|
||||||
|
filename: newFilename,
|
||||||
|
contentType: 'text/plain',
|
||||||
|
charset: 'utf-8',
|
||||||
|
md5,
|
||||||
|
mtime
|
||||||
|
};
|
||||||
|
yield Zotero.Sync.Data.Local.processObjectsFromJSON('item', libraryID, [json]);
|
||||||
|
|
||||||
|
var item = yield Zotero.Items.getByLibraryAndKeyAsync(libraryID, key);
|
||||||
|
yield Zotero.Sync.Storage.Local.processDownload({
|
||||||
|
item,
|
||||||
|
md5,
|
||||||
|
mtime
|
||||||
|
});
|
||||||
|
yield OS.File.remove(tmpFile);
|
||||||
|
|
||||||
|
var storageDir = Zotero.Attachments.getStorageDirectory(item).path;
|
||||||
|
|
||||||
|
// Make sure previous file doesn't exist
|
||||||
|
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, oldFilename)));
|
||||||
|
// And new one does
|
||||||
|
assert.isTrue(yield OS.File.exists(OS.Path.join(storageDir, filteredFilename)));
|
||||||
|
|
||||||
|
// Make sure main file matches attachment hash and mtime
|
||||||
|
yield assert.eventually.equal(
|
||||||
|
item.attachmentHash, Zotero.Utilities.Internal.md5(fileContents)
|
||||||
|
);
|
||||||
|
yield assert.eventually.equal(item.attachmentModificationTime, mtime);
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
it("should download and rename a single file with invalid filename using Windows parsing rules into the attachment directory", function* () {
|
||||||
|
var libraryID = Zotero.Libraries.userLibraryID;
|
||||||
|
var parentItem = yield createDataObject('item');
|
||||||
|
var key = Zotero.DataObjectUtilities.generateKey();
|
||||||
|
var fileContents = Zotero.Utilities.randomString();
|
||||||
|
|
||||||
|
var oldFilename = "Old File";
|
||||||
|
var newFilename = "a:b.txt";
|
||||||
|
var filteredFilename = "ab.txt";
|
||||||
|
var tmpDir = Zotero.getTempDirectory().path;
|
||||||
|
var tmpFile = OS.Path.join(tmpDir, key + '.tmp');
|
||||||
|
yield Zotero.File.putContentsAsync(tmpFile, fileContents);
|
||||||
|
|
||||||
|
// Create an existing attachment directory to replace
|
||||||
|
var dir = Zotero.Attachments.getStorageDirectoryByLibraryAndKey(libraryID, key).path;
|
||||||
|
yield OS.File.makeDir(
|
||||||
|
dir,
|
||||||
|
{
|
||||||
|
unixMode: 0o755
|
||||||
|
}
|
||||||
|
);
|
||||||
|
yield Zotero.File.putContentsAsync(OS.Path.join(dir, oldFilename), '');
|
||||||
|
|
||||||
|
var md5 = Zotero.Utilities.Internal.md5(Zotero.File.pathToFile(tmpFile));
|
||||||
|
var mtime = 1445667239000;
|
||||||
|
|
||||||
|
var json = {
|
||||||
|
key,
|
||||||
|
version: 10,
|
||||||
|
itemType: 'attachment',
|
||||||
|
linkMode: 'imported_url',
|
||||||
|
url: 'https://example.com/foo.txt',
|
||||||
|
filename: 'a:b.txt',
|
||||||
|
contentType: 'text/plain',
|
||||||
|
charset: 'utf-8',
|
||||||
|
md5,
|
||||||
|
mtime
|
||||||
|
};
|
||||||
|
yield Zotero.Sync.Data.Local.processObjectsFromJSON('item', libraryID, [json]);
|
||||||
|
|
||||||
|
var item = yield Zotero.Items.getByLibraryAndKeyAsync(libraryID, key);
|
||||||
|
|
||||||
|
// Stub functions to simulate OS.Path.basename() behavior on Windows
|
||||||
|
var basenameOrigFunc = OS.Path.basename.bind(OS.Path);
|
||||||
|
var basenameStub = sinon.stub(OS.Path, "basename", (path) => {
|
||||||
|
// Split on colon
|
||||||
|
if (path.endsWith("a:b.txt")) {
|
||||||
|
return "b.txt";
|
||||||
|
}
|
||||||
|
return basenameOrigFunc(path);
|
||||||
|
});
|
||||||
|
var pathToFileOrigFunc = Zotero.File.pathToFile.bind(Zotero.File);
|
||||||
|
var pathToFileStub = sinon.stub(Zotero.File, "pathToFile", (path) => {
|
||||||
|
if (path.includes(":")) {
|
||||||
|
throw new Error("Path contains colon");
|
||||||
|
}
|
||||||
|
return pathToFileOrigFunc(path);
|
||||||
|
});
|
||||||
|
|
||||||
|
yield Zotero.Sync.Storage.Local.processDownload({
|
||||||
|
item,
|
||||||
|
md5,
|
||||||
|
mtime
|
||||||
|
});
|
||||||
|
yield OS.File.remove(tmpFile);
|
||||||
|
|
||||||
|
var storageDir = Zotero.Attachments.getStorageDirectory(item).path;
|
||||||
|
|
||||||
|
basenameStub.restore();
|
||||||
|
pathToFileStub.restore();
|
||||||
|
|
||||||
|
// Make sure path is set correctly
|
||||||
|
assert.equal(item.getFilePath(), OS.Path.join(storageDir, filteredFilename));
|
||||||
|
// Make sure previous files don't exist
|
||||||
|
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, oldFilename)));
|
||||||
|
// And new one does
|
||||||
|
assert.isTrue(yield OS.File.exists(OS.Path.join(storageDir, filteredFilename)));
|
||||||
|
|
||||||
|
// Make sure main file matches attachment hash and mtime
|
||||||
|
yield assert.eventually.equal(
|
||||||
|
item.attachmentHash, Zotero.Utilities.Internal.md5(fileContents)
|
||||||
|
);
|
||||||
|
yield assert.eventually.equal(item.attachmentModificationTime, mtime);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should download and extract a ZIP file into the attachment directory", function* () {
|
describe("ZIP", function () {
|
||||||
var libraryID = Zotero.Libraries.userLibraryID;
|
it("should download and extract a ZIP file into the attachment directory", function* () {
|
||||||
var parentItem = yield createDataObject('item');
|
var file1Name = 'index.html';
|
||||||
var key = Zotero.DataObjectUtilities.generateKey();
|
var file1Contents = '<html><body>Test</body></html>';
|
||||||
|
var file2Name = 'aux1.txt';
|
||||||
var tmpDir = Zotero.getTempDirectory().path;
|
var file2Contents = 'Test 1';
|
||||||
var zipFile = OS.Path.join(tmpDir, key + '.tmp');
|
var subDirName = 'sub';
|
||||||
yield createZIP(zipFile);
|
var file3Name = 'aux2';
|
||||||
|
var file3Contents = 'Test 2';
|
||||||
// Create an existing attachment directory (and subdirectory) to replace
|
|
||||||
var dir = Zotero.Attachments.getStorageDirectoryByLibraryAndKey(libraryID, key).path;
|
var libraryID = Zotero.Libraries.userLibraryID;
|
||||||
yield OS.File.makeDir(
|
var parentItem = yield createDataObject('item');
|
||||||
OS.Path.join(dir, 'subdir'),
|
var key = Zotero.DataObjectUtilities.generateKey();
|
||||||
{
|
|
||||||
from: Zotero.DataDirectory.dir,
|
var tmpDir = Zotero.getTempDirectory().path;
|
||||||
unixMode: 0o755
|
var zipFile = OS.Path.join(tmpDir, key + '.tmp');
|
||||||
}
|
|
||||||
);
|
// Create ZIP file with subdirectory
|
||||||
yield Zotero.File.putContentsAsync(OS.Path.join(dir, 'A'), '');
|
var tmpDir = Zotero.getTempDirectory().path;
|
||||||
yield Zotero.File.putContentsAsync(OS.Path.join(dir, 'subdir', 'B'), '');
|
var zipDir = yield getTempDirectory();
|
||||||
|
yield Zotero.File.putContentsAsync(OS.Path.join(zipDir, file1Name), file1Contents);
|
||||||
var md5 = Zotero.Utilities.Internal.md5(Zotero.File.pathToFile(zipFile));
|
yield Zotero.File.putContentsAsync(OS.Path.join(zipDir, file2Name), file2Contents);
|
||||||
var mtime = 1445667239000;
|
var subDir = OS.Path.join(zipDir, subDirName);
|
||||||
|
yield OS.File.makeDir(subDir);
|
||||||
var json = {
|
yield Zotero.File.putContentsAsync(OS.Path.join(subDir, file3Name), file3Contents);
|
||||||
key,
|
yield Zotero.File.zipDirectory(zipDir, zipFile);
|
||||||
version: 10,
|
yield removeDir(zipDir);
|
||||||
itemType: 'attachment',
|
|
||||||
linkMode: 'imported_url',
|
// Create an existing attachment directory (and subdirectory) to replace
|
||||||
url: 'https://example.com',
|
var dir = Zotero.Attachments.getStorageDirectoryByLibraryAndKey(libraryID, key).path;
|
||||||
filename: file1Name,
|
yield OS.File.makeDir(
|
||||||
contentType: 'text/html',
|
OS.Path.join(dir, 'subdir'),
|
||||||
charset: 'utf-8',
|
{
|
||||||
md5,
|
from: Zotero.DataDirectory.dir,
|
||||||
mtime
|
unixMode: 0o755
|
||||||
};
|
}
|
||||||
yield Zotero.Sync.Data.Local.processObjectsFromJSON('item', libraryID, [json]);
|
);
|
||||||
|
yield Zotero.File.putContentsAsync(OS.Path.join(dir, 'A'), '');
|
||||||
var item = yield Zotero.Items.getByLibraryAndKeyAsync(libraryID, key);
|
yield Zotero.File.putContentsAsync(OS.Path.join(dir, 'subdir', 'B'), '');
|
||||||
yield Zotero.Sync.Storage.Local.processDownload({
|
|
||||||
item,
|
var md5 = Zotero.Utilities.Internal.md5(Zotero.File.pathToFile(zipFile));
|
||||||
md5,
|
var mtime = 1445667239000;
|
||||||
mtime,
|
|
||||||
compressed: true
|
var json = {
|
||||||
|
key,
|
||||||
|
version: 10,
|
||||||
|
itemType: 'attachment',
|
||||||
|
linkMode: 'imported_url',
|
||||||
|
url: 'https://example.com',
|
||||||
|
filename: file1Name,
|
||||||
|
contentType: 'text/html',
|
||||||
|
charset: 'utf-8',
|
||||||
|
md5,
|
||||||
|
mtime
|
||||||
|
};
|
||||||
|
yield Zotero.Sync.Data.Local.processObjectsFromJSON('item', libraryID, [json]);
|
||||||
|
|
||||||
|
var item = yield Zotero.Items.getByLibraryAndKeyAsync(libraryID, key);
|
||||||
|
yield Zotero.Sync.Storage.Local.processDownload({
|
||||||
|
item,
|
||||||
|
md5,
|
||||||
|
mtime,
|
||||||
|
compressed: true
|
||||||
|
});
|
||||||
|
yield OS.File.remove(zipFile);
|
||||||
|
|
||||||
|
var storageDir = Zotero.Attachments.getStorageDirectory(item).path;
|
||||||
|
|
||||||
|
// Make sure previous files don't exist
|
||||||
|
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, 'A')));
|
||||||
|
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, 'subdir')));
|
||||||
|
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, 'subdir', 'B')));
|
||||||
|
|
||||||
|
// Make sure main file matches attachment hash and mtime
|
||||||
|
yield assert.eventually.equal(
|
||||||
|
item.attachmentHash, Zotero.Utilities.Internal.md5(file1Contents)
|
||||||
|
);
|
||||||
|
yield assert.eventually.equal(item.attachmentModificationTime, mtime);
|
||||||
|
|
||||||
|
// Check second file
|
||||||
|
yield assert.eventually.equal(
|
||||||
|
Zotero.File.getContentsAsync(OS.Path.join(storageDir, file2Name)),
|
||||||
|
file2Contents
|
||||||
|
);
|
||||||
|
|
||||||
|
// Check subdirectory and file
|
||||||
|
assert.isTrue((yield OS.File.stat(OS.Path.join(storageDir, subDirName))).isDir);
|
||||||
|
yield assert.eventually.equal(
|
||||||
|
Zotero.File.getContentsAsync(OS.Path.join(storageDir, subDirName, file3Name)),
|
||||||
|
file3Contents
|
||||||
|
);
|
||||||
});
|
});
|
||||||
yield OS.File.remove(zipFile);
|
|
||||||
|
|
||||||
var storageDir = Zotero.Attachments.getStorageDirectory(item).path;
|
|
||||||
|
|
||||||
// Make sure previous files don't exist
|
it("should download and rename a ZIP file with invalid filename using Windows parsing rules into the attachment directory", function* () {
|
||||||
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, 'A')));
|
var libraryID = Zotero.Libraries.userLibraryID;
|
||||||
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, 'subdir')));
|
var parentItem = yield createDataObject('item');
|
||||||
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, 'subdir', 'B')));
|
var key = Zotero.DataObjectUtilities.generateKey();
|
||||||
|
|
||||||
// Make sure main file matches attachment hash and mtime
|
var oldFilename = "Old File";
|
||||||
yield assert.eventually.equal(
|
var oldAuxFilename = "a.gif";
|
||||||
item.attachmentHash, Zotero.Utilities.Internal.md5(file1Contents)
|
var newFilename = "a:b.html";
|
||||||
);
|
var fileContents = Zotero.Utilities.randomString();
|
||||||
yield assert.eventually.equal(item.attachmentModificationTime, mtime);
|
var newAuxFilename = "b.gif";
|
||||||
|
var filteredFilename = "ab.html";
|
||||||
// Check second file
|
var tmpDir = Zotero.getTempDirectory().path;
|
||||||
yield assert.eventually.equal(
|
var zipFile = OS.Path.join(tmpDir, key + '.tmp');
|
||||||
Zotero.File.getContentsAsync(OS.Path.join(storageDir, file2Name)),
|
|
||||||
file2Contents
|
// Create ZIP file
|
||||||
);
|
var tmpDir = Zotero.getTempDirectory().path;
|
||||||
|
var zipDir = yield getTempDirectory();
|
||||||
// Check subdirectory and file
|
yield Zotero.File.putContentsAsync(OS.Path.join(zipDir, newFilename), fileContents);
|
||||||
assert.isTrue((yield OS.File.stat(OS.Path.join(storageDir, subDirName))).isDir);
|
yield Zotero.File.putContentsAsync(OS.Path.join(zipDir, newAuxFilename), '');
|
||||||
yield assert.eventually.equal(
|
yield Zotero.File.zipDirectory(zipDir, zipFile);
|
||||||
Zotero.File.getContentsAsync(OS.Path.join(storageDir, subDirName, file3Name)),
|
yield removeDir(zipDir);
|
||||||
file3Contents
|
|
||||||
);
|
// Create an existing attachment directory to replace
|
||||||
})
|
var dir = Zotero.Attachments.getStorageDirectoryByLibraryAndKey(libraryID, key).path;
|
||||||
|
yield OS.File.makeDir(
|
||||||
|
dir,
|
||||||
|
{
|
||||||
|
unixMode: 0o755
|
||||||
|
}
|
||||||
|
);
|
||||||
|
yield Zotero.File.putContentsAsync(OS.Path.join(dir, oldFilename), '');
|
||||||
|
yield Zotero.File.putContentsAsync(OS.Path.join(dir, oldAuxFilename), '');
|
||||||
|
|
||||||
|
var md5 = Zotero.Utilities.Internal.md5(Zotero.File.pathToFile(zipFile));
|
||||||
|
var mtime = 1445667239000;
|
||||||
|
|
||||||
|
var json = {
|
||||||
|
key,
|
||||||
|
version: 10,
|
||||||
|
itemType: 'attachment',
|
||||||
|
linkMode: 'imported_url',
|
||||||
|
url: 'https://example.com/foo.html',
|
||||||
|
filename: 'a:b.html',
|
||||||
|
contentType: 'text/plain',
|
||||||
|
charset: 'utf-8',
|
||||||
|
md5,
|
||||||
|
mtime
|
||||||
|
};
|
||||||
|
yield Zotero.Sync.Data.Local.processObjectsFromJSON('item', libraryID, [json]);
|
||||||
|
|
||||||
|
var item = yield Zotero.Items.getByLibraryAndKeyAsync(libraryID, key);
|
||||||
|
|
||||||
|
// Stub functions to simulate OS.Path.basename() behavior on Windows
|
||||||
|
var basenameOrigFunc = OS.Path.basename.bind(OS.Path);
|
||||||
|
var basenameStub = sinon.stub(OS.Path, "basename", (path) => {
|
||||||
|
// Split on colon
|
||||||
|
if (path.endsWith("a:b.html")) {
|
||||||
|
return "b.html";
|
||||||
|
}
|
||||||
|
return basenameOrigFunc(path);
|
||||||
|
});
|
||||||
|
var pathToFileOrigFunc = Zotero.File.pathToFile.bind(Zotero.File);
|
||||||
|
var pathToFileStub = sinon.stub(Zotero.File, "pathToFile", (path) => {
|
||||||
|
if (path.includes(":")) {
|
||||||
|
throw new Error("Path contains colon");
|
||||||
|
}
|
||||||
|
return pathToFileOrigFunc(path);
|
||||||
|
});
|
||||||
|
|
||||||
|
yield Zotero.Sync.Storage.Local.processDownload({
|
||||||
|
item,
|
||||||
|
md5,
|
||||||
|
mtime,
|
||||||
|
compressed: true
|
||||||
|
});
|
||||||
|
yield OS.File.remove(zipFile);
|
||||||
|
|
||||||
|
var storageDir = Zotero.Attachments.getStorageDirectory(item).path;
|
||||||
|
|
||||||
|
basenameStub.restore();
|
||||||
|
pathToFileStub.restore();
|
||||||
|
|
||||||
|
// Make sure path is set correctly
|
||||||
|
assert.equal(item.getFilePath(), OS.Path.join(storageDir, filteredFilename));
|
||||||
|
// Make sure previous files don't exist
|
||||||
|
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, oldFilename)));
|
||||||
|
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, oldAuxFilename)));
|
||||||
|
// And new ones do
|
||||||
|
assert.isTrue(yield OS.File.exists(OS.Path.join(storageDir, filteredFilename)));
|
||||||
|
assert.isTrue(yield OS.File.exists(OS.Path.join(storageDir, newAuxFilename)));
|
||||||
|
|
||||||
|
// Make sure main file matches attachment hash and mtime
|
||||||
|
yield assert.eventually.equal(
|
||||||
|
item.attachmentHash, Zotero.Utilities.Internal.md5(fileContents)
|
||||||
|
);
|
||||||
|
yield assert.eventually.equal(item.attachmentModificationTime, mtime);
|
||||||
|
});
|
||||||
|
});
|
||||||
})
|
})
|
||||||
|
|
||||||
describe("#getConflicts()", function () {
|
describe("#getConflicts()", function () {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue