mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-22 16:03:39 +01:00
chore: added examples inside bruno-lang
This commit is contained in:
parent
60e613fac8
commit
0750af4c68
55
packages/bruno-lang/example/request.bru
Normal file
55
packages/bruno-lang/example/request.bru
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
ver 1.0
|
||||||
|
type http-request
|
||||||
|
name Send Bulk SMS
|
||||||
|
method GET
|
||||||
|
url https://api.textlocal.in/bulk_json?apiKey=secret=&numbers=919988776655&message=hello&sender=600010
|
||||||
|
body-mode json
|
||||||
|
|
||||||
|
params
|
||||||
|
1 apiKey secret
|
||||||
|
1 numbers 998877665
|
||||||
|
1 message hello
|
||||||
|
/params
|
||||||
|
|
||||||
|
headers
|
||||||
|
1 content-type application/json
|
||||||
|
1 accept-language en-US,en;q=0.9,hi;q=0.8
|
||||||
|
0 transaction-id {{transactionId}}
|
||||||
|
/headers
|
||||||
|
|
||||||
|
body(type=json)
|
||||||
|
{
|
||||||
|
apikey: "secret",
|
||||||
|
numbers: "+91998877665",
|
||||||
|
data: {
|
||||||
|
sender: "TXTLCL",
|
||||||
|
messages: [{
|
||||||
|
numbers: "+91998877665",
|
||||||
|
message: "Hello World"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/body
|
||||||
|
|
||||||
|
body(type=graphql)
|
||||||
|
{
|
||||||
|
launchesPast {
|
||||||
|
launch_site {
|
||||||
|
site_name
|
||||||
|
}
|
||||||
|
launch_success
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/body
|
||||||
|
|
||||||
|
script
|
||||||
|
let user = 'John Doe';
|
||||||
|
|
||||||
|
function onRequest(request) {
|
||||||
|
request.body.user = user;
|
||||||
|
}
|
||||||
|
|
||||||
|
function onResponse(request, response) {
|
||||||
|
expect(response.status).to.equal(200);
|
||||||
|
}
|
||||||
|
/script
|
39
packages/bruno-lang/example/request.json
Normal file
39
packages/bruno-lang/example/request.json
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"type": "http-request",
|
||||||
|
"name": "Send Bulk SMS",
|
||||||
|
"request": {
|
||||||
|
"method": "GET",
|
||||||
|
"url": "https://api.textlocal.in/bulk_json?apiKey=secret=&numbers=998877665&message=hello&sender=600010",
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"name": "apiKey",
|
||||||
|
"value": "secret",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "numbers",
|
||||||
|
"value": "998877665",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "message",
|
||||||
|
"value": "hello",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sender",
|
||||||
|
"value": "600010",
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"headers": [],
|
||||||
|
"body": {
|
||||||
|
"mode": "json",
|
||||||
|
"json": "{\n apikey: \"secret\",\n numbers: \"+919988776655\",\n data: {\n sender: \"TXTLCL\",\n messages: [{\n numbers: \"+919988776655\",\n message: \"Hello World\"\n }]\n }\n}",
|
||||||
|
"text": null,
|
||||||
|
"xml": null,
|
||||||
|
"multipartForm": null,
|
||||||
|
"formUrlEncoded": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
101
packages/bruno-lang/example/request.next.bru
Normal file
101
packages/bruno-lang/example/request.next.bru
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
ver 1.0
|
||||||
|
type http-request
|
||||||
|
name Send Bulk SMS
|
||||||
|
method GET
|
||||||
|
url https://api.textlocal.in/bulk_json?apiKey=secret=&numbers=919988776655&message=hello&sender=600010
|
||||||
|
body-mode json
|
||||||
|
|
||||||
|
params
|
||||||
|
1 apiKey secret
|
||||||
|
1 numbers 998877665
|
||||||
|
1 message hello
|
||||||
|
/params
|
||||||
|
|
||||||
|
headers
|
||||||
|
1 content-type application/json
|
||||||
|
1 accept-language en-US,en;q=0.9,hi;q=0.8
|
||||||
|
0 transaction-id {{transactionId}}
|
||||||
|
/headers
|
||||||
|
|
||||||
|
body(type=json)
|
||||||
|
{
|
||||||
|
apikey: "secret",
|
||||||
|
numbers: "+91998877665",
|
||||||
|
data: {
|
||||||
|
sender: "TXTLCL",
|
||||||
|
messages: [{
|
||||||
|
numbers: "+91998877665",
|
||||||
|
message: "Hello World"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/body
|
||||||
|
|
||||||
|
body(type=graphql)
|
||||||
|
{
|
||||||
|
launchesPast {
|
||||||
|
launch_site {
|
||||||
|
site_name
|
||||||
|
}
|
||||||
|
launch_success
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/body
|
||||||
|
|
||||||
|
script
|
||||||
|
let user = 'John Doe';
|
||||||
|
|
||||||
|
function onRequest(request) {
|
||||||
|
request.body.user = user;
|
||||||
|
}
|
||||||
|
|
||||||
|
function onResponse(request, response) {
|
||||||
|
expect(response.status).to.equal(200);
|
||||||
|
}
|
||||||
|
/script
|
||||||
|
|
||||||
|
assert
|
||||||
|
{
|
||||||
|
"$res.data.order.items.length": 1,
|
||||||
|
"$res.data.orderNumber.isDefined": true
|
||||||
|
}
|
||||||
|
/assert
|
||||||
|
|
||||||
|
vars
|
||||||
|
1 petId $res.data.id
|
||||||
|
/vars
|
||||||
|
|
||||||
|
readme
|
||||||
|
Documentation about the request
|
||||||
|
/readme
|
||||||
|
|
||||||
|
response-example
|
||||||
|
name Created
|
||||||
|
status 201
|
||||||
|
headers
|
||||||
|
1 content-type application/json
|
||||||
|
1 accept-language en-US,en;q=0.9,hi;q=0.8
|
||||||
|
0 transaction-id {{transactionId}}
|
||||||
|
/headers
|
||||||
|
|
||||||
|
body
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"launchesPast": [
|
||||||
|
{
|
||||||
|
"launch_site": {
|
||||||
|
"site_name": "CCAFS SLC 40"
|
||||||
|
},
|
||||||
|
"launch_success": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"launch_site": {
|
||||||
|
"site_name": "VAFB SLC 4E"
|
||||||
|
},
|
||||||
|
"launch_success": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/body
|
||||||
|
/response-example
|
Loading…
Reference in New Issue
Block a user