
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
@ln-maf/api
Advanced tools
This module is created to allow other projects to easily perform API requests, utilizing a set of steps.
This module is dependent on the following npm modules:
Install by running npm i @ln-maf/api
Add a new step file in the features folder with the following code:
require('@ln-maf/api')
When api request from
{jsonObject}is performed
Performs a request based on the json file and given values. An example json file would be:
{
"api": "driver/users/1",
"method": "POST",
"headers": {
"Accept": "application/json",
"X-Api-Service-Version": "2.0",
"Content-Type": "application/json",
"X-AliasRequired": false
},
"body": {
"clientNumber" : "111",
"email": "1@1.com"
"mobilePhone":"1"
}
}
After the request is performed, the results will be stored in ${lastRun}
consistent with the global cucumber testing standard, and in ${response}
.
This can be accessed in other tests following this standard with the template literal ${lastRun}
or ${response}
.
When api request is performed
Performs a request based on the global variables set. The global variables are listed above.
When perform api request: {docString}
Performs using a doc string instead of a file. Please see When api request {string} is performed
Example:
When perform api request:
"""
{
"url" : "http://google.com",
"method": "GET"
}
"""
The request supports and additional body type of: formBody. This supports arrays(untested) and will append it to element + [].
As of now the only portion of this that is tested and is not included in this CI is the file. Hopefully this will be tested in more detail soon.
An example would be:
{
"api": "/driver/upload?ft=1&fn=${outputFilename}",
"headers": {
"X-Api-Key": "${apiKey}",
"X-File-Format": "DECRYPTED",
"X-File-Format-Version": "4.0",
"accept": "application/json",
"accept-encoding": "gzip",
"accept-language": "en-US,en;q=0.9",
"authorization": "Bearer ${a_t}",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"x-api-service-version": "1.0"
},
"formBody": {
"file": {
"type": "file",
"fileName": "${outputFilename}"
},
"stringParam": "string",
"numParam": 3,
"blobParam": {
"type": "base64blob",
"base64blob": "SEVMTE8gV09STEQ="
},
"stringArray": ["hello", "world"],
"fileArray": [
{
"type": "file",
"fileName": "${outputFilename}"
},
{
"type": "file",
"fileName": "${outputFilename2}"
}
]
},
"method": "POST"
}
Then the status is ok
Makes sure that response.status
is between 200 and 299.
Then the status is not ok
Makes sure that response.status
is not between 200 and 299.
Then the status is {int}
Makes sure that response.status
is equal to the integer specified.
FAQs
MAF module providing API steps
The npm package @ln-maf/api receives a total of 1,127 weekly downloads. As such, @ln-maf/api popularity was classified as popular.
We found that @ln-maf/api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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 Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.