
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
SOAP API test automation framework
Teppa is simple SOAP API testing framework build using mocha
Get Teppa framework as dependency to your project
npm i teppa -D
Add mocha to scripts as test to package.json
{
"name": "my-awesome-package",
"version": "1.0.0",
"scripts": {
"test": "mocha"
},
"devDependencies": {
"teppa": "^1.3.0"
}
}
To run test use
npm test
To run specific test file you can use
npm test test.js
For more configuration options use https://mochajs.org
Tip: to avoid timeout issue increase default mocha timeout: "test": "mocha --timeout 60000"
(All examples can be found in https://github.com/atkocaitis/teppa/tree/master/examples)
First you need to load teppa, assertion library (like chai) and set some test configuration. Example of online Soap API calculator:
const teppa = require('../lib/teppa.js'),
expect = require('chai').expect;
global.config = {
url: 'http://www.dneonline.com/calculator.asmx',
headers: { 'Content-Type': 'application/soap+xml'},
requestPath: './examples/xml/request/',
responsePath: './examples/xml/response/',
log: false
};
First you need to create new test instance for each method. Test instance will automatically load method request and expected response from requestPath, responsePath. After creating test instance you can use post() method to make a call and check response:
var test = new teppa('calculator');
it("Loading request from file", function() {
return test
.post()
.then(function(response) {
expect(response.body).to.include('<AddResult>2</AddResult>');
});
});
If you need to change default request you can use updateRequest() to do that:
it("Updating request after load", function() {
return test
.updateRequest('tem:Add', `<tem:Add>
<tem:intA>2</tem:intA>
<tem:intB>2</tem:intB>
</tem:Add>`)
.post()
.then(function(response) {
expect(response.body).to.include('<AddResult>4</AddResult>');
});
});
To make assertion using expected response you can use actual (response.bodyJs) and expected (test.response) response which will be converted from xml to javascript object for better comparison in javascript:
it("Loading expected response from file", function() {
return test
.updateRequest('tem:intA', `<tem:intA>1</tem:intA>`)
.post()
.then(function(response) {
expect(response.bodyJs).to.deep.equal(test.response);
});
});
FAQs
SOAP API testing framework
We found that teppa 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.