如何从运行的grunt jasmine获取xml输出

时间:2013-08-02 20:12:14

标签: junit jasmine gruntjs

我正在尝试将我的测试整合到竹子中。对于竹子,似乎我需要测试结果是junit xml格式。因此,我需要让我的“咕噜咕噜”执行以xml格式输出测试结果。我是jasmine / grunt / junit的新手,我花了更多的时间来承认尝试让它发挥作用。我遵循了各种教程和主板(主要是https://gist.github.com/asabaylus/3059886),但我只是卡住了。

当我从gitbash运行“grunt jasmine”时,规范运行成功,但没有生成输出文件,我收到以下错误... “处理模板时发生错误(无法调用方法'indexO f'of undefined)。使用--force继续。

因警告而中止。“

我是否必须更改任何其他文件?有人可以帮我解决这个问题吗?

请,谢谢! CC

grunt.js档案

/*global module:false*/
    module.exports = function ( grunt ) {

        // Project configuration.
        grunt.initConfig({
            meta: {
                banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
                    '<%= grunt.template.today("yyyy-mm-dd") %>\n' +
                    '<%= pkg.homepage ? "* " + pkg.homepage + "\n" : "" %>' +
                    '* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
                    ' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */'
            },

            lint: {
                files: ['grunt.js', 'src/**/*.js']
            },

            jasmine: {
                all: ['./SpecRunner.html'],
                junit: {
                    dest: 'test-results' 
                }  
            },

            concat: {
                dist: {
                    src : ['<banner:meta.banner>', '<file_strip_banner:src/buyitnow.js>'],
                    dest: 'dist/buyitnow/<%= meta.version %>/buyitnow.js'
                }
            },

            min: {
                dist: {
                    src : ['<banner:meta.banner>', '<config:concat.dist.dest>'],
                    dest: 'dist/buyitnow/<%= meta.version %>/buyitnow.min.js'
                }
            },

            watch: {
                files: '<config:lint.files>',
                tasks: 'lint'
            },

            jshint: {
                options: {
                    curly  : true,
                    eqeqeq : true,
                    immed  : true,
                    latedef: true,
                    newcap : true,
                    noarg  : true,
                    sub    : true,
                    undef  : true,
                    boss   : true,
                    eqnull : true,
                    browser: true,
                    jquery : true,
                    node   : true
                },
                globals: {}
            },

            uglify: {}
        });

        grunt.loadNpmTasks('grunt-jasmine-task');

        // Default task.
        grunt.registerTask('default', 'lint jasmine concat min cssmin');};

我的specrunner.html文件

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title>Jasmine Spec Runner</title>

  <link rel="shortcut icon" type="image/png" href="lib/jasmine-1.3.1/jasmine_favicon.png">
  <link rel="stylesheet" type="text/css" href="lib/jasmine-1.3.1/jasmine.css">
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
  <script type="text/javascript" src="lib/jasmine-1.3.1/jasmine.js"></script>
  <script type="text/javascript" src="lib/jasmine-1.3.1/jasmine-html.js"></script>
  <script type="text/javascript" src="lib/jasmine.async.min.js"></script>
  <script type="text/javascript" src="lib/sinon-1.6.0.js"></script>

  <!-- For JUnit output of test results include the following link to Lary Myer's JUnit reporter -->
  <script type="text/javascript" src="node_modules/jasmine-reporters/src/jasmine.junit_reporter.js"></script>

  <!-- include spec files here... -->
  <script type="text/javascript" src="spec/binSpec.js"></script>

  <script type="text/javascript">
    (function() {
      var jasmineEnv = jasmine.getEnv();
      jasmineEnv.updateInterval = 1000;

      var htmlReporter = new jasmine.HtmlReporter();
      jasmineEnv.addReporter(htmlReporter);

      // Specify target test results folder as below, for now
      var junitReporter = new jasmine.JUnitXmlReporter('test-results/');
      jasmineEnv.addReporter(junitReporter);

      jasmineEnv.specFilter = function(spec) {
        return htmlReporter.specFilter(spec);
      };

      var currentWindowOnload = window.onload;

      window.onload = function() {
        if (currentWindowOnload) {
          currentWindowOnload();
        }
        execJasmine();
      };

      function execJasmine() {
        jasmineEnv.execute();
      }

    })();
  </script>

</head>

<body>
</body>
</html>

2 个答案:

答案 0 :(得分:1)

正如Amir T所说,你可以使用grunt-contrib-jasmine。此外,grunt-jasmine-task不再有效。

options.junit.path选项可用于创建可由Jenkins / Hudson,Travis,Bamboo等使用的junit报告。此选项应提供将要创建报告的文件夹的名称(grunt-contrib-jasmine将为每个spec文件创建一个xml)。这是一个示例配置:

jasmine: {
    tests: {
        src: 'dist/buyitnow/<%= meta.version %>/buyitnow.min.js',
        options: {
            specs: 'spec/*Spec.js',
            junit: {
                path: 'build/junit'
            },
        }
    }
}

您无需创建由SpecRunner.html

自动创建的grunt-contrib-jasmine文件

答案 1 :(得分:0)

我可以使用grunt-contrib-jasmine@0.5.2

来做到这一点
jasmine: {
  pivotal: {
    src: 'build/application.js',
    options: {
      specs: 'test/**/*_spec.js',
      helpers: 'test/**/*_helper.js',
      junit: {
        path: 'build/.test'
      },
    }
  }
}