Running individual JS tests at the CLI fails
--------------------------------------------

                 Key: COUCHDB-1417
                 URL: https://issues.apache.org/jira/browse/COUCHDB-1417
             Project: CouchDB
          Issue Type: Bug
          Components: Test Suite
    Affects Versions: 1.2
            Reporter: Jason Smith
            Priority: Minor


Running the following in the 1.2.x branch does not work:

    $ ./test/javascript/run share/www/script/test/rewrite.js 
    [couchjs] Error: No XMLHTTPRequest support detected

The cause is that the runner concatenates several files into one script:

    cat couchdb/share/www/script/json2.js couchdb/share/www/script/sha1.js 
couchdb/share/www/script/oauth.js couchdb/share/www/script/couch.js 
couchdb/share/www/script/couch_test_runner.js 
couchdb/share/www/script/couch_tests.js share/www/script/test/rewrite.js 
couchdb/test/javascript/couch_http.js couchdb/test/javascript/cli_runner.js

If the final statement before couch_http.js is missing a semicolon, then 
couch_http.js will look like a function invocation.

The fix is to modify couch_http.js to be completely protected from whatever 
statements may have preceded it.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to