Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: v2 #3

Merged
merged 3 commits into from
Sep 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/FUNDING.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: metcoder95
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14.x, 16.x, 17.x]
node: [14.x, 16.x, 18.x]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v1
Expand All @@ -15,6 +15,4 @@ jobs:
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run lint:ci
- run: npm run test:ci
- run: npm run typescript
19 changes: 19 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Pre-Release
on:
push:
tags:
- 'v*.*.*-beta**'
- 'v*.*.*-rc**'

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
name: Pre-Release Creation
steps:
- uses: actions/checkout@v1
- uses: ncipollo/release-action@v1
with:
prerelease: true
bodyFile: "CHANGELOG.md"
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
name: Release Creation
steps:
- uses: actions/checkout@v1
- uses: ncipollo/release-action@v1
with:
bodyFile: "CHANGELOG.md"
token: ${{ secrets.GITHUB_TOKEN }}
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,16 @@ const Ajv = require('ajv');
const app = fastify();
const validator = new Ajv({});

app.register(splitValidator, { defaultValidator: validator });
await app.register(splitValidator, { defaultValidator: validator });
```

>**Note**:
> It is important to advice that with the new fastify@v4, all the route registration now happens asynchronously.
> This change translates in a way that if any plugin is meant to set logic into the `onRoute` hook for manipulating
> routes after registration, it is necessary to await until the plugin is fully loaded before proceeding with the next parts
> of your route definition. Otherwise, this can lead to non-deterministic behaviours when the plugin will not the expected
> effect on your fastify application.

**On Route**

- `schemaValidators`: an object with the HTTP parts as keys and the validators to be used for that part as values
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ function plugin (fastifyInstance, opts = {}, done) {
}

module.exports = fp(plugin, {
fastify: '>=3.24.1',
fastify: '>=4',
name: 'fastify-split-validator'
})
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
"author": "MetCoder95 <carlos.fuentes.rios.95@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.17.6",
"fastify": "^3.24.1",
"husky": "^7.0.2",
"@types/node": "^16.11.62",
"fastify": "^4.6.0",
"husky": "^7.0.4",
"proxyquire": "^2.1.3",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
Expand All @@ -41,8 +41,8 @@
"typescript": "^4.4"
},
"dependencies": {
"ajv": "^8.6.3",
"fastify-plugin": "^3.0.0"
"ajv": "^8.11.0",
"fastify-plugin": "^4.2.1"
},
"tsd": {
"directory": "test"
Expand Down
42 changes: 22 additions & 20 deletions test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ test('Should allow custom AJV instance for body', async t => {

const body = res.json()

t.equal(body.message, 'body must be array')
t.equal(body.message, 'body/msg must be array')
t.equal(
res.statusCode,
400,
Expand Down Expand Up @@ -147,7 +147,7 @@ test('Should allow custom AJV instance for params', async t => {

const body = res.json()

t.equal(body.message, 'params must be integer')
t.equal(body.message, 'params/msg must be integer')
t.equal(
res.statusCode,
400,
Expand Down Expand Up @@ -198,7 +198,7 @@ test('Should allow custom AJV instance for headers', async t => {
// TODO: set into documentation that it's possible the
// error formatter doesn't work as expected.
// Custom one should be provided
t.equal(body.message, 'headers must be integer')
t.equal(body.message, 'headers/x-type must be integer')
t.equal(
res.statusCode,
400,
Expand Down Expand Up @@ -261,7 +261,7 @@ test('Should work with referenced schemas (querystring)', async t => {

const body = res.json()

t.equal(body.message, 'querystring must be array')
t.equal(body.message, 'querystring/msg must be array')
t.equal(
res.statusCode,
400,
Expand Down Expand Up @@ -313,7 +313,7 @@ test('Should work with referenced schemas (params)', async t => {

const body = res.json()

t.equal(body.message, 'params must be integer')
t.equal(body.message, 'params/id must be integer')
t.equal(res.statusCode, 400, 'Should not coearce the string into integer')
} catch (err) {
t.error(err)
Expand Down Expand Up @@ -364,7 +364,7 @@ test('Should work with referenced schemas (headers)', async t => {

const body = res.json()

t.equal(body.message, 'headers must be integer')
t.equal(body.message, 'headers/x-id must be integer')
t.equal(res.statusCode, 400, 'Should not coearce the string into integer')
} catch (err) {
t.error(err)
Expand Down Expand Up @@ -417,7 +417,7 @@ test('Should work with referenced schemas (body)', async t => {

const body = res.json()

t.equal(body.message, 'body must be string')
t.equal(body.message, 'body/msg must be string')
t.equal(res.statusCode, 400, 'Should not coearce the string into integer')
} catch (err) {
t.error(err)
Expand Down Expand Up @@ -485,7 +485,7 @@ test('Should work with parent and same instance schemas', async t => {

const body = res.json()

t.equal(body.message, 'body must be string')
t.equal(body.message, 'body/msg must be string')
t.equal(res.statusCode, 400, 'Should not coearce the string into integer')
} catch (err) {
t.error(err)
Expand Down Expand Up @@ -543,7 +543,7 @@ test('Should work with parent schemas', async t => {

const body = res.json()

t.equal(body.message, 'body must be string')
t.equal(body.message, 'body/msg must be string')
t.equal(res.statusCode, 400, 'Should not coearce the string into integer')
} catch (err) {
t.error(err)
Expand Down Expand Up @@ -623,9 +623,9 @@ test('Should work with parent nested schemas', async t => {
})
])

t.equal(res1.json().message, 'querystring must be array')
t.equal(res1.json().message, 'querystring/msg must be array')
t.equal(res1.statusCode, 400, 'Should not coearce the string into array')
t.equal(res2.json().message, 'headers must be integer')
t.equal(res2.json().message, 'headers/x-another must be integer')
t.equal(res2.statusCode, 400, 'Should not coearce the string into integer')
} catch (err) {
t.error(err)
Expand Down Expand Up @@ -705,9 +705,9 @@ test('Should handle parsing to querystring (query)', async t => {
})
])

t.equal(res1.json().message, 'querystring must be array')
t.equal(res1.json().message, 'querystring/msg must be array')
t.equal(res1.statusCode, 400, 'Should not coearce the string into array')
t.equal(res2.json().message, 'headers must be integer')
t.equal(res2.json().message, 'headers/x-another must be integer')
t.equal(res2.statusCode, 400, 'Should not coearce the string into integer')
} catch (err) {
t.error(err)
Expand Down Expand Up @@ -784,7 +784,7 @@ test('Should use default plugin validator as fallback', async t => {
}
})

t.equal(res.json().message, 'querystring must be array')
t.equal(res.json().message, 'querystring/msg must be array')
t.equal(res.statusCode, 400, 'Should not coearce the string into array')
t.ok(compileCalled, 'Should have called the default Ajv instance')
} catch (err) {
Expand All @@ -807,6 +807,7 @@ test('Should always cache schema to default plugin validator', async t => {
}

headerAjv.compile = schema => {
console.log('called')
customCompileCalled = true
return headerDefaultCompile(schema)
}
Expand All @@ -829,13 +830,13 @@ test('Should always cache schema to default plugin validator', async t => {
}
})

server.register((instance, opts, done) => {
server.register(async (instance, opts, done) => {
instance.addSchema({
$id: 'another',
type: 'integer'
})

instance.register(proxiedPlugin, {})
await instance.register(proxiedPlugin, {})

instance.post(
'/',
Expand All @@ -862,8 +863,6 @@ test('Should always cache schema to default plugin validator', async t => {
reply.send({ noop: 'noop' })
}
)

done()
})

try {
Expand All @@ -872,10 +871,13 @@ test('Should always cache schema to default plugin validator', async t => {
url: '/',
query: {
msg: ['string']
},
headers: {
'x-another': 1
}
})

t.equal(res.json().message, 'querystring must be array')
t.equal(res.json().message, 'querystring/msg must be array')
t.equal(res.statusCode, 400, 'Should not coearce the string into array')
t.ok(compileCalled, 'Should have called the default Ajv instance')
t.ok(customCompileCalled, 'Should have called the custom Ajv instance')
Expand Down Expand Up @@ -948,7 +950,7 @@ test('Should use default provided validator as fallback', async t => {
}
})

t.equal(res.json().message, 'querystring must be array')
t.equal(res.json().message, 'querystring/msg must be array')
t.equal(res.statusCode, 400, 'Should not coearce the string into array')
t.ok(compileCalled, 'Should have called the default Ajv instance')
} catch (err) {
Expand Down