| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | const assert = require('assert') | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  | const ChildProcess = require('child_process') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  | const { expect } = require('chai') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | const fs = require('fs') | 
					
						
							|  |  |  | const path = require('path') | 
					
						
							| 
									
										
										
										
											2018-10-04 01:36:20 +09:00
										 |  |  | const temp = require('temp').track() | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  | const util = require('util') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  | const { closeWindow } = require('./window-helpers') | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | const nativeImage = require('electron').nativeImage | 
					
						
							|  |  |  | const remote = require('electron').remote | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | const ipcMain = remote.require('electron').ipcMain | 
					
						
							|  |  |  | const BrowserWindow = remote.require('electron').BrowserWindow | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | describe('asar package', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |   const fixtures = path.join(__dirname, 'fixtures') | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |   describe('node api', function () { | 
					
						
							| 
									
										
										
										
											2016-07-25 11:10:36 -07:00
										 |  |  |     it('supports paths specified as a Buffer', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const file = Buffer.from(path.join(fixtures, 'asar', 'a.asar', 'file1')) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |       assert.strictEqual(fs.existsSync(file), true) | 
					
						
							| 
									
										
										
										
											2016-07-25 11:10:36 -07:00
										 |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     describe('fs.readFileSync', function () { | 
					
						
							|  |  |  |       it('does not leak fd', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         let readCalls = 1 | 
					
						
							| 
									
										
										
										
											2016-03-28 16:19:18 -07:00
										 |  |  |         while (readCalls <= 10000) { | 
					
						
							| 
									
										
										
										
											2016-04-28 11:31:00 -07:00
										 |  |  |           fs.readFileSync(path.join(process.resourcesPath, 'electron.asar', 'renderer', 'api', 'ipc-renderer.js')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           readCalls++ | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads a normal file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const file1 = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(fs.readFileSync(file1).toString().trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const file2 = path.join(fixtures, 'asar', 'a.asar', 'file2') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(fs.readFileSync(file2).toString().trim(), 'file2') | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const file3 = path.join(fixtures, 'asar', 'a.asar', 'file3') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(fs.readFileSync(file3).toString().trim(), 'file3') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads from a empty file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const file = path.join(fixtures, 'asar', 'empty.asar', 'file1') | 
					
						
							|  |  |  |         const buffer = fs.readFileSync(file) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(buffer.length, 0) | 
					
						
							|  |  |  |         assert.strictEqual(buffer.toString(), '') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads a linked file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'link1') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(fs.readFileSync(p).toString().trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads a file from linked directory', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p1 = path.join(fixtures, 'asar', 'a.asar', 'link2', 'file1') | 
					
						
							|  |  |  |         assert.strictEqual(fs.readFileSync(p1).toString().trim(), 'file1') | 
					
						
							|  |  |  |         const p2 = path.join(fixtures, 'asar', 'a.asar', 'link2', 'link2', 'file1') | 
					
						
							|  |  |  |         assert.strictEqual(fs.readFileSync(p2).toString().trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws ENOENT error when can not find file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							|  |  |  |         const throws = function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.readFileSync(p) | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         assert.throws(throws, /ENOENT/) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('passes ENOENT error to callback when can not find file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							|  |  |  |         let async = false | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readFile(p, function (e) { | 
					
						
							|  |  |  |           assert(async) | 
					
						
							|  |  |  |           assert(/ENOENT/.test(e)) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         async = true | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads a normal file with unpacked files', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'unpack.asar', 'a.txt') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(fs.readFileSync(p).toString().trim(), 'a') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.readFile', function () { | 
					
						
							|  |  |  |       it('reads a normal file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readFile(p, function (err, content) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(String(content).trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads from a empty file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'empty.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readFile(p, function (err, content) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(String(content), '') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-31 09:32:45 +08:00
										 |  |  |       it('reads from a empty file with encoding', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'empty.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2017-07-31 09:32:45 +08:00
										 |  |  |         fs.readFile(p, 'utf8', function (err, content) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(content, '') | 
					
						
							| 
									
										
										
										
											2017-07-31 09:32:45 +08:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       it('reads a linked file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'link1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readFile(p, function (err, content) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(String(content).trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads a file from linked directory', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'link2', 'link2', 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readFile(p, function (err, content) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(String(content).trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws ENOENT error when can not find file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readFile(p, function (err) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err.code, 'ENOENT') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-04 01:36:20 +09:00
										 |  |  |     describe('fs.copyFile', function () { | 
					
						
							|  |  |  |       it('copies a normal file', function (done) { | 
					
						
							|  |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							|  |  |  |         const dest = temp.path() | 
					
						
							|  |  |  |         fs.copyFile(p, dest, function (err) { | 
					
						
							|  |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert(fs.readFileSync(p).equals(fs.readFileSync(dest))) | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('copies a unpacked file', function (done) { | 
					
						
							|  |  |  |         const p = path.join(fixtures, 'asar', 'unpack.asar', 'a.txt') | 
					
						
							|  |  |  |         const dest = temp.path() | 
					
						
							|  |  |  |         fs.copyFile(p, dest, function (err) { | 
					
						
							|  |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert(fs.readFileSync(p).equals(fs.readFileSync(dest))) | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.copyFileSync', function () { | 
					
						
							|  |  |  |       it('copies a normal file', function () { | 
					
						
							|  |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							|  |  |  |         const dest = temp.path() | 
					
						
							|  |  |  |         fs.copyFileSync(p, dest) | 
					
						
							|  |  |  |         assert(fs.readFileSync(p).equals(fs.readFileSync(dest))) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('copies a unpacked file', function () { | 
					
						
							|  |  |  |         const p = path.join(fixtures, 'asar', 'unpack.asar', 'a.txt') | 
					
						
							|  |  |  |         const dest = temp.path() | 
					
						
							|  |  |  |         fs.copyFileSync(p, dest) | 
					
						
							|  |  |  |         assert(fs.readFileSync(p).equals(fs.readFileSync(dest))) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     describe('fs.lstatSync', function () { | 
					
						
							|  |  |  |       it('handles path with trailing slash correctly', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'link2', 'link2', 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.lstatSync(p) | 
					
						
							|  |  |  |         fs.lstatSync(p + '/') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns information of root', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar') | 
					
						
							|  |  |  |         const stats = fs.lstatSync(p) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(stats.isFile(), false) | 
					
						
							|  |  |  |         assert.strictEqual(stats.isDirectory(), true) | 
					
						
							|  |  |  |         assert.strictEqual(stats.isSymbolicLink(), false) | 
					
						
							|  |  |  |         assert.strictEqual(stats.size, 0) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-23 15:14:05 -07:00
										 |  |  |       it('returns information of root with stats as bigint', function () { | 
					
						
							|  |  |  |         const p = path.join(fixtures, 'asar', 'a.asar') | 
					
						
							|  |  |  |         const stats = fs.lstatSync(p, { bigint: false }) | 
					
						
							|  |  |  |         assert.strictEqual(stats.isFile(), false) | 
					
						
							|  |  |  |         assert.strictEqual(stats.isDirectory(), true) | 
					
						
							|  |  |  |         assert.strictEqual(stats.isSymbolicLink(), false) | 
					
						
							|  |  |  |         assert.strictEqual(stats.size, 0) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       it('returns information of a normal file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const ref2 = ['file1', 'file2', 'file3', path.join('dir1', 'file1'), path.join('link2', 'file1')] | 
					
						
							|  |  |  |         for (let j = 0, len = ref2.length; j < len; j++) { | 
					
						
							|  |  |  |           const file = ref2[j] | 
					
						
							|  |  |  |           const p = path.join(fixtures, 'asar', 'a.asar', file) | 
					
						
							|  |  |  |           const stats = fs.lstatSync(p) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(stats.isFile(), true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isDirectory(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isSymbolicLink(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 6) | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       it('returns information of a normal directory', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const ref2 = ['dir1', 'dir2', 'dir3'] | 
					
						
							|  |  |  |         for (let j = 0, len = ref2.length; j < len; j++) { | 
					
						
							|  |  |  |           const file = ref2[j] | 
					
						
							|  |  |  |           const p = path.join(fixtures, 'asar', 'a.asar', file) | 
					
						
							|  |  |  |           const stats = fs.lstatSync(p) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(stats.isFile(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isDirectory(), true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isSymbolicLink(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 0) | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       it('returns information of a linked file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const ref2 = ['link1', path.join('dir1', 'link1'), path.join('link2', 'link2')] | 
					
						
							|  |  |  |         for (let j = 0, len = ref2.length; j < len; j++) { | 
					
						
							|  |  |  |           const file = ref2[j] | 
					
						
							|  |  |  |           const p = path.join(fixtures, 'asar', 'a.asar', file) | 
					
						
							|  |  |  |           const stats = fs.lstatSync(p) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(stats.isFile(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isDirectory(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isSymbolicLink(), true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 0) | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       it('returns information of a linked directory', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const ref2 = ['link2', path.join('dir1', 'link2'), path.join('link2', 'link2')] | 
					
						
							|  |  |  |         for (let j = 0, len = ref2.length; j < len; j++) { | 
					
						
							|  |  |  |           const file = ref2[j] | 
					
						
							|  |  |  |           const p = path.join(fixtures, 'asar', 'a.asar', file) | 
					
						
							|  |  |  |           const stats = fs.lstatSync(p) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(stats.isFile(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isDirectory(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isSymbolicLink(), true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 0) | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       it('throws ENOENT error when can not find file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const ref2 = ['file4', 'file5', path.join('dir1', 'file4')] | 
					
						
							|  |  |  |         for (let j = 0, len = ref2.length; j < len; j++) { | 
					
						
							|  |  |  |           const file = ref2[j] | 
					
						
							|  |  |  |           const p = path.join(fixtures, 'asar', 'a.asar', file) | 
					
						
							|  |  |  |           const throws = function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |             fs.lstatSync(p) | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |           assert.throws(throws, /ENOENT/) | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.lstat', function () { | 
					
						
							|  |  |  |       it('handles path with trailing slash correctly', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'link2', 'link2', 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.lstat(p + '/', done) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns information of root', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.lstat(p, function (err, stats) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isFile(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isDirectory(), true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isSymbolicLink(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 0) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-23 15:14:05 -07:00
										 |  |  |       it('returns information of root with stats as bigint', function (done) { | 
					
						
							|  |  |  |         const p = path.join(fixtures, 'asar', 'a.asar') | 
					
						
							|  |  |  |         fs.lstat(p, { bigint: false }, function (err, stats) { | 
					
						
							|  |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isFile(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isDirectory(), true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isSymbolicLink(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 0) | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       it('returns information of a normal file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'link2', 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.lstat(p, function (err, stats) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isFile(), true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isDirectory(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isSymbolicLink(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 6) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns information of a normal directory', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'dir1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.lstat(p, function (err, stats) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isFile(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isDirectory(), true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isSymbolicLink(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 0) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns information of a linked file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'link2', 'link1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.lstat(p, function (err, stats) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isFile(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isDirectory(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isSymbolicLink(), true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 0) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns information of a linked directory', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'link2', 'link2') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.lstat(p, function (err, stats) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isFile(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isDirectory(), false) | 
					
						
							|  |  |  |           assert.strictEqual(stats.isSymbolicLink(), true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 0) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws ENOENT error when can not find file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file4') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.lstat(p, function (err) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err.code, 'ENOENT') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |     describe('fs.realpathSync', () => { | 
					
						
							|  |  |  |       it('returns real path root', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = 'a.asar' | 
					
						
							|  |  |  |         const r = fs.realpathSync(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('returns real path of a normal file', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'file1') | 
					
						
							|  |  |  |         const r = fs.realpathSync(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('returns real path of a normal directory', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'dir1') | 
					
						
							|  |  |  |         const r = fs.realpathSync(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('returns real path of a linked file', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'link2', 'link1') | 
					
						
							|  |  |  |         const r = fs.realpathSync(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, 'a.asar', 'file1')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('returns real path of a linked directory', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'link2', 'link2') | 
					
						
							|  |  |  |         const r = fs.realpathSync(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, 'a.asar', 'dir1')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('returns real path of an unpacked file', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('unpack.asar', 'a.txt') | 
					
						
							|  |  |  |         const r = fs.realpathSync(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('throws ENOENT error when can not find file', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'not-exist') | 
					
						
							|  |  |  |         const throws = () => fs.realpathSync(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         assert.throws(throws, /ENOENT/) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |     describe('fs.realpathSync.native', () => { | 
					
						
							|  |  |  |       it('returns real path root', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = 'a.asar' | 
					
						
							|  |  |  |         const r = fs.realpathSync.native(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns real path of a normal file', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'file1') | 
					
						
							|  |  |  |         const r = fs.realpathSync.native(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns real path of a normal directory', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'dir1') | 
					
						
							|  |  |  |         const r = fs.realpathSync.native(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns real path of a linked file', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'link2', 'link1') | 
					
						
							|  |  |  |         const r = fs.realpathSync.native(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, 'a.asar', 'file1')) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns real path of a linked directory', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'link2', 'link2') | 
					
						
							|  |  |  |         const r = fs.realpathSync.native(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, 'a.asar', 'dir1')) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns real path of an unpacked file', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('unpack.asar', 'a.txt') | 
					
						
							|  |  |  |         const r = fs.realpathSync.native(path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws ENOENT error when can not find file', () => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'not-exist') | 
					
						
							|  |  |  |         const throws = () => fs.realpathSync.native(path.join(parent, p)) | 
					
						
							|  |  |  |         assert.throws(throws, /ENOENT/) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.realpath', () => { | 
					
						
							|  |  |  |       it('returns real path root', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = 'a.asar' | 
					
						
							|  |  |  |         fs.realpath(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('returns real path of a normal file', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'file1') | 
					
						
							|  |  |  |         fs.realpath(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('returns real path of a normal directory', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'dir1') | 
					
						
							|  |  |  |         fs.realpath(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('returns real path of a linked file', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'link2', 'link1') | 
					
						
							|  |  |  |         fs.realpath(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, 'a.asar', 'file1')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('returns real path of a linked directory', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'link2', 'link2') | 
					
						
							|  |  |  |         fs.realpath(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, 'a.asar', 'dir1')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('returns real path of an unpacked file', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('unpack.asar', 'a.txt') | 
					
						
							|  |  |  |         fs.realpath(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |       it('throws ENOENT error when can not find file', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'not-exist') | 
					
						
							|  |  |  |         fs.realpath(path.join(parent, p), err => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err.code, 'ENOENT') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.realpath.native', () => { | 
					
						
							|  |  |  |       it('returns real path root', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = 'a.asar' | 
					
						
							|  |  |  |         fs.realpath.native(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns real path of a normal file', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'file1') | 
					
						
							|  |  |  |         fs.realpath.native(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns real path of a normal directory', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'dir1') | 
					
						
							|  |  |  |         fs.realpath.native(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns real path of a linked file', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'link2', 'link1') | 
					
						
							|  |  |  |         fs.realpath.native(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, 'a.asar', 'file1')) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns real path of a linked directory', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'link2', 'link2') | 
					
						
							|  |  |  |         fs.realpath.native(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, 'a.asar', 'dir1')) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('returns real path of an unpacked file', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('unpack.asar', 'a.txt') | 
					
						
							|  |  |  |         fs.realpath.native(path.join(parent, p), (err, r) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.strictEqual(r, path.join(parent, p)) | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws ENOENT error when can not find file', done => { | 
					
						
							|  |  |  |         const parent = fs.realpathSync.native(path.join(fixtures, 'asar')) | 
					
						
							|  |  |  |         const p = path.join('a.asar', 'not-exist') | 
					
						
							|  |  |  |         fs.realpath.native(path.join(parent, p), err => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err.code, 'ENOENT') | 
					
						
							| 
									
										
										
										
											2018-08-12 00:10:55 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     describe('fs.readdirSync', function () { | 
					
						
							|  |  |  |       it('reads dirs from root', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar') | 
					
						
							|  |  |  |         const dirs = fs.readdirSync(p) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.deepStrictEqual(dirs, ['dir1', 'dir2', 'dir3', 'file1', 'file2', 'file3', 'link1', 'link2', 'ping.js']) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads dirs from a normal dir', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'dir1') | 
					
						
							|  |  |  |         const dirs = fs.readdirSync(p) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.deepStrictEqual(dirs, ['file1', 'file2', 'file3', 'link1', 'link2']) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads dirs from a linked dir', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'link2', 'link2') | 
					
						
							|  |  |  |         const dirs = fs.readdirSync(p) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.deepStrictEqual(dirs, ['file1', 'file2', 'file3', 'link1', 'link2']) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws ENOENT error when can not find file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							|  |  |  |         const throws = function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.readdirSync(p) | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         assert.throws(throws, /ENOENT/) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.readdir', function () { | 
					
						
							|  |  |  |       it('reads dirs from root', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readdir(p, function (err, dirs) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.deepStrictEqual(dirs, ['dir1', 'dir2', 'dir3', 'file1', 'file2', 'file3', 'link1', 'link2', 'ping.js']) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads dirs from a normal dir', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'dir1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readdir(p, function (err, dirs) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.deepStrictEqual(dirs, ['file1', 'file2', 'file3', 'link1', 'link2']) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |       it('reads dirs from a linked dir', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'link2', 'link2') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readdir(p, function (err, dirs) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							|  |  |  |           assert.deepStrictEqual(dirs, ['file1', 'file2', 'file3', 'link1', 'link2']) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws ENOENT error when can not find file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readdir(p, function (err) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err.code, 'ENOENT') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.openSync', function () { | 
					
						
							|  |  |  |       it('opens a normal/linked/under-linked-directory file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const ref2 = ['file1', 'link1', path.join('link2', 'file1')] | 
					
						
							|  |  |  |         for (let j = 0, len = ref2.length; j < len; j++) { | 
					
						
							|  |  |  |           const file = ref2[j] | 
					
						
							|  |  |  |           const p = path.join(fixtures, 'asar', 'a.asar', file) | 
					
						
							|  |  |  |           const fd = fs.openSync(p, 'r') | 
					
						
							|  |  |  |           const buffer = Buffer.alloc(6) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.readSync(fd, buffer, 0, 6, 0) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(String(buffer).trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.closeSync(fd) | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws ENOENT error when can not find file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							|  |  |  |         const throws = function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.openSync(p) | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         assert.throws(throws, /ENOENT/) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.open', function () { | 
					
						
							|  |  |  |       it('opens a normal file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.open(p, 'r', function (err, fd) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err, null) | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |           const buffer = Buffer.alloc(6) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.read(fd, buffer, 0, 6, 0, function (err) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |             assert.strictEqual(err, null) | 
					
						
							|  |  |  |             assert.strictEqual(String(buffer).trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |             fs.close(fd, done) | 
					
						
							|  |  |  |           }) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws ENOENT error when can not find file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.open(p, 'r', function (err) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err.code, 'ENOENT') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.mkdir', function () { | 
					
						
							|  |  |  |       it('throws error when calling inside asar archive', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.mkdir(p, function (err) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err.code, 'ENOTDIR') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.mkdirSync', function () { | 
					
						
							|  |  |  |       it('throws error when calling inside asar archive', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2016-03-28 16:19:18 -07:00
										 |  |  |         assert.throws(function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.mkdirSync(p) | 
					
						
							| 
									
										
										
										
											2016-03-28 16:19:18 -07:00
										 |  |  |         }, new RegExp('ENOTDIR')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |     describe('fs.exists', function () { | 
					
						
							|  |  |  |       it('handles an existing file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |         // eslint-disable-next-line
 | 
					
						
							|  |  |  |         fs.exists(p, function (exists) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(exists, true) | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('handles a non-existent file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |         // eslint-disable-next-line
 | 
					
						
							|  |  |  |         fs.exists(p, function (exists) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(exists, false) | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('promisified version handles an existing file', (done) => { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |         // eslint-disable-next-line
 | 
					
						
							|  |  |  |         util.promisify(fs.exists)(p).then(exists => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(exists, true) | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('promisified version handles a non-existent file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |         // eslint-disable-next-line
 | 
					
						
							|  |  |  |         util.promisify(fs.exists)(p).then(exists => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(exists, false) | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('fs.existsSync', function () { | 
					
						
							|  |  |  |       it('handles an existing file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |         assert.doesNotThrow(function () { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(fs.existsSync(p), true) | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('handles a non-existent file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |         assert.doesNotThrow(function () { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(fs.existsSync(p), false) | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-25 10:49:20 -07:00
										 |  |  |     describe('fs.access', function () { | 
					
						
							| 
									
										
										
										
											2016-07-25 11:17:40 -07:00
										 |  |  |       it('accesses a normal file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2016-07-25 11:17:40 -07:00
										 |  |  |         fs.access(p, function (err) { | 
					
						
							|  |  |  |           assert(err == null) | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-25 10:49:20 -07:00
										 |  |  |       it('throws an error when called with write mode', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2016-07-25 10:49:20 -07:00
										 |  |  |         fs.access(p, fs.constants.R_OK | fs.constants.W_OK, function (err) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err.code, 'EACCES') | 
					
						
							| 
									
										
										
										
											2016-07-25 10:49:20 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws an error when called on non-existent file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2016-07-25 10:49:20 -07:00
										 |  |  |         fs.access(p, function (err) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err.code, 'ENOENT') | 
					
						
							| 
									
										
										
										
											2016-07-25 10:49:20 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('allows write mode for unpacked files', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'unpack.asar', 'a.txt') | 
					
						
							| 
									
										
										
										
											2016-07-25 10:49:20 -07:00
										 |  |  |         fs.access(p, fs.constants.R_OK | fs.constants.W_OK, function (err) { | 
					
						
							|  |  |  |           assert(err == null) | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-25 11:05:18 -07:00
										 |  |  |     describe('fs.accessSync', function () { | 
					
						
							| 
									
										
										
										
											2016-07-25 11:17:40 -07:00
										 |  |  |       it('accesses a normal file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2016-07-25 11:17:40 -07:00
										 |  |  |         assert.doesNotThrow(function () { | 
					
						
							|  |  |  |           fs.accessSync(p) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-25 11:05:18 -07:00
										 |  |  |       it('throws an error when called with write mode', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2016-07-25 11:05:18 -07:00
										 |  |  |         assert.throws(function () { | 
					
						
							|  |  |  |           fs.accessSync(p, fs.constants.R_OK | fs.constants.W_OK) | 
					
						
							|  |  |  |         }, /EACCES/) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('throws an error when called on non-existent file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2016-07-25 11:05:18 -07:00
										 |  |  |         assert.throws(function () { | 
					
						
							|  |  |  |           fs.accessSync(p) | 
					
						
							|  |  |  |         }, /ENOENT/) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('allows write mode for unpacked files', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'unpack.asar', 'a.txt') | 
					
						
							| 
									
										
										
										
											2016-07-25 11:05:18 -07:00
										 |  |  |         assert.doesNotThrow(function () { | 
					
						
							|  |  |  |           fs.accessSync(p, fs.constants.R_OK | fs.constants.W_OK) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     describe('child_process.fork', function () { | 
					
						
							|  |  |  |       it('opens a normal js file', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const child = ChildProcess.fork(path.join(fixtures, 'asar', 'a.asar', 'ping.js')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         child.on('message', function (msg) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(msg, 'message') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.send('message') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('supports asar in the forked js', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const file = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							|  |  |  |         const child = ChildProcess.fork(path.join(fixtures, 'module', 'asar.js')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         child.on('message', function (content) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(content, fs.readFileSync(file).toString()) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.send(file) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-19 11:08:08 -04:00
										 |  |  |     describe('child_process.exec', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const echo = path.join(fixtures, 'asar', 'echo.asar', 'echo') | 
					
						
							| 
									
										
										
										
											2016-05-19 11:08:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('should not try to extract the command if there is a reference to a file inside an .asar', function (done) { | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |         ChildProcess.exec('echo ' + echo + ' foo bar', function (error, stdout) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(error, null) | 
					
						
							|  |  |  |           assert.strictEqual(stdout.toString().replace(/\r/g, ''), echo + ' foo bar\n') | 
					
						
							| 
									
										
										
										
											2016-05-19 11:08:08 -04:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('can be promisified', () => { | 
					
						
							|  |  |  |         return util.promisify(ChildProcess.exec)('echo ' + echo + ' foo bar').then(({ stdout }) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(stdout.toString().replace(/\r/g, ''), echo + ' foo bar\n') | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-05-19 11:08:08 -04:00
										 |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('child_process.execSync', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const echo = path.join(fixtures, 'asar', 'echo.asar', 'echo') | 
					
						
							| 
									
										
										
										
											2016-05-19 11:08:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('should not try to extract the command if there is a reference to a file inside an .asar', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const stdout = ChildProcess.execSync('echo ' + echo + ' foo bar') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(stdout.toString().replace(/\r/g, ''), echo + ' foo bar\n') | 
					
						
							| 
									
										
										
										
											2016-05-19 11:08:08 -04:00
										 |  |  |         done() | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     describe('child_process.execFile', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const execFile = ChildProcess.execFile | 
					
						
							|  |  |  |       const execFileSync = ChildProcess.execFileSync | 
					
						
							|  |  |  |       const echo = path.join(fixtures, 'asar', 'echo.asar', 'echo') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 00:05:46 +03:00
										 |  |  |       before(function () { | 
					
						
							|  |  |  |         if (process.platform !== 'darwin') { | 
					
						
							|  |  |  |           this.skip() | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       it('executes binaries', function (done) { | 
					
						
							|  |  |  |         execFile(echo, ['test'], function (error, stdout) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(error, null) | 
					
						
							|  |  |  |           assert.strictEqual(stdout, 'test\n') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-30 12:45:46 -07:00
										 |  |  |       it('execFileSync executes binaries', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const output = execFileSync(echo, ['test']) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(String(output), 'test\n') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('can be promisified', () => { | 
					
						
							|  |  |  |         return util.promisify(ChildProcess.execFile)(echo, ['test']).then(({ stdout }) => { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(stdout, 'test\n') | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-19 09:38:42 -07:00
										 |  |  |     describe('internalModuleReadJSON', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const internalModuleReadJSON = process.binding('fs').internalModuleReadJSON | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('read a normal file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const file1 = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(internalModuleReadJSON(file1).toString().trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const file2 = path.join(fixtures, 'asar', 'a.asar', 'file2') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(internalModuleReadJSON(file2).toString().trim(), 'file2') | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const file3 = path.join(fixtures, 'asar', 'a.asar', 'file3') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(internalModuleReadJSON(file3).toString().trim(), 'file3') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('reads a normal file with unpacked files', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const p = path.join(fixtures, 'asar', 'unpack.asar', 'a.txt') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(internalModuleReadJSON(p).toString().trim(), 'a') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |     describe('util.promisify', function () { | 
					
						
							|  |  |  |       it('can promisify all fs functions', function () { | 
					
						
							|  |  |  |         const originalFs = require('original-fs') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         const { hasOwnProperty } = Object.prototype | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-07 17:13:10 +02:00
										 |  |  |         for (const [propertyName, originalValue] of Object.entries(originalFs)) { | 
					
						
							| 
									
										
										
										
											2018-09-10 11:35:37 +02:00
										 |  |  |           // Some properties exist but have a value of `undefined` on some platforms.
 | 
					
						
							|  |  |  |           // E.g. `fs.lchmod`, which in only available on MacOS, see
 | 
					
						
							|  |  |  |           // https://nodejs.org/docs/latest-v10.x/api/fs.html#fs_fs_lchmod_path_mode_callback
 | 
					
						
							|  |  |  |           // Also check for `null`s, `hasOwnProperty()` can't handle them.
 | 
					
						
							|  |  |  |           if (typeof originalValue === 'undefined' || originalValue === null) continue | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-07 17:13:10 +02:00
										 |  |  |           if (hasOwnProperty.call(originalValue, util.promisify.custom)) { | 
					
						
							|  |  |  |             expect(fs).to.have.own.property(propertyName) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |               .that.has.own.property(util.promisify.custom) | 
					
						
							| 
									
										
										
										
											2018-08-01 05:06:48 +02:00
										 |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     describe('process.noAsar', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const errorName = process.platform === 'win32' ? 'ENOENT' : 'ENOTDIR' | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       beforeEach(function () { | 
					
						
							|  |  |  |         process.noAsar = true | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       afterEach(function () { | 
					
						
							|  |  |  |         process.noAsar = false | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('disables asar support in sync API', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const file = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							|  |  |  |         const dir = path.join(fixtures, 'asar', 'a.asar', 'dir1') | 
					
						
							| 
									
										
										
										
											2016-03-28 16:11:00 -07:00
										 |  |  |         assert.throws(function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.readFileSync(file) | 
					
						
							| 
									
										
										
										
											2016-03-28 16:11:00 -07:00
										 |  |  |         }, new RegExp(errorName)) | 
					
						
							|  |  |  |         assert.throws(function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.lstatSync(file) | 
					
						
							| 
									
										
										
										
											2016-03-28 16:11:00 -07:00
										 |  |  |         }, new RegExp(errorName)) | 
					
						
							|  |  |  |         assert.throws(function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.realpathSync(file) | 
					
						
							| 
									
										
										
										
											2016-03-28 16:11:00 -07:00
										 |  |  |         }, new RegExp(errorName)) | 
					
						
							|  |  |  |         assert.throws(function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.readdirSync(dir) | 
					
						
							| 
									
										
										
										
											2016-03-28 16:11:00 -07:00
										 |  |  |         }, new RegExp(errorName)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('disables asar support in async API', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const file = path.join(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							|  |  |  |         const dir = path.join(fixtures, 'asar', 'a.asar', 'dir1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         fs.readFile(file, function (error) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(error.code, errorName) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.lstat(file, function (error) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |             assert.strictEqual(error.code, errorName) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |             fs.realpath(file, function (error) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |               assert.strictEqual(error.code, errorName) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |               fs.readdir(dir, function (error) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |                 assert.strictEqual(error.code, errorName) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |                 done() | 
					
						
							|  |  |  |               }) | 
					
						
							|  |  |  |             }) | 
					
						
							|  |  |  |           }) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('treats *.asar as normal file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |         const originalFs = require('original-fs') | 
					
						
							|  |  |  |         const asar = path.join(fixtures, 'asar', 'a.asar') | 
					
						
							|  |  |  |         const content1 = fs.readFileSync(asar) | 
					
						
							|  |  |  |         const content2 = originalFs.readFileSync(asar) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(content1.compare(content2), 0) | 
					
						
							| 
									
										
										
										
											2016-03-28 16:11:00 -07:00
										 |  |  |         assert.throws(function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           fs.readdirSync(asar) | 
					
						
							| 
									
										
										
										
											2016-03-28 16:11:00 -07:00
										 |  |  |         }, /ENOTDIR/) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-09-06 13:32:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('is reset to its original value when execSync throws an error', function () { | 
					
						
							|  |  |  |         process.noAsar = false | 
					
						
							|  |  |  |         assert.throws(function () { | 
					
						
							|  |  |  |           ChildProcess.execSync(path.join(__dirname, 'does-not-exist.txt')) | 
					
						
							|  |  |  |         }) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(process.noAsar, false) | 
					
						
							| 
									
										
										
										
											2016-09-06 13:32:30 -07:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-10-07 10:59:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     describe('process.env.ELECTRON_NO_ASAR', function () { | 
					
						
							|  |  |  |       it('disables asar support in forked processes', function (done) { | 
					
						
							|  |  |  |         const forked = ChildProcess.fork(path.join(__dirname, 'fixtures', 'module', 'no-asar.js'), [], { | 
					
						
							|  |  |  |           env: { | 
					
						
							|  |  |  |             ELECTRON_NO_ASAR: true | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         forked.on('message', function (stats) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(stats.isFile, true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 778) | 
					
						
							| 
									
										
										
										
											2016-10-07 10:59:18 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('disables asar support in spawned processes', function (done) { | 
					
						
							|  |  |  |         const spawned = ChildProcess.spawn(process.execPath, [path.join(__dirname, 'fixtures', 'module', 'no-asar.js')], { | 
					
						
							|  |  |  |           env: { | 
					
						
							|  |  |  |             ELECTRON_NO_ASAR: true, | 
					
						
							|  |  |  |             ELECTRON_RUN_AS_NODE: true | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         let output = '' | 
					
						
							|  |  |  |         spawned.stdout.on('data', function (data) { | 
					
						
							|  |  |  |           output += data | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         spawned.stdout.on('close', function () { | 
					
						
							| 
									
										
										
										
											2016-10-07 10:59:34 -07:00
										 |  |  |           const stats = JSON.parse(output) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(stats.isFile, true) | 
					
						
							|  |  |  |           assert.strictEqual(stats.size, 778) | 
					
						
							| 
									
										
										
										
											2016-10-07 10:59:18 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('asar protocol', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |     let w = null | 
					
						
							| 
									
										
										
										
											2016-11-29 12:13:33 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     afterEach(function () { | 
					
						
							|  |  |  |       return closeWindow(w).then(function () { w = null }) | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('can request a file in package', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.resolve(fixtures, 'asar', 'a.asar', 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       $.get('file://' + p, function (data) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(data.trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         done() | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('can request a file in package with unpacked files', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.resolve(fixtures, 'asar', 'unpack.asar', 'a.txt') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       $.get('file://' + p, function (data) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(data.trim(), 'a') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         done() | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('can request a linked file in package', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.resolve(fixtures, 'asar', 'a.asar', 'link2', 'link1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       $.get('file://' + p, function (data) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(data.trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         done() | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('can request a file in filesystem', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.resolve(fixtures, 'asar', 'file') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       $.get('file://' + p, function (data) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(data.trim(), 'file') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         done() | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('gets 404 when file is not found', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.resolve(fixtures, 'asar', 'a.asar', 'no-exist') | 
					
						
							| 
									
										
										
										
											2016-02-16 17:39:11 -08:00
										 |  |  |       $.ajax({ | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         url: 'file://' + p, | 
					
						
							|  |  |  |         error: function (err) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |           assert.strictEqual(err.status, 404) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     it('sets __dirname correctly', function (done) { | 
					
						
							|  |  |  |       after(function () { | 
					
						
							|  |  |  |         ipcMain.removeAllListeners('dirname') | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-29 12:13:33 -08:00
										 |  |  |       w = new BrowserWindow({ | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         show: false, | 
					
						
							|  |  |  |         width: 400, | 
					
						
							|  |  |  |         height: 400 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.resolve(fixtures, 'asar', 'web.asar', 'index.html') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       ipcMain.once('dirname', function (event, dirname) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(dirname, path.dirname(p)) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         done() | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2018-09-04 16:50:53 +02:00
										 |  |  |       w.loadFile(p) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('loads script tag in html', function (done) { | 
					
						
							|  |  |  |       after(function () { | 
					
						
							|  |  |  |         ipcMain.removeAllListeners('ping') | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-29 12:13:33 -08:00
										 |  |  |       w = new BrowserWindow({ | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         show: false, | 
					
						
							|  |  |  |         width: 400, | 
					
						
							|  |  |  |         height: 400 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.resolve(fixtures, 'asar', 'script.asar', 'index.html') | 
					
						
							| 
									
										
										
										
											2018-09-04 16:50:53 +02:00
										 |  |  |       w.loadFile(p) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       ipcMain.once('ping', function (event, message) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(message, 'pong') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         done() | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-09-08 08:31:35 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  |     it('loads video tag in html', function (done) { | 
					
						
							| 
									
										
										
										
											2016-11-29 14:31:57 -08:00
										 |  |  |       this.timeout(60000) | 
					
						
							| 
									
										
										
										
											2016-09-08 08:31:35 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  |       after(function () { | 
					
						
							|  |  |  |         ipcMain.removeAllListeners('asar-video') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-29 12:13:33 -08:00
										 |  |  |       w = new BrowserWindow({ | 
					
						
							| 
									
										
										
										
											2016-09-08 08:31:35 +05:30
										 |  |  |         show: false, | 
					
						
							|  |  |  |         width: 400, | 
					
						
							|  |  |  |         height: 400 | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.resolve(fixtures, 'asar', 'video.asar', 'index.html') | 
					
						
							| 
									
										
										
										
											2018-09-04 16:50:53 +02:00
										 |  |  |       w.loadFile(p) | 
					
						
							| 
									
										
										
										
											2016-09-08 08:31:35 +05:30
										 |  |  |       ipcMain.on('asar-video', function (event, message, error) { | 
					
						
							|  |  |  |         if (message === 'ended') { | 
					
						
							|  |  |  |           assert(!error) | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         } else if (message === 'error') { | 
					
						
							|  |  |  |           done(error) | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('original-fs module', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |     const originalFs = require('original-fs') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('treats .asar as file', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const file = path.join(fixtures, 'asar', 'a.asar') | 
					
						
							|  |  |  |       const stats = originalFs.statSync(file) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       assert(stats.isFile()) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('is available in forked scripts', function (done) { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const child = ChildProcess.fork(path.join(fixtures, 'module', 'original-fs.js')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       child.on('message', function (msg) { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |         assert.strictEqual(msg, 'object') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         done() | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |       child.send('message') | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('graceful-fs module', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |     const gfs = require('graceful-fs') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('recognize asar archvies', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.join(fixtures, 'asar', 'a.asar', 'link1') | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |       assert.strictEqual(gfs.readFileSync(p).toString().trim(), 'file1') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     }) | 
					
						
							|  |  |  |     it('does not touch global fs object', function () { | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |       assert.notStrictEqual(fs.readdir, gfs.readdir) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('mkdirp module', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |     const mkdirp = require('mkdirp') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('throws error when calling inside asar archive', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.join(fixtures, 'asar', 'a.asar', 'not-exist') | 
					
						
							| 
									
										
										
										
											2016-03-28 16:11:00 -07:00
										 |  |  |       assert.throws(function () { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         mkdirp.sync(p) | 
					
						
							| 
									
										
										
										
											2016-03-28 16:11:00 -07:00
										 |  |  |       }, new RegExp('ENOTDIR')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('native-image', function () { | 
					
						
							|  |  |  |     it('reads image from asar archive', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.join(fixtures, 'asar', 'logo.asar', 'logo.png') | 
					
						
							|  |  |  |       const logo = nativeImage.createFromPath(p) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |       assert.deepStrictEqual(logo.getSize(), { | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         width: 55, | 
					
						
							|  |  |  |         height: 55 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     it('reads image from asar archive with unpacked files', function () { | 
					
						
							| 
									
										
										
										
											2018-09-29 01:17:00 +02:00
										 |  |  |       const p = path.join(fixtures, 'asar', 'unpack.asar', 'atom.png') | 
					
						
							|  |  |  |       const logo = nativeImage.createFromPath(p) | 
					
						
							| 
									
										
										
										
											2018-09-14 02:10:51 +10:00
										 |  |  |       assert.deepStrictEqual(logo.getSize(), { | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |         width: 1024, | 
					
						
							|  |  |  |         height: 1024 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | }) |