This repository has been archived by the owner on Sep 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 121
fix: Switched from launching phantomjs via node to ensuring that the .exe is always launched #33
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,25 @@ | ||
var fs = require('fs'); | ||
var path = require('path'); | ||
|
||
|
||
function serializeOption(value) { | ||
if (typeof value === 'function') { | ||
return value.toString(); | ||
} | ||
return JSON.stringify(value); | ||
} | ||
|
||
var win32PhantomJSPath = function () { | ||
// get the path stored in phantomjs\lib\location.js, someting like | ||
// "C:\\Users\\user-name\\AppData\\Roaming\\npm\\phantomjs.CMD" | ||
var cmd = require('phantomjs').path; | ||
var phantomJSExePath = function () { | ||
// If the path we're given by phantomjs is to a .cmd, it is pointing to a global copy. | ||
// Using the cmd as the process to execute causes problems cleaning up the processes | ||
// so we walk from the cmd to the phantomjs.exe and use that instead. | ||
|
||
// get the global npm install directory by removing the filename from cmd variable | ||
var npmGlobalRoot = path.dirname(cmd); | ||
var phantomSource = require('phantomjs').path; | ||
|
||
// add known path | ||
var phantom = npmGlobalRoot + '\\node_modules\\phantomjs\\bin\\phantomjs'; | ||
if (path.extname(phantomSource).toLowerCase() === '.cmd') { | ||
return path.join(path.dirname( phantomSource ), '//node_modules//phantomjs//lib//phantom//phantomjs.exe'); | ||
} | ||
|
||
return phantom; | ||
return phantomSource; | ||
}; | ||
|
||
var PhantomJSBrowser = function(baseBrowserDecorator, config, args) { | ||
|
@@ -48,12 +47,7 @@ var PhantomJSBrowser = function(baseBrowserDecorator, config, args) { | |
optionsCode.join('\n') + '\npage.open("' + url + '");\n'; | ||
fs.writeFileSync(captureFile, captureCode); | ||
|
||
var isWin = /^win/.test(process.platform); | ||
if (isWin) { | ||
flags = flags.concat(win32PhantomJSPath(), captureFile); | ||
} else { | ||
flags = flags.concat(captureFile); | ||
} | ||
flags = flags.concat(captureFile); | ||
|
||
// and start phantomjs | ||
this._execCommand(this._getCommand(), flags); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The extra flag added here caused the command to be
But when
Which caused phantomjs to hang. |
||
|
@@ -66,7 +60,7 @@ PhantomJSBrowser.prototype = { | |
DEFAULT_CMD: { | ||
linux: require('phantomjs').path, | ||
darwin: require('phantomjs').path, | ||
win32: process.execPath //path to node.exe, see flags in _start() | ||
win32: phantomJSExePath() | ||
}, | ||
ENV_CMD: 'PHANTOMJS_BIN' | ||
}; | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because changing the executable only needs to be done when the win32 DEFAULT_CMD is set, we no longer need to detect the os version again here.