* Add drone build badge based on travis * Fix wrong mocked endpoint for done builder * Refactor service tester using helper method * Add missing failure status to red statuses * Remove extraneous invalid svg test from drone * Test on failure red status in build status spec * refactor(drone): use json service instead of svg * refactor(drone): remove status text and extraneous build path in test * refactor(drone): allow defining self-hosted drone instances * fix(drone): use proper urls in drone examples * fix(drone): add drone token authorization for self-hosted instances * refactor(drone): call render build status badge directly instead of render * refactor(drone): use server query parameter for self-hosted instances * fix(drone): separate url and query params in example * fix(drone): use actual build status message in examples * fix(drone): add missing message for status code 401 Co-Authored-By: byCedric <me@bycedric.com> * refactor(drone): remove color from drone tests * refactor(drone): remove extraneous comments from drone tests * refactor(drone): remove unused static preview method * refactor(drone): remove unused static render method * refactor(drone): reuse render build status badge helper in static previews * fix(drone): test inaccessible repos on new message
90 lines
2.5 KiB
JavaScript
90 lines
2.5 KiB
JavaScript
'use strict'
|
|
|
|
const { expect } = require('chai')
|
|
const { test, given, forCases } = require('sazerac')
|
|
const { renderBuildStatusBadge } = require('./build-status')
|
|
|
|
test(renderBuildStatusBadge, () => {
|
|
given({ label: 'build', status: 'passed' }).expect({
|
|
label: 'build',
|
|
message: 'passing',
|
|
color: 'brightgreen',
|
|
})
|
|
given({ label: 'build', status: 'success' }).expect({
|
|
label: 'build',
|
|
message: 'passing',
|
|
color: 'brightgreen',
|
|
})
|
|
given({ label: 'build', status: 'partially succeeded' }).expect({
|
|
label: 'build',
|
|
message: 'passing',
|
|
color: 'orange',
|
|
})
|
|
given({ label: 'build', status: 'failed' }).expect({
|
|
label: 'build',
|
|
message: 'failing',
|
|
color: 'red',
|
|
})
|
|
given({ label: 'build', status: 'error' }).expect({
|
|
label: 'build',
|
|
message: 'error',
|
|
color: 'red',
|
|
})
|
|
})
|
|
|
|
test(renderBuildStatusBadge, () => {
|
|
forCases([
|
|
given({ status: 'fixed' }),
|
|
given({ status: 'passed' }),
|
|
given({ status: 'passing' }),
|
|
given({ status: 'succeeded' }),
|
|
given({ status: 'success' }),
|
|
given({ status: 'successful' }),
|
|
]).assert('should be brightgreen', b =>
|
|
expect(b).to.include({ color: 'brightgreen' })
|
|
)
|
|
})
|
|
|
|
test(renderBuildStatusBadge, () => {
|
|
forCases([
|
|
given({ status: 'partially succeeded' }),
|
|
given({ status: 'timeout' }),
|
|
given({ status: 'unstable' }),
|
|
]).assert('should be orange', b => expect(b).to.include({ color: 'orange' }))
|
|
})
|
|
|
|
test(renderBuildStatusBadge, () => {
|
|
forCases([
|
|
given({ status: 'error' }),
|
|
given({ status: 'failed' }),
|
|
given({ status: 'failing' }),
|
|
given({ status: 'failure' }),
|
|
given({ status: 'infrastructure_failure' }),
|
|
]).assert('should be red', b => expect(b).to.include({ color: 'red' }))
|
|
})
|
|
|
|
test(renderBuildStatusBadge, () => {
|
|
forCases([
|
|
given({ status: 'building' }),
|
|
given({ status: 'canceled' }),
|
|
given({ status: 'cancelled' }),
|
|
given({ status: 'expired' }),
|
|
given({ status: 'initiated' }),
|
|
given({ status: 'no tests' }),
|
|
given({ status: 'not built' }),
|
|
given({ status: 'not run' }),
|
|
given({ status: 'pending' }),
|
|
given({ status: 'processing' }),
|
|
given({ status: 'queued' }),
|
|
given({ status: 'running' }),
|
|
given({ status: 'scheduled' }),
|
|
given({ status: 'skipped' }),
|
|
given({ status: 'starting' }),
|
|
given({ status: 'stopped' }),
|
|
given({ status: 'testing' }),
|
|
given({ status: 'waiting' }),
|
|
]).assert('should have undefined color', b =>
|
|
expect(b).to.include({ color: undefined })
|
|
)
|
|
})
|