* chore(deps-dev): bump prettier from 2.8.8 to 3.0.0 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.0.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * reformat all the things (prettier 3) * update tests to await calls to prettier.format() --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: chris48s <git@chris-shaw.dev>
150 lines
3.6 KiB
JavaScript
150 lines
3.6 KiB
JavaScript
import Joi from 'joi'
|
|
import { expect } from 'chai'
|
|
import sinon from 'sinon'
|
|
import BaseYamlService from './base-yaml.js'
|
|
|
|
const dummySchema = Joi.object({
|
|
requiredString: Joi.string().required(),
|
|
}).required()
|
|
|
|
class DummyYamlService extends BaseYamlService {
|
|
static category = 'cat'
|
|
static route = { base: 'foo' }
|
|
|
|
async handle() {
|
|
const { requiredString } = await this._requestYaml({
|
|
schema: dummySchema,
|
|
url: 'http://example.com/foo.yaml',
|
|
})
|
|
return { message: requiredString }
|
|
}
|
|
}
|
|
|
|
const expectedYaml = `
|
|
---
|
|
requiredString: some-string
|
|
`
|
|
|
|
const unexpectedYaml = `
|
|
---
|
|
unexpectedKey: some-string
|
|
`
|
|
|
|
const invalidYaml = `
|
|
---
|
|
foo: bar
|
|
foo: baz
|
|
`
|
|
|
|
describe('BaseYamlService', function () {
|
|
describe('Making requests', function () {
|
|
let requestFetcher
|
|
beforeEach(function () {
|
|
requestFetcher = sinon.stub().returns(
|
|
Promise.resolve({
|
|
buffer: expectedYaml,
|
|
res: { statusCode: 200 },
|
|
}),
|
|
)
|
|
})
|
|
|
|
it('invokes _requestFetcher', async function () {
|
|
await DummyYamlService.invoke(
|
|
{ requestFetcher },
|
|
{ handleInternalErrors: false },
|
|
)
|
|
|
|
expect(requestFetcher).to.have.been.calledOnceWith(
|
|
'http://example.com/foo.yaml',
|
|
{
|
|
headers: {
|
|
Accept:
|
|
'text/x-yaml, text/yaml, application/x-yaml, application/yaml, text/plain',
|
|
},
|
|
},
|
|
)
|
|
})
|
|
|
|
it('forwards options to _requestFetcher', async function () {
|
|
class WithOptions extends DummyYamlService {
|
|
async handle() {
|
|
const { requiredString } = await this._requestYaml({
|
|
schema: dummySchema,
|
|
url: 'http://example.com/foo.yaml',
|
|
options: { method: 'POST', searchParams: { queryParam: 123 } },
|
|
})
|
|
return { message: requiredString }
|
|
}
|
|
}
|
|
|
|
await WithOptions.invoke(
|
|
{ requestFetcher },
|
|
{ handleInternalErrors: false },
|
|
)
|
|
|
|
expect(requestFetcher).to.have.been.calledOnceWith(
|
|
'http://example.com/foo.yaml',
|
|
{
|
|
headers: {
|
|
Accept:
|
|
'text/x-yaml, text/yaml, application/x-yaml, application/yaml, text/plain',
|
|
},
|
|
method: 'POST',
|
|
searchParams: { queryParam: 123 },
|
|
},
|
|
)
|
|
})
|
|
})
|
|
|
|
describe('Making badges', function () {
|
|
it('handles valid yaml responses', async function () {
|
|
const requestFetcher = async () => ({
|
|
buffer: expectedYaml,
|
|
res: { statusCode: 200 },
|
|
})
|
|
expect(
|
|
await DummyYamlService.invoke(
|
|
{ requestFetcher },
|
|
{ handleInternalErrors: false },
|
|
),
|
|
).to.deep.equal({
|
|
message: 'some-string',
|
|
})
|
|
})
|
|
|
|
it('handles yaml responses which do not match the schema', async function () {
|
|
const requestFetcher = async () => ({
|
|
buffer: unexpectedYaml,
|
|
res: { statusCode: 200 },
|
|
})
|
|
expect(
|
|
await DummyYamlService.invoke(
|
|
{ requestFetcher },
|
|
{ handleInternalErrors: false },
|
|
),
|
|
).to.deep.equal({
|
|
isError: true,
|
|
color: 'lightgray',
|
|
message: 'invalid response data',
|
|
})
|
|
})
|
|
|
|
it('handles unparseable yaml responses', async function () {
|
|
const requestFetcher = async () => ({
|
|
buffer: invalidYaml,
|
|
res: { statusCode: 200 },
|
|
})
|
|
expect(
|
|
await DummyYamlService.invoke(
|
|
{ requestFetcher },
|
|
{ handleInternalErrors: false },
|
|
),
|
|
).to.deep.equal({
|
|
isError: true,
|
|
color: 'lightgray',
|
|
message: 'unparseable yaml response',
|
|
})
|
|
})
|
|
})
|
|
})
|