16

我正在开发一个用 CommonJS 语法编写的 Angular 应用程序,并使用带有 grunt-contrib-requirejs 任务的 grunt 任务将源文件转换为 AMD 格式并将其编译成一个输出文件。我的目标是让 Karma 与 RequireJS 一起工作,并将我的源文件和规范文件保留在 CommonJS 语法中。

我已经能够通过以下文件结构以 AMD 格式通过简单的测试:

-- karma-test
   |-- spec
   |   `-- exampleSpec.js
   |-- src
   |   `-- example.js
   |-- karma.conf.js
   `-- test-main.js

和以下文件:

业力.conf.js

// base path, that will be used to resolve files and exclude
basePath = '';

// list of files / patterns to load in the browser
files = [
  JASMINE,
  JASMINE_ADAPTER,
  REQUIRE,
  REQUIRE_ADAPTER,
  'test-main.js',
  {pattern: 'src/*.js', included: false},
  {pattern: 'spec/*.js', included: false}
];

// list of files to exclude
exclude = [];

// test results reporter to use
// possible values: 'dots', 'progress', 'junit'
reporters = ['progress'];

// web server port
port = 9876;

// cli runner port
runnerPort = 9100;

// enable / disable colors in the output (reporters and logs)
colors = true;

// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel = LOG_DEBUG;

// enable / disable watching file and executing tests whenever any file changes
autoWatch = true;

// Start these browsers, currently available:
browsers = ['Chrome'];

// If browser does not capture in given timeout [ms], kill it
captureTimeout = 60000;

// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun = false;

例子.js

define('example', function() {
    var message = "Hello!";

    return {
        message: message
    };
});

示例规范.js

define(['example'], function(example) {
    describe("Example", function() {
        it("should have a message equal to 'Hello!'", function() {
            expect(example.message).toBe('Hello!');
        });
    });
});

测试main.js

var tests = Object.keys(window.__karma__.files).filter(function (file) {
      return /Spec\.js$/.test(file);
});

requirejs.config({
    // Karma serves files from '/base'
    baseUrl: '/base/src',

    // Translate CommonJS to AMD
    cjsTranslate: true,

    // ask Require.js to load these files (all our tests)
    deps: tests,

    // start test run, once Require.js is done
    callback: window.__karma__.start
});

但是,我的目标是用 CommonJS 语法编写源文件和规范文件,结果相同,如下所示:

例子.js

var message = "Hello!";

module.exports = {
    message: message
};

示例规范.js

var example = require('example');

describe("Example", function() {
    it("should have a message equal to 'Hello!'", function() {
        expect(example.message).toBe('Hello!');
    });
});

但是尽管将cjsTranslate标志设置为true,我还是收到了这个错误:

Uncaught Error: Module name "example" has not been loaded yet for context: _. Use require([])
http://requirejs.org/docs/errors.html#notloaded
at http://localhost:9876/adapter/lib/require.js?1371450058000:1746

关于如何实现这一点的任何想法?


编辑:我为 karma-runner repo 发现了这个问题:https ://github.com/karma-runner/karma/issues/552并且有一些评论可能有助于解决这个问题,但我没有任何运气到目前为止。

4

2 回答 2

12

我最终找到的解决方案涉及使用grunt和编写一些自定义的 grunt 任务。过程是这样的:

创建一个 grunt 任务来构建引导程序 requirejs 文件,方法是使用文件模式查找所有规范,遍历它们并构建传统的 AMD 风格的 require 块,并使用如下代码创建一个临时文件:

require(['spec/example1_spec.js'
,'spec/example2_spec.js',
,'spec/example3_spec.js'
],function(a1,a2){
// this space intentionally left blank
}, "", true);

创建一个 RequireJS grunt 任务,它编译上述引导文件并输出一个 js 文件,该文件将有效地包含所有源代码、规范和库。

   requirejs: {
        tests: {
            options: {
                baseUrl: './test',
                paths: {}, // paths object for libraries
                shim: {}, // shim object for non-AMD libraries
                // I pulled in almond using npm
                name: '../node_modules/almond/almond.min',
                // This is the file we created above
                include: 'tmp/require-tests',
                // This is the output file that we will serve to karma
                out: 'test/tmp/tests.js',
                optimize: 'none',
                // This translates commonjs syntax to AMD require blocks
                cjsTranslate: true
            }
        }
    }

创建一个手动启动 karma 服务器并提供我们现在用于测试的单个编译 js 文件的 grunt 任务。

此外,我能够放弃文件REQUIRE_ADAPTER中的karma.conf.js,然后只包含单个编译的 js 文件,而不是匹配所有源代码和规范的模式,所以现在看起来像这样:

// base path, that will be used to resolve files and exclude
basePath = '';

// list of files / patterns to load in the browser
files = [
  JASMINE,
  JASMINE_ADAPTER,
  REQUIRE,
  'tmp/tests.js'
];

// list of files to exclude
exclude = [];

// test results reporter to use
// possible values: 'dots', 'progress', 'junit'
reporters = ['progress'];

// web server port
port = 9876;

// cli runner port
runnerPort = 9100;

// enable / disable colors in the output (reporters and logs)
colors = true;

// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel = LOG_INFO;

// enable / disable watching file and executing tests whenever any file changes
autoWatch = true;

// Start these browsers, currently available:
browsers = ['PhantomJS'];

// If browser does not capture in given timeout [ms], kill it
captureTimeout = 60000;

// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun = true;

在 requirejs 编译的 grunt 任务配置中,还需要使用almond来启动测试执行(如果没有它,测试执行会挂起)。你可以在上面的 requirejs grunt 任务配置中看到这个。

于 2013-07-01T22:38:10.300 回答
1

有几件事。首先:我可能错过了您问题中的一些细节(因为它非常庞大)-对此感到抱歉。

简而言之,您可能需要查看 Backbone-Boilerplatewip分支测试组织:https ://github.com/backbone-boilerplate/backbone-boilerplate/tree/wip

首先:RequireJS 不支持未包装的原始 common.js 模块。cjsTranslate是一个 R.js(构建工具)选项,用于在构建期间将 Commonjs 转换为 AMD 兼容。因此,要求 CJS 原始模块是行不通的。要解决此问题,您可以使用服务器过滤发送的脚本并将其编译为 AMD 格式。在 BBB 上,我们通过静态服务传递文件来编译它们:

第二:Karma 的 requirejs 插件运行得不是很好——而且直接使用 requireJS 很容易。在 BBB 上,这就是我们管理它的方式:https ://github.com/backbone-boilerplate/backbone-boilerplate/blob/wip/test/jasmine/test-runner.js#L16-L36

希望这可以帮助!

于 2013-06-26T19:33:13.700 回答