I have a Titanium project which uses the CommonJS module style. However the code uses absolute paths so that when it builds the absolute path is sandboxed to the application directory.
var foo = require("/lib/module");
I want to run some tests on the command line and have jasmine-node working. However when a test executes a module the module will have the above absolute paths in their require statements.
Is there a way to isolate (maybe chroot) node to resolve absolute require paths to a specific directory? If so how?
-- RepositoryRoot/
|- app/
| \- Resources/
| |- app.js # Has require("/lib/module1.js")
| \- lib/
| |- module1.js # Has require("/lib/module2.js")
| \- module2.js
\- tests/
\- module1.spec.js # Has require("../app/Resources/lib/module1")
# Or require("/lib/module1")
After finding a solution here is what I learned: The short answer to the exact above question is you can't do that. Node reads absolute paths as absolute paths. So the answer in short was to change my paths from absolute to pseudo-absolute (relative) paths. Here is a quote from this blog post that sheds some light:
This is accomplished by setting the
NODE_PATH
environment variable prior to running any node commands. That way a path such as `require("module/path") is resolved by node and titanium.There are a few caveats. Some module force the need for absolute paths. In this case one needs proxyquire to mock out the absolute paths as long as there are not any circular dependancies this will work. Also since node does not have Titanium API's you also have to include the mockti package to mock out the Titanium API. Use this in your spec_helper.js:
and