779 B
779 B
Testing
How to test gorush with http request?
download bat tool
Download cURL-like tool for humans.
testing
see the JSON format:
{
"notifications": [
{
"tokens": ["token_a", "token_b"],
"platform": 1,
"message": "Hello World iOS!"
},
{
"tokens": ["token_a", "token_b"],
"platform": 2,
"message": "Hello World Android!"
}
]
}
run the following command.
bat POST localhost:8088/api/push < tests/test.json
Here is a sample shell code to calculate factorial using while loop:
#!/bin/bash
counter=$1
while [ $counter -gt 0 ]
do
bat POST https://gorush.netlify.app/api/push < tests/test.json
counter=$(( $counter - 1 ))
echo $counter
done