mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-15 13:38:43 +03:00
165 lines
4.4 KiB
CoffeeScript
165 lines
4.4 KiB
CoffeeScript
|
$ = require 'jquery'
|
||
|
{View, $$} = require 'space-pen'
|
||
|
|
||
|
module.exports =
|
||
|
class AtomReporter extends View
|
||
|
@content: ->
|
||
|
@div id: 'HTMLReporter', class: 'jasmine_reporter', =>
|
||
|
@div outlet: 'specPopup', class: "spec-popup"
|
||
|
@div outlet: "suites", class: 'cool'
|
||
|
@ul outlet: "symbolSummary", class: 'symbolSummary'
|
||
|
@div outlet: "status", class: 'status', =>
|
||
|
@div outlet: "time", class: 'time'
|
||
|
@div outlet: "specCount", class: 'spec-count'
|
||
|
@div outlet: "message", class: 'message'
|
||
|
@div outlet: "results", class: 'results'
|
||
|
|
||
|
startedAt: null
|
||
|
runningSpecCount: 0
|
||
|
completeSpecCount: 0
|
||
|
passedCount: 0
|
||
|
failedCount: 0
|
||
|
skippedCount: 0
|
||
|
totalSpecCount: 0
|
||
|
@timeoutId: 0
|
||
|
|
||
|
reportRunnerStarting: (runner) ->
|
||
|
$(document).on "mouseover", ".spec-summary", ({srcElement}) =>
|
||
|
element = $(srcElement)
|
||
|
description = element.data("description")
|
||
|
return unless description
|
||
|
|
||
|
clearTimeout @timeoutId if @timeoutId?
|
||
|
@specPopup.show()
|
||
|
@specPopup.text description
|
||
|
{left, top} = element.offset()
|
||
|
left += 20
|
||
|
top += 20
|
||
|
@specPopup.offset({left, top})
|
||
|
@timeoutId = setTimeout((=> @specPopup.hide()), 3000)
|
||
|
|
||
|
@startedAt = new Date()
|
||
|
specs = runner.specs()
|
||
|
@totalSpecCount = specs.length
|
||
|
@addSpecs(specs)
|
||
|
$(document.body).append this
|
||
|
|
||
|
reportRunnerResults: (runner) ->
|
||
|
if @failedCount == 0
|
||
|
@message.text "Success!"
|
||
|
else
|
||
|
@message.text "Game Over"
|
||
|
|
||
|
reportSuiteResults: (suite) ->
|
||
|
|
||
|
reportSpecResults: (spec) ->
|
||
|
@completeSpecCount++
|
||
|
@specComplete(spec)
|
||
|
@updateStatusView(spec)
|
||
|
|
||
|
reportSpecStarting: (spec) ->
|
||
|
@specStarted(spec)
|
||
|
|
||
|
specFilter: (spec) ->
|
||
|
globalFocusPriority = jasmine.getEnv().focusPriority
|
||
|
parent = spec.parentSuite ? spec.suite
|
||
|
|
||
|
if !globalFocusPriority
|
||
|
true
|
||
|
else if spec.focusPriority >= globalFocusPriority
|
||
|
true
|
||
|
else if not parent
|
||
|
false
|
||
|
else
|
||
|
@specFilter(parent)
|
||
|
|
||
|
updateStatusView: (spec) ->
|
||
|
if @failedCount > 0
|
||
|
@status.addClass('failed') unless @status.hasClass('failed')
|
||
|
|
||
|
specCount = "#{@completeSpecCount}/#{@totalSpecCount}"
|
||
|
specCount += " (skipping #{@skippedCount})" if @skippedCount
|
||
|
@specCount.text specCount
|
||
|
|
||
|
rootSuite = spec.suite
|
||
|
rootSuite = rootSuite.parentSuite while rootSuite.parentSuite
|
||
|
@message.text rootSuite.description
|
||
|
|
||
|
@time.text ((new Date().getTime() - @startedAt.getTime()) / 1000) + "s"
|
||
|
|
||
|
addSpecs: (specs) ->
|
||
|
for spec in specs
|
||
|
symbol = $$ -> @li class: "spec-summary pending spec-summary-#{spec.id}"
|
||
|
@symbolSummary.append symbol
|
||
|
|
||
|
specStarted: (spec) ->
|
||
|
@runningSpecCount++
|
||
|
|
||
|
specComplete: (spec) ->
|
||
|
specSummaryElement = $(".spec-summary-#{spec.id}")
|
||
|
specSummaryElement.removeClass('pending')
|
||
|
specSummaryElement.data("description", spec.getFullName())
|
||
|
|
||
|
results = spec.results()
|
||
|
if results.skipped
|
||
|
specSummaryElement.addClass("skipped")
|
||
|
@skippedCount++
|
||
|
else if results.passed()
|
||
|
specSummaryElement.addClass("passed")
|
||
|
@passedCount++
|
||
|
else
|
||
|
specSummaryElement.addClass("failed")
|
||
|
|
||
|
specView = new SpecResultView(spec)
|
||
|
specView.attach()
|
||
|
@failedCount++
|
||
|
|
||
|
class SuiteResultView extends View
|
||
|
@content: ->
|
||
|
@div class: 'suite', =>
|
||
|
@div outlet: 'description', class: 'description'
|
||
|
|
||
|
|
||
|
suite: null
|
||
|
|
||
|
initialize: (@suite) ->
|
||
|
@addClass("suite-view-#{@suite.id}")
|
||
|
@description.html @suite.description
|
||
|
|
||
|
attach: ->
|
||
|
(@parentSuiteView() or $('.results')).append this
|
||
|
|
||
|
parentSuiteView: ->
|
||
|
return unless @suite.parentSuite
|
||
|
|
||
|
if not suiteView = $(".suite-view-#{@suite.parentSuite.id}").view()
|
||
|
suiteView = new SuiteResultView(@suite.parentSuite)
|
||
|
suiteView.attach()
|
||
|
|
||
|
suiteView
|
||
|
|
||
|
class SpecResultView extends View
|
||
|
@content: ->
|
||
|
@div class: 'spec', =>
|
||
|
@div outlet: 'description', class: 'description'
|
||
|
|
||
|
spec: null
|
||
|
|
||
|
initialize: (@spec) ->
|
||
|
@addClass("spec-view-#{@spec.id}")
|
||
|
@description.html @spec.description
|
||
|
|
||
|
for result in @spec.results().getItems() when not result.passed()
|
||
|
@append $$ -> @div result.message, class: 'resultMessage fail'
|
||
|
@append $$ -> @div result.trace.stack, class: 'stackTrace' if result.trace.stack
|
||
|
|
||
|
attach: ->
|
||
|
@parentSuiteView().append this
|
||
|
|
||
|
parentSuiteView: ->
|
||
|
if not suiteView = $(".suite-view-#{@spec.suite.id}").view()
|
||
|
suiteView = new SuiteResultView(@spec.suite)
|
||
|
suiteView.attach()
|
||
|
|
||
|
suiteView
|