12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- var path = require("path");
- var fs = require("fs");
- var assert = require("assert");
- var promises = require("../../lib/promises");
- var Files = require("../../lib/docx/files").Files;
- var uriToPath = require("../../lib/docx/files").uriToPath;
- var testing = require("../testing");
- var test = require("../test")(module);
- var readFile = promises.promisify(fs.readFile.bind(fs));
- test("Files", {
- "can open files with file URI": function() {
- var filePath = path.resolve(testing.testPath("tiny-picture.png"));
- var files = new Files(null);
- return files.read("file:///" + filePath.replace(/^\//, ""), "base64").then(function(contents) {
- return readFile(filePath, "base64").then(function(expectedContents) {
- assert.deepEqual(contents, expectedContents);
- });
- });
- },
-
- "can open files with relative URI": function() {
- var filePath = path.resolve(testing.testPath("tiny-picture.png"));
- var files = new Files(testing.testPath("."));
- return files.read("tiny-picture.png", "base64").then(function(contents) {
- return readFile(filePath, "base64").then(function(expectedContents) {
- assert.deepEqual(contents, expectedContents);
- });
- });
- },
-
- "given base is not set when opening relative uri then error is raised": function() {
- var files = new Files(null);
- return assertError(files.read("not-a-real-file.png", "base64"), function(err) {
- assert.equal(err.message, "could not find external image 'not-a-real-file.png', path of input document is unknown");
- });
- },
-
- "error if relative uri cannot be opened": function() {
- var files = new Files("/tmp");
- return assertError(files.read("not-a-real-file.png", "base64"), function(err) {
- assertRegex(err.message, /could not open external image: 'not-a-real-file.png' \(document directory: '\/tmp'\)\nENOENT.*\/tmp\/not-a-real-file.png.*/);
- });
- }
- });
- function assertError(promise, func) {
- return promise.then(function() {
- assert(false, "Expected error");
- }, func);
- }
- function assertRegex(actual, expected) {
- assert.ok(expected.test(actual), "Expected regex: " + expected + "\nbut was: " + actual);
- }
- test("uriToPath", {
- "leading slash is retained on non-Windows file URIs": function() {
- assert.equal(uriToPath("file:///a/b/c", "linux"), "/a/b/c");
- assert.equal(uriToPath("file:///a/b/c", "win32"), "/a/b/c");
- },
-
- "URI is unquoted": function() {
- assert.equal(uriToPath("file:///a%20b"), "/a b");
- },
-
- "when host is set to localhost then path can be found": function() {
- assert.equal(uriToPath("file://localhost/a/b/c"), "/a/b/c");
- },
-
- "when host is set but not localhost then path cannot be found": function() {
- assert.throws(function() {
- uriToPath("file://example/a/b/c");
- }, /Could not convert URI to path: file:\/\/example\/a\/b\/c/);
- },
-
- "leading slash is not dropped on Windows file URIs when platform is not Windows": function() {
- assert.equal(uriToPath("file:///c:/a", "linux"), "/c:/a");
- },
-
- "leading slash is dropped on Windows file URIs when platform is Windows": function() {
- assert.equal(uriToPath("file:///c:/a", "win32"), "c:/a");
- assert.equal(uriToPath("file:///C:/a", "win32"), "C:/a");
- },
-
- "relative URI is unquoted": function() {
- assert.equal(uriToPath("a%20b/c"), "a b/c");
- }
- });
|