Files
shields/services/docker/docker-cloud-build.tester.js
Pierre-Yves B 25f8541e5b JSON format modernisation and _shields_test removal (#3272)
* Modernised JSON format and removed _shields_test style

* Added logoWidth and labelColor fields to JSON response

* Reinstated and updated comment

* Extended expectBadge to accept Joi schemas for all fields
2019-04-07 18:57:55 +01:00

61 lines
1.8 KiB
JavaScript

'use strict'
const { isBuildStatus } = require('../build-status')
const t = (module.exports = require('../tester').createServiceTester())
const { dockerBlue } = require('./docker-helpers')
t.create('docker cloud build status (valid, user)')
.get('/jrottenberg/ffmpeg.json')
.expectBadge({
label: 'docker build',
message: isBuildStatus,
})
t.create('docker cloud build status (not found)')
.get('/badges/not-a-real-repo.json')
.intercept(nock =>
nock('https://cloud.docker.com/')
.get(
`/api/build/v1/source?image=${encodeURIComponent(
'badges/not-a-real-repo'
)}`
)
.reply(404, { detail: 'Object not found' })
)
.expectBadge({ label: 'docker build', message: 'repo not found' })
t.create('docker cloud build status (passing)')
.get('/xenolf/lego.json')
.intercept(nock =>
nock('https://cloud.docker.com/')
.get(`/api/build/v1/source?image=${encodeURIComponent('xenolf/lego')}`)
.reply(200, { objects: [{ state: 'Success' }] })
)
.expectBadge({
label: 'docker build',
message: 'passing',
color: 'brightgreen',
})
t.create('docker cloud build status (failing)')
.get('/xenolf/lego.json')
.intercept(nock =>
nock('https://cloud.docker.com/')
.get(`/api/build/v1/source?image=${encodeURIComponent('xenolf/lego')}`)
.reply(200, { objects: [{ state: 'Failed' }] })
)
.expectBadge({ label: 'docker build', message: 'failing', color: 'red' })
t.create('docker cloud build status (building)')
.get('/xenolf/lego.json')
.intercept(nock =>
nock('https://cloud.docker.com/')
.get(`/api/build/v1/source?image=${encodeURIComponent('xenolf/lego')}`)
.reply(200, { objects: [{ state: 'Empty' }] })
)
.expectBadge({
label: 'docker build',
message: 'building',
color: `#${dockerBlue}`,
})