Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
curl -i <url> | alola | fx .
curl -i
and cli JSON parser tool of your choice like jq
or fx
# npm install -g alola
# or
# npx alola (recommended)
curl -i <url> | npx alola [assertions]
curl -i https://ewqfsixnkkhp3syjy65heuhkou0dogwr.lambda-url.eu-central-1.on.aws/ \
| npx alola
# output
{
"redirects": [],
"protocol": "HTTP/1.1",
"status": 200,
"statusText": "OK",
"headers": {
"date": "Sun, 10 Jul 2022 08:30:19 GMT",
"content-type": "application/json",
"content-length": "68",
"connection": "keep-alive",
"x-amzn-requestid": "6f38be71-8c2a-4106-8bd5-6a2a0726d831",
"x-amzn-trace-id": "root=1-62ca8e1b-3fa47e01777132441c03e3de;sampled=0"
},
"body": {
"date": 1657441819664,
"foobar": 42,
"author": "balazs4",
"name": "alola"
}
}
# follows redirections
curl -i https://ewqfsixnkkhp3syjy65heuhkou0dogwr.lambda-url.eu-central-1.on.aws/ --follow \
| npx alola
# assertion
curl -i https://ewqfsixnkkhp3syjy65heuhkou0dogwr.lambda-url.eu-central-1.on.aws/ \
| npx alola \
'status should be 200' \
'headers.content-type should match json'\
'body.author should be balazs4'
# silent assertion
curl -i https://ewqfsixnkkhp3syjy65heuhkou0dogwr.lambda-url.eu-central-1.on.aws/ \
| npx alola 'status should be 200' 2>/dev/null
# assertion only
curl -i https://ewqfsixnkkhp3syjy65heuhkou0dogwr.lambda-url.eu-central-1.on.aws/ \
| npx alola 'status should be 200' 1>/dev/null
# json assertion output
curl -i https://ewqfsixnkkhp3syjy65heuhkou0dogwr.lambda-url.eu-central-1.on.aws/ \
| ALOLA_REPORT=json npx alola 'status should be 200' 1>/dev/null
# middleware
curl -i https://ewqfsixnkkhp3syjy65heuhkou0dogwr.lambda-url.eu-central-1.on.aws/ \
| npx alola 'status should be 200' 'headers.content-type should match json' \
| fx 'res => res.body.name + " by " + res.body.author'
<key> should be <expected-value>
<key> should not be <expected-value>
<key> should match <expected-regex>
<key> should not match <expected-regex>
You can configure alola
with the following environment variables:
Environment variable | Description | Default value | Possible values |
---|---|---|---|
ALOLA_REPORT | result reporter | text | text,json |
ALOLA_CUSTOM | any resolvable path to the custom assertions | ./.alola.js |
balazs4 - https://twitter.com/balazs4
FAQs
curl -i | alola
The npm package alola receives a total of 60 weekly downloads. As such, alola popularity was classified as not popular.
We found that alola 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.