Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
mocha-swagger-tests
Advanced tools
Automatic validation of Swagger paths schemas and responses. Using mocha for pretty error outputting.
Supports swagger 1.2 only. Should support any REST api
var SwaggerTest = require('mocha-swagger-tests');
var app = require('../path/to/something/that/exposes/an/http/server');
var swaggerTest = new SwaggerTest({swaggerPath: '/docs.json'});
// - Optional
swaggerTest.customTest({
requestUrl: '/resource?test-with-query-parameter=1337',
path: '/resource',
method: 'get',
status: 200,
customTest: function (result) {
it('should be leet', function () {
expect(result).to.be('1337');
});
}
});
// - Optional
swaggerTest.before = function(done) {
// Do something to start the server, does not matter if sync or not
swaggerTest.setApp(app);
done();
};
// - Optional
swaggerTest.validParams = {
resourceId: '1337'
};
// - NOT Optional
swaggerTest.run();
new SwaggerTest(config)
swaggerPath
, the path to the swagger.json file. Default is /swagger.jsonSwaggerTest#customTest = function(request)
request
requestUrl
, the path (plus any query strings) to testpath
, the name of the specs for the path in the swagger.json filemethod
, which method to use (e.g. "get" or "post")status
, which status to expect. Can be used to test error responses toocustomTest
], additional testing of the result, other than the automatic schema validation (e.g. the number of items etc)SwaggerTest#validParams = {}
validParams
, a key-value map of valid values for path parameters. When
encountering a path like /resource/{id}, a property with the same name is
expected to be found in validParams
. This implementation is admittedly a bit
fragile.SwaggerTest#run(callback)
Prepare the tests.
SwaggerTest.run(callback)
Run mocha.
FAQs
Automatic validation of Swagger schemas and responses
We found that mocha-swagger-tests demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.