A Playwright plugin for API schema validation against plain JSON schemas, Swagger schema documents. Built on the robust core-ajv-schema-validator plugin and powered by the Ajv JSON Schema Validator, it delivers results in a clear, user-friendly format, simplifying the process of identifying and addressing schema issues.
-
Function
validateSchema()
to report JSON Schema errors in the response obtained from network requests. -
Uses the core-ajv-schema-validator plugin, which leverages the Ajv JSON Schema Validator as its engine .
-
Supports schemas provided as plain JSON schema, OpenAPI 3 schema document and Swagger 2 schema document.
-
Provides a user-friendly view of schema errors and mismatches between the validated data and the JSON schema, clearly highlighting where each validation error occurred and the exact reason for the mismatch:
- Number of schema errors.
- Full list of schema errors as provided by Ajv.
- A nested tree view of the validated data, clearly indicating the errors and where they occurred in an easy-to-understand format.
-
Environment variables:
DISABLE_SCHEMA_VALIDATION
to disable schema validation in your tests even when functionvalidateSchema()
is present.LOG_API_UI
to enable the display of API call details in Playwright UI and Trace Viewer .LOG_API_REPORT
to enable the display of API call details in HTML Report .
-
⭐⭐⭐⭐⭐ Integrates seamlessly with the
pw-api-plugin
but also functions independently with standard Playwright API requests.
- playwright-ajv-schema-validator
- MAIN FEATURES
- TABLE OF CONTENT
- ABOUT JSON SCHEMAS AND AJV JSON SCHEMA VALIDATOR
- INSTALLATION
- COMPATIBILITY
- CONFIGURATION
- API Reference
- USAGE
- PRESENTATION OF RESULTS
- Schema Validation Pass
- Schema Validation Fail Using
pw-api-plugin
- Schema Validation Fail Using Playwright Standard API
request
- Schema Validation Fails with Custom Styles Used in your Tests
- Disable Schema Validation
- Attach Schema Validation Failure Details in HTML Report
- Schema Validation Details in Trace Viewer
- LICENSE
- CONTRIBUTING
- CHANGELOG
JSON Schema is a hierarchical, declarative language that describes and validates JSON data.
The OpenAPI Specification (formerly Swagger Specification) are schema documents to describe your entire API (in JSON format or XML format). So a schema document will contain multiple schemas, one for each supported combination of Endpoint - Method - Expected Response Status (also called path) by that API.
AJV, or Another JSON Schema Validator, is a JavaScript library that validates data objects against a JSON Schema structure.
It was chosen as the core engine of the playwright-ajv-schema-validator
plugin because of its versatility, speed, capabilities, continuous maintenance, and excellent documentation. For more information on Ajv, visit the Ajv official website.
Ajv supports validation of the following schema formats: JSON Schema, OpenAPI 3 specification, and Swagger 2 specification. However, Ajv needs to be provided with the specific schema to be validated for an endpoint, method, and expected response; it cannot process a full OpenAPI 3.0.1 or Swagger 2.0 schema document by itself.
The playwright-ajv-schema-validator
plugin simplifies this by obtaining the correct schema definition for the endpoint you want to test. You just need to provide the full schema document (OpenAPI or Swagger) and the path to the schema definition of the service you want to validate for your API (Endpoint - Method - Expected Response Status).
Note: The Ajv instance used in this plugin (
playwright-ajv-schema-validator
) is configured with the options{ allErrors: true, strict: false }
to display all validation errors and disable strict mode.
npm install -D playwright-ajv-schema-validator
- Ajv 8.16.0 or higher
- ajv-formats 3.0.1 or higher
-
Add the following lineto your test file:
import { validateSchema } from 'playwright-ajv-schema-validator';
Validates the response body against a given schema. Note that the function already asserts the validity of the schema, so there is no need to add additional assertions on the results.
-
fixtures
(required)- Type:
object
- Description: An object containing test fixtures, such as the page object:
{ page }
.
- Type:
-
data
(required)- Type:
object
- Description: The JSON data to validate against the schema.
- Type:
-
schema
(required)- Type:
any
- Description: The schema to validate against. Supported formats include:
- JSON Schema
- OpenAPI 3 specification document
- Swagger 2 specification document See the Ajv JSON Schema documentation for more information.
- Type:
-
path
(optional)- Type:
object
- Description: The path object to the schema definition in a Swagger or OpenAPI document. Not required if the schema is a plain JSON schema.
path.endpoint
(required ifpath
is provided)- Type:
string
- Description: The endpoint path in the Swagger or OpenAPI document.
- Type:
path.method
(optional)- Type:
string
- Default:
"GET"
- Description: The HTTP method (e.g.,
GET
,POST
) of the API request.
- Type:
path.status
(optional)- Type:
number
- Default:
200
- Description: The expected status code of the API response.
- Type:
- Type:
-
issuesStyles
(optional)- Type:
object
- Description: An optional object to override the default icons and HEX colors used to flag schema issues.
issuesStyles.iconPropertyError
(optional)- Type:
string
- Description: Custom icon to flag property errors.
- Type:
issuesStyles.colorPropertyError
(optional)- Type:
string
- Description: Custom HEX color to flag property errors.
- Type:
issuesStyles.iconPropertyMissing
(optional)- Type:
string
- Description: Custom icon to indicate missing properties.
- Type:
issuesStyles.colorPropertyMissing
(optional)- Type:
string
- Description: Custom HEX color to indicate missing properties.
- Type:
- Type:
- Type:
Promise<object>
- Description: A Promise resolving to an object containing the validation results:
errors
- Type:
array
- Description: An array of validation errors as provided by Ajv, or
null
if the data is valid against the schema.
- Type:
dataMismatches
- Type:
object
- Description: The original response data with all schema mismatches directly flagged.
- Type:
Example providing an OpenAPI 3.0.1 or Swagger 2.0 schema documents, a path to the schema definition, and issuesStyles:
const issuesStyles = {
iconPropertyError: '☣️',
colorPropertyError: '#8B8000',
iconPropertyMissing: '⛔',
colorPropertyMissing: '#FF0000'
}
const data = response.body
const validationResult = await validateSchema({ page }, data,
schemaDoc, { endpoint: '/api/resource', method: 'POST', status: 201},
issuesStyles
);
console.log(validationResult.errors, validationResult.dataMismatches);
⭐⭐⭐⭐⭐ If you are using the Playwright
pw-api-plugin
in your API tests to display API call details, theplaywright-ajv-schema-validation
plugin will automatically detect and display schema errors directly alongside the details.
-
To disable schema validation completely even when the
validateSchema()
function is present in the test, set the environment variableDISABLE_SCHEMA_VALIDATION
totrue
. By default, schema validation is enabled. -
When the environment variable
LOG_API_UI
is set to"false"
, the results of the schema validation are NOT displayed in the Playwright UI and Trace Viewer in a user-friendly format. By default, these results are shown.
This environment variable
LOG_API_UI
is also shared with the Playwrightpw-api-plugin
.
- If the environment variable
LOG_API_REPORT
is set to"true"
, the dresults of the schema validation are included as attachments in the HTML Report. By default, these results are not attached.
This environment variable
LOG_API_REPORT
is also shared with the Playwrightpw-api-plugin
.
In PowerShell (Note: by default LOG_API_UI is already "true"
):
$env:DISABLE_SCHEMA_VALIDATION="true"
$env:LOG_API_UI="true"
$env:LOG_API_REPORT="true"
npx playwright test --ui
In Bash:
DISABLE_SCHEMA_VALIDATION="true" LOG_API_UI="true" LOG_API_REPORT="true" npx playwright test --ui
In Batch
set DISABLE_SCHEMA_VALIDATION="true"
set LOG_API_UI="true"
set LOG_API_REPORT="true"
npx playwright test --ui
For more information, read the official documentation on Passing Environment Variables.
import { expect } from '@playwright/test';
import { pwApi, test } from 'pw-api-plugin';
import { validateSchema } from 'playwright-ajv-schema-validator';
// Swagger 2.0 Schema Document for the API under test
import petStoreSwagger from '../tests-data/schemas/petstore-swagger.json';
test.describe('Petstore API', () => {
const baseUrl = 'https://petstore.swagger.io/v2';
test('Should validate schema of POST "/store/order" endpoint ', async ({ request, page }) => {
// EXAMPLE POST 1 (PASS)
const requestBody1 = {
"id": 0,
"petId": 0,
"quantity": 0,
"shipDate": "2024-01-01T00:57:29.231Z",
"status": "placed",
"complete": false
}
const responsePost1 = await pwApi.post({ request, page }, `${baseUrl}/store/order`,
{
data: requestBody1,
headers: {
'Content-type': 'application/json; charset=UTF-8',
},
}
);
expect(responsePost1.status()).toBe(200)
const responseBodyPost1 = await responsePost1.json()
await validateSchema({ page }, responseBodyPost1, petStoreSwagger, { endpoint: '/store/order', method: 'post', status: 200 });
// EXAMPLE POST 2 (FAIL: "status" not a valid value & "shipDate" is missing)
const requestBody2 = {
"id": 0,
"petId": 1,
"quantity": 11,
"status": "unknown",
"complete": false
}
const responsePost2 = await pwApi.post({ request, page }, `${baseUrl}/store/order`,
{
data: requestBody2,
headers: {
'Content-type': 'application/json; charset=UTF-8',
},
}
);
expect(responsePost2.status()).toBe(200)
const responseBodyPost2 = await responsePost2.json()
await validateSchema({ page }, responseBodyPost2, petStoreSwagger, { endpoint: '/store/order', method: 'post', status: 200 });
})
})
import { expect } from '@playwright/test';
import { axiosApi, test } from 'pw-api-plugin';
import { validateSchema } from 'playwright-ajv-schema-validator';
// Swagger 2.0 Schema Document for the API under test
import petStoreSwagger from '../tests-data/schemas/petstore-swagger.json';
test.describe('Petstore API', () => {
const baseUrl = 'https://petstore.swagger.io/v2';
test('Should validate schema of POST "/store/order" endpoint ', async ({ request, page }) => {
// EXAMPLE POST 1 (PASS)
const requestBody1 = {
"id": 0,
"petId": 0,
"quantity": 0,
"shipDate": "2024-01-01T00:57:29.231Z",
"status": "placed",
"complete": false
}
const responsePost1 = await axiosApi.post({ page }, `${baseUrl}/store/order`,
requestBody1,
{
headers: {
'Content-type': 'application/json; charset=UTF-8',
},
}
);
expect(responsePost1.status).toBe(200)
const responseBodyPost1 = await responsePost1.data
await validateSchema({ page }, responseBodyPost1, petStoreSwagger, { endpoint: '/store/order', method: 'post', status: 200 });
// EXAMPLE POST 2 (FAIL: "status" not a valid value & "shipDate" is missing)
const requestBody2 = {
"id": 0,
"petId": 1,
"quantity": 11,
"status": "unknown",
"complete": false
}
const responsePost2 = await axiosApi.post({ page }, `${baseUrl}/store/order`,
requestBody2,
{
headers: {
'Content-type': 'application/json; charset=UTF-8',
},
}
);
expect(responsePost2.status).toBe(200)
const responseBodyPost2 = await responsePost2.data
await validateSchema({ page }, responseBodyPost2, petStoreSwagger, { endpoint: '/store/order', method: 'post', status: 200 });
})
})
import { expect } from '@playwright/test';
import { pwApi, test } from 'pw-api-plugin';
import { validateSchema } from 'playwright-ajv-schema-validator';
// Swagger 2.0 Schema Document for the API under test
import petStoreSwagger from '../tests-data/schemas/petstore-swagger.json';
test.describe('Petstore API', () => {
const baseUrl = 'https://petstore.swagger.io/v2';
test('Should validate schema of POST "/store/order" endpoint ', async ({ request, page }) => {
// EXAMPLE POST 1 (PASS)
const requestBody1 = {
"id": 0,
"petId": 0,
"quantity": 0,
"shipDate": "2024-01-01T00:57:29.231Z",
"status": "placed",
"complete": false
}
const responsePost1 = await request.post(`${baseUrl}/store/order`,
{
data: requestBody1,
headers: {
'Content-type': 'application/json; charset=UTF-8',
},
}
);
expect(responsePost1.status()).toBe(200)
const responseBodyPost1 = await responsePost1.json()
await validateSchema({ page }, responseBodyPost1, petStoreSwagger, { endpoint: '/store/order', method: 'post', status: 200 });
// EXAMPLE POST 2 (FAIL: "status" not a valid value & "shipDate" is missing)
const requestBody2 = {
"id": 0,
"petId": 1,
"quantity": 11,
"status": "unknown",
"complete": false
}
const responsePost2 = await request.post(`${baseUrl}/store/order`,
{
data: requestBody2,
headers: {
'Content-type': 'application/json; charset=UTF-8',
},
}
);
expect(responsePost2.status()).toBe(200)
const responseBodyPost2 = await responsePost2.json()
await validateSchema({ page }, responseBodyPost2, petStoreSwagger, { endpoint: '/store/order', method: 'post', status: 200 });
})
})
Setting environment variable DISABLE_SCHEMA_VALIDATION
to "true"
.
Setting environment variable LOG_API_REPORT
to "true"
.
Executing command npx playwright test --trace on
.
Schema Validation Details in Trace Viewer - Using pw-api-plugin.
Schema Validation Details in Trace Viewer - Using Playwright Standard API request.
This project is licensed under the MIT License. See the LICENSE file for more details.
First off, thanks for taking the time to contribute!
To contribute, please follow the best practices promoted by GitHub on the Contributing to a project page.
And if you like the project but just don't have the time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about:
- Star the project
- Promote it on social media
- Refer this project in your project's readme
- Mention the project at local meetups and tell your friends/colleagues
- Buying me a coffee or contributing to a training session, so I can keep learning and sharing cool stuff with all of you.
Thank you for your support!
- Use of pw-api-plugin v2.0.2.
- Fix hover information for public functions.
- Fix @types/node dependencies and use target "es2017".
- Initial release.