Jasmine在PhantomJS中运行时从不执行它

Jasmine在PhantomJS中运行时从不执行它,jasmine,phantomjs,Jasmine,Phantomjs,我正试着在幻影中运行Jasmine。经过一番努力,我终于做到了: page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/jasmine.js"); page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/jasmine-html.js"); page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2

我正试着在幻影中运行Jasmine。经过一番努力,我终于做到了:

    page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/jasmine.js");
    page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/jasmine-html.js");
    page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/boot.js");
    page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/console.js");
    var result = page.evaluate(function (done) {
        var ConsoleReporter = jasmineRequire.ConsoleReporter();
        var options = {
            timer: new jasmine.Timer,
            print: function () {
                console.log.apply(console, arguments)
            }
        };
        consoleReporter = new ConsoleReporter(options);
        jasmine.getEnv().addReporter(consoleReporter);

        describe("test1", function () {
            console.log("in test 1");
            it("should do something", function () {
                console.log("NEVER GETS HERE"); // <-- never gets there
            });
        });
    });
page.injectJs(“/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/jasmine.js”);
page.injectJs(“/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/jasmine html.js”);
page.injectJs(“/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/boot.js”);
page.injectJs(“/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/console.js”);
var result=page.evaluate(函数(完成){
var ConsoleReporter=jasmineRequire.ConsoleReporter();
变量选项={
计时器:新茉莉花。计时器,
打印:函数(){
console.log.apply(控制台,参数)
}
};
consoleReporter=新的consoleReporter(选项);
jasmine.getEnv().addReporter(consoleReporter);
描述(“test1”,函数(){
控制台日志(“在测试1中”);
它(“应该做点什么”,函数(){

log(“NEVER GETS HERE”);//是通过愚蠢的运气蛮力方法获得的。我从未找到有用的文档,但有一点帮助

我的文件如下:

testrunner.js

var system = require("system");
var page = require("webpage").create();

var loginUrl = system.args[1];

page.onConsoleMessage = function (msg) {
    console.log("FROM PAGE: " + msg);
};

page.onError = function (err) {
    console.log("ERR FROM PAGE: " + JSON.stringify(err));
}

var loggedIn = false;
function onLogin_atHomePage() {
    if (loggedIn)
        return; // dont run twice if a developer is programatically logging in 
        page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/jasmine.js");
        page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/boot.js");
        page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/console.js");
        var result = page.evaluate(function (done) {
            var ConsoleReporter = jasmineRequire.ConsoleReporter();
            var options = {
                timer: new jasmine.Timer,
                print: function () {
                    console.log.apply(console, arguments)
                }
            };
            consoleReporter = new ConsoleReporter(options); // initialize ConsoleReporter
            jasmine.getEnv().addReporter(consoleReporter); //add reporter to execution environment

            describe("test1", function () {
                console.log("in test 1");
                it("should do something", function () {
                    console.log("NEV");
                });
            });

            jasmine.getEnv().execute();
        });
}

page.open(loginUrl, function () {
    console.log("LOGGING IN...");
    page.onLoadFinished = onLogin_atHomePage;
    page.evaluate(function () {
        $(document).ready(function () {
            var $u = $("#login_id");
            var $p = $("[name='password']");
            $u.val("me");
            $p.val("666");
            submitForm();
        });
    });
});
/**
 Starting with version 2.0, this file "boots" Jasmine, performing all of the necessary initialization before executing the loaded environment and all of a project's specs. This file should be loaded after `jasmine.js`, but before any project source files or spec files are loaded. Thus this file can also be used to customize Jasmine for a project.

 If a project is using Jasmine via the standalone distribution, this file can be customized directly. If a project is using Jasmine via the [Ruby gem][jasmine-gem], this file can be copied into the support directory via `jasmine copy_boot_js`. Other environments (e.g., Python) will have different mechanisms.

 The location of `boot.js` can be specified and/or overridden in `jasmine.yml`.

 [jasmine-gem]: http://github.com/pivotal/jasmine-gem
 */

(function() {

  /**
   * ## Require &amp; Instantiate
   *
   * Require Jasmine's core files. Specifically, this requires and attaches all of Jasmine's code to the `jasmine` reference.
   */
  window.jasmine = jasmineRequire.core(jasmineRequire);

  /**
   * Since this is being run in a browser and the results should populate to an HTML page, require the HTML-specific Jasmine code, injecting the same reference.
   */
  //jasmineRequire.html(jasmine);

  /**
   * Create the Jasmine environment. This is used to run all specs in a project.
   */
  var env = jasmine.getEnv();

  /**
   * ## The Global Interface
   *
   * Build up the functions that will be exposed as the Jasmine public interface. A project can customize, rename or alias any of these functions as desired, provided the implementation remains unchanged.
   */
  var jasmineInterface = {
    describe: function(description, specDefinitions) {
      return env.describe(description, specDefinitions);
    },

    xdescribe: function(description, specDefinitions) {
      return env.xdescribe(description, specDefinitions);
    },

    it: function(desc, func) {
      return env.it(desc, func);
    },

    xit: function(desc, func) {
      return env.xit(desc, func);
    },

    beforeEach: function(beforeEachFunction) {
      return env.beforeEach(beforeEachFunction);
    },

    afterEach: function(afterEachFunction) {
      return env.afterEach(afterEachFunction);
    },

    expect: function(actual) {
      return env.expect(actual);
    },

    pending: function() {
      return env.pending();
    },

    spyOn: function(obj, methodName) {
      return env.spyOn(obj, methodName);
    },

    jsApiReporter: new jasmine.JsApiReporter({
      timer: new jasmine.Timer()
    })
  };

  /**
   * Add all of the Jasmine global/public interface to the proper global, so a project can use the public interface directly. For example, calling `describe` in specs instead of `jasmine.getEnv().describe`.
   */
  if (typeof window == "undefined" && typeof exports == "object") {
    extend(exports, jasmineInterface);
  } else {
    extend(window, jasmineInterface);
  }

  /**
   * Expose the interface for adding custom equality testers.
   */
  jasmine.addCustomEqualityTester = function(tester) {
    env.addCustomEqualityTester(tester);
  };

  /**
   * Expose the interface for adding custom expectation matchers
   */
  jasmine.addMatchers = function(matchers) {
    return env.addMatchers(matchers);
  };

  /**
   * Expose the mock interface for the JavaScript timeout functions
   */
  jasmine.clock = function() {
    return env.clock;
  };

  /**
   * ## Runner Parameters
   *
   * More browser specific code - wrap the query string in an object and to allow for getting/setting parameters from the runner user interface.
   */

  /*var queryString = new jasmine.QueryString({
    getWindowLocation: function() { return window.location; }
  });

  var catchingExceptions = queryString.getParam("catch");
  env.catchExceptions(typeof catchingExceptions === "undefined" ? true : catchingExceptions);
  */

  /**
   * ## Reporters
   * The `HtmlReporter` builds all of the HTML UI for the runner page. This reporter paints the dots, stars, and x's for specs, as well as all spec names and all failures (if any).
   */
    /*
  var htmlReporter = new jasmine.HtmlReporter({
    env: env,
    onRaiseExceptionsClick: function() { queryString.setParam("catch", !env.catchingExceptions()); },
    getContainer: function() { return document.body; },
    createElement: function() { return document.createElement.apply(document, arguments); },
    createTextNode: function() { return document.createTextNode.apply(document, arguments); },
    timer: new jasmine.Timer()
  });
  */

  /**
   * The `jsApiReporter` also receives spec results, and is used by any environment that needs to extract the results  from JavaScript.
   */
  env.addReporter(jasmineInterface.jsApiReporter);
  //env.addReporter(htmlReporter);

  /**
   * Filter which specs will be run by matching the start of the full name against the `spec` query param.
   */
  /*var specFilter = new jasmine.HtmlSpecFilter({
    filterString: function() { return queryString.getParam("spec"); }
  });

  env.specFilter = function(spec) {
    return specFilter.matches(spec.getFullName());
  };*/

  /**
   * Setting up timing functions to be able to be overridden. Certain browsers (Safari, IE 8, phantomjs) require this hack.
   */
  window.setTimeout = window.setTimeout;
  window.setInterval = window.setInterval;
  window.clearTimeout = window.clearTimeout;
  window.clearInterval = window.clearInterval;

  /**
   * ## Execution
   *
   * Replace the browser window's `onload`, ensure it's called, and then run all of the loaded specs. This includes initializing the `HtmlReporter` instance and then executing the loaded Jasmine environment. All of this will happen after all of the specs are loaded.
   */
  var currentWindowOnload = window.onload;

  window.onload = function() {
    if (currentWindowOnload) {
      currentWindowOnload();
    }
    htmlReporter.initialize();
    env.execute();
  };

  /**
   * Helper function for readability above.
   */
  function extend(destination, source) {
    for (var property in source) destination[property] = source[property];
    return destination;
  }

}());
boot.js

var system = require("system");
var page = require("webpage").create();

var loginUrl = system.args[1];

page.onConsoleMessage = function (msg) {
    console.log("FROM PAGE: " + msg);
};

page.onError = function (err) {
    console.log("ERR FROM PAGE: " + JSON.stringify(err));
}

var loggedIn = false;
function onLogin_atHomePage() {
    if (loggedIn)
        return; // dont run twice if a developer is programatically logging in 
        page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/jasmine.js");
        page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/boot.js");
        page.injectJs("/jasmine-standalone-2.0.0/lib/jasmine-2.0.0/console.js");
        var result = page.evaluate(function (done) {
            var ConsoleReporter = jasmineRequire.ConsoleReporter();
            var options = {
                timer: new jasmine.Timer,
                print: function () {
                    console.log.apply(console, arguments)
                }
            };
            consoleReporter = new ConsoleReporter(options); // initialize ConsoleReporter
            jasmine.getEnv().addReporter(consoleReporter); //add reporter to execution environment

            describe("test1", function () {
                console.log("in test 1");
                it("should do something", function () {
                    console.log("NEV");
                });
            });

            jasmine.getEnv().execute();
        });
}

page.open(loginUrl, function () {
    console.log("LOGGING IN...");
    page.onLoadFinished = onLogin_atHomePage;
    page.evaluate(function () {
        $(document).ready(function () {
            var $u = $("#login_id");
            var $p = $("[name='password']");
            $u.val("me");
            $p.val("666");
            submitForm();
        });
    });
});
/**
 Starting with version 2.0, this file "boots" Jasmine, performing all of the necessary initialization before executing the loaded environment and all of a project's specs. This file should be loaded after `jasmine.js`, but before any project source files or spec files are loaded. Thus this file can also be used to customize Jasmine for a project.

 If a project is using Jasmine via the standalone distribution, this file can be customized directly. If a project is using Jasmine via the [Ruby gem][jasmine-gem], this file can be copied into the support directory via `jasmine copy_boot_js`. Other environments (e.g., Python) will have different mechanisms.

 The location of `boot.js` can be specified and/or overridden in `jasmine.yml`.

 [jasmine-gem]: http://github.com/pivotal/jasmine-gem
 */

(function() {

  /**
   * ## Require &amp; Instantiate
   *
   * Require Jasmine's core files. Specifically, this requires and attaches all of Jasmine's code to the `jasmine` reference.
   */
  window.jasmine = jasmineRequire.core(jasmineRequire);

  /**
   * Since this is being run in a browser and the results should populate to an HTML page, require the HTML-specific Jasmine code, injecting the same reference.
   */
  //jasmineRequire.html(jasmine);

  /**
   * Create the Jasmine environment. This is used to run all specs in a project.
   */
  var env = jasmine.getEnv();

  /**
   * ## The Global Interface
   *
   * Build up the functions that will be exposed as the Jasmine public interface. A project can customize, rename or alias any of these functions as desired, provided the implementation remains unchanged.
   */
  var jasmineInterface = {
    describe: function(description, specDefinitions) {
      return env.describe(description, specDefinitions);
    },

    xdescribe: function(description, specDefinitions) {
      return env.xdescribe(description, specDefinitions);
    },

    it: function(desc, func) {
      return env.it(desc, func);
    },

    xit: function(desc, func) {
      return env.xit(desc, func);
    },

    beforeEach: function(beforeEachFunction) {
      return env.beforeEach(beforeEachFunction);
    },

    afterEach: function(afterEachFunction) {
      return env.afterEach(afterEachFunction);
    },

    expect: function(actual) {
      return env.expect(actual);
    },

    pending: function() {
      return env.pending();
    },

    spyOn: function(obj, methodName) {
      return env.spyOn(obj, methodName);
    },

    jsApiReporter: new jasmine.JsApiReporter({
      timer: new jasmine.Timer()
    })
  };

  /**
   * Add all of the Jasmine global/public interface to the proper global, so a project can use the public interface directly. For example, calling `describe` in specs instead of `jasmine.getEnv().describe`.
   */
  if (typeof window == "undefined" && typeof exports == "object") {
    extend(exports, jasmineInterface);
  } else {
    extend(window, jasmineInterface);
  }

  /**
   * Expose the interface for adding custom equality testers.
   */
  jasmine.addCustomEqualityTester = function(tester) {
    env.addCustomEqualityTester(tester);
  };

  /**
   * Expose the interface for adding custom expectation matchers
   */
  jasmine.addMatchers = function(matchers) {
    return env.addMatchers(matchers);
  };

  /**
   * Expose the mock interface for the JavaScript timeout functions
   */
  jasmine.clock = function() {
    return env.clock;
  };

  /**
   * ## Runner Parameters
   *
   * More browser specific code - wrap the query string in an object and to allow for getting/setting parameters from the runner user interface.
   */

  /*var queryString = new jasmine.QueryString({
    getWindowLocation: function() { return window.location; }
  });

  var catchingExceptions = queryString.getParam("catch");
  env.catchExceptions(typeof catchingExceptions === "undefined" ? true : catchingExceptions);
  */

  /**
   * ## Reporters
   * The `HtmlReporter` builds all of the HTML UI for the runner page. This reporter paints the dots, stars, and x's for specs, as well as all spec names and all failures (if any).
   */
    /*
  var htmlReporter = new jasmine.HtmlReporter({
    env: env,
    onRaiseExceptionsClick: function() { queryString.setParam("catch", !env.catchingExceptions()); },
    getContainer: function() { return document.body; },
    createElement: function() { return document.createElement.apply(document, arguments); },
    createTextNode: function() { return document.createTextNode.apply(document, arguments); },
    timer: new jasmine.Timer()
  });
  */

  /**
   * The `jsApiReporter` also receives spec results, and is used by any environment that needs to extract the results  from JavaScript.
   */
  env.addReporter(jasmineInterface.jsApiReporter);
  //env.addReporter(htmlReporter);

  /**
   * Filter which specs will be run by matching the start of the full name against the `spec` query param.
   */
  /*var specFilter = new jasmine.HtmlSpecFilter({
    filterString: function() { return queryString.getParam("spec"); }
  });

  env.specFilter = function(spec) {
    return specFilter.matches(spec.getFullName());
  };*/

  /**
   * Setting up timing functions to be able to be overridden. Certain browsers (Safari, IE 8, phantomjs) require this hack.
   */
  window.setTimeout = window.setTimeout;
  window.setInterval = window.setInterval;
  window.clearTimeout = window.clearTimeout;
  window.clearInterval = window.clearInterval;

  /**
   * ## Execution
   *
   * Replace the browser window's `onload`, ensure it's called, and then run all of the loaded specs. This includes initializing the `HtmlReporter` instance and then executing the loaded Jasmine environment. All of this will happen after all of the specs are loaded.
   */
  var currentWindowOnload = window.onload;

  window.onload = function() {
    if (currentWindowOnload) {
      currentWindowOnload();
    }
    htmlReporter.initialize();
    env.execute();
  };

  /**
   * Helper function for readability above.
   */
  function extend(destination, source) {
    for (var property in source) destination[property] = source[property];
    return destination;
  }

}());

你节省了很多时间!