-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for test name to contain parent suite(s) names.
This fixes issue reported in #62 where test names doesn't include parent test suites in the generated report. Also created minimal unit test setup.
- Loading branch information
Showing
5 changed files
with
121 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,23 +20,31 @@ | |
], | ||
"author": "Vojta Jina <[email protected]>", | ||
"dependencies": { | ||
"path-is-absolute": "^1.0.0", | ||
"xmlbuilder": "3.1.0" | ||
}, | ||
"peerDependencies": { | ||
"karma": ">=0.9" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"chai": "^3.5.0", | ||
"eslint": "^1.2.1", | ||
"eslint-config-standard": "^4.1.0", | ||
"eslint-plugin-standard": "^1.3.1", | ||
"grunt": "^0.4.1", | ||
"grunt-bump": "^0.5.0", | ||
"grunt-cli": "^0.1.13", | ||
"grunt-conventional-changelog": "^4.1.0", | ||
"grunt-conventional-github-releaser": "^0.4.0", | ||
"grunt-eslint": "^17.1.0", | ||
"grunt-npm": "^0.0.2", | ||
"load-grunt-tasks": "^3.2.0" | ||
"grunt-simple-mocha": "^0.4.1", | ||
"load-grunt-tasks": "^3.2.0", | ||
"mocha": "^2.4.5", | ||
"proxyquire": "^1.7.4", | ||
"sinon": "^1.17.3", | ||
"sinon-chai": "^2.8.0" | ||
}, | ||
"contributors": [ | ||
"dignifiedquire <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"env": { | ||
"mocha": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
'use strict' | ||
|
||
var chai = require('chai') | ||
var expect = require('chai').expect | ||
var sinon = require('sinon') | ||
var proxyquire = require('proxyquire') | ||
|
||
chai.use(require('sinon-chai')) | ||
|
||
function noop () {} | ||
|
||
var fakeLogger = { | ||
create: noop | ||
} | ||
|
||
var fakeHelper = { | ||
normalizeWinPath: noop, | ||
mkdirIfNotExists: sinon.stub().yields() | ||
} | ||
|
||
var fakeConfig = { | ||
basePath: __dirname, | ||
junitReporter: { | ||
outputFile: '' | ||
} | ||
} | ||
|
||
var fakeBaseReporterDecorator = noop | ||
|
||
describe('JUnit reporter', function () { | ||
var reporterModule | ||
var reporter | ||
|
||
var fakeFs | ||
|
||
beforeEach(function () { | ||
fakeFs = { | ||
writeFile: sinon.spy() | ||
} | ||
|
||
reporterModule = proxyquire('..', { | ||
fs: fakeFs | ||
}) | ||
}) | ||
|
||
beforeEach(function () { | ||
reporter = new reporterModule['reporter:junit'][1](fakeBaseReporterDecorator, fakeConfig, fakeLogger, fakeHelper) | ||
}) | ||
|
||
it('should ', function () { | ||
var fakeBrowser = { | ||
id: 'Android_4_1_2', | ||
name: 'Android', | ||
fullName: 'Android 4.1.2', | ||
lastResult: { | ||
error: false, | ||
total: 1, | ||
failed: 0, | ||
netTime: 10 * 1000 | ||
} | ||
} | ||
|
||
var fakeResult = { | ||
suite: [ | ||
'Sender', | ||
'using it', | ||
'get request' | ||
], | ||
description: 'should not fail', | ||
log: [] | ||
} | ||
|
||
reporter.onRunStart([ fakeBrowser ]) | ||
reporter.specSuccess(fakeBrowser, fakeResult) | ||
reporter.onBrowserComplete(fakeBrowser) | ||
reporter.onRunComplete() | ||
|
||
expect(fakeFs.writeFile).to.have.been.called | ||
|
||
var writtenXml = fakeFs.writeFile.firstCall.args[1] | ||
expect(writtenXml).to.have.string('testcase name="Sender using it get request should not fail"') | ||
}) | ||
}) |