mirror of
https://github.com/badges/shields.git
synced 2025-04-18 19:44:04 +03:00
77 lines
2.2 KiB
JavaScript
77 lines
2.2 KiB
JavaScript
import Joi from 'joi'
|
|
import { isIntegerPercentage } from '../test-validators.js'
|
|
import { createServiceTester } from '../tester.js'
|
|
export const t = await createServiceTester()
|
|
|
|
// Examples for this service can be found through the explore page:
|
|
// https://codeclimate.com/explore
|
|
|
|
t.create('test coverage percentage')
|
|
.get('/coverage/codeclimate/codeclimate.json')
|
|
.expectBadge({
|
|
label: 'coverage',
|
|
message: isIntegerPercentage,
|
|
})
|
|
|
|
t.create('test coverage letter')
|
|
.get('/coverage-letter/codeclimate/codeclimate.json')
|
|
.expectBadge({
|
|
label: 'coverage',
|
|
message: Joi.equal('A', 'B', 'C', 'D', 'E', 'F'),
|
|
})
|
|
|
|
t.create('test coverage when outer user repos query returns multiple items')
|
|
.get('/coverage/codeclimate/codeclimate.json')
|
|
.intercept(nock =>
|
|
nock('https://api.codeclimate.com', { allowUnmocked: true })
|
|
.get('/v1/repos?github_slug=codeclimate%2Fcodeclimate')
|
|
.reply(200, {
|
|
data: [
|
|
{
|
|
id: '558479d6e30ba034120008a8',
|
|
relationships: {
|
|
latest_default_branch_snapshot: {
|
|
data: null,
|
|
},
|
|
latest_default_branch_test_report: {
|
|
data: null,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
id: '558479d6e30ba034120008a9',
|
|
relationships: {
|
|
latest_default_branch_snapshot: {
|
|
data: null,
|
|
},
|
|
latest_default_branch_test_report: {
|
|
data: {
|
|
id: '62110434a7160b00010b4b59',
|
|
type: 'test_reports',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
})
|
|
)
|
|
.networkOn() // Combined with allowUnmocked: true, this allows the inner test reports query to go through.
|
|
.expectBadge({
|
|
label: 'coverage',
|
|
message: isIntegerPercentage,
|
|
})
|
|
|
|
t.create('test coverage percentage for non-existent repo')
|
|
.get('/coverage/unknown/unknown.json')
|
|
.expectBadge({
|
|
label: 'coverage',
|
|
message: 'repo not found',
|
|
})
|
|
|
|
t.create('test coverage percentage for repo without test reports')
|
|
.get('/coverage/angular/angular.json')
|
|
.expectBadge({
|
|
label: 'coverage',
|
|
message: 'test report not found',
|
|
})
|