-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
311ec25
commit bce4fc8
Showing
21 changed files
with
274 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
meta { | ||
name: Get | ||
type: http | ||
seq: 1 | ||
} | ||
|
||
post { | ||
url: http://localhost:4444/call | ||
body: json | ||
auth: none | ||
} | ||
|
||
body:json { | ||
{ | ||
"url": "http://httpbin.org/get", | ||
"method": "GET" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Post | ||
type: http | ||
seq: 2 | ||
} | ||
|
||
post { | ||
url: http://localhost:4444/call | ||
body: json | ||
auth: none | ||
} | ||
|
||
body:json { | ||
{"url": "http://httpbin.org/post", "method": "POST", "body": "{key: value}"} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
meta { | ||
name: Create Proxy | ||
type: http | ||
seq: 1 | ||
} | ||
|
||
post { | ||
url: http://localhost:4444/proxy | ||
body: json | ||
auth: none | ||
} | ||
|
||
body:json { | ||
{ | ||
"path": "/time", | ||
"method": "GET", | ||
"proxy": { | ||
"url": "http://worldtimeapi.org/api/timezone/asia/kolkata", | ||
"method": "GET" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
meta { | ||
name: Delete Proxy | ||
type: http | ||
seq: 3 | ||
} | ||
|
||
delete { | ||
url: http://localhost:4444/proxy | ||
body: json | ||
auth: none | ||
} | ||
|
||
body:json { | ||
{ | ||
"path": "/time", | ||
"method": "GET", | ||
"proxy": { | ||
"url": "http://worldtimeapi.org/api/timezone/asia/kolkata", | ||
"method": "GET" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Proxy Call Check | ||
type: http | ||
seq: 2 | ||
} | ||
|
||
get { | ||
url: http://localhost:4444/time | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Delayed HTTP Status | ||
type: http | ||
seq: 2 | ||
} | ||
|
||
get { | ||
url: http://localhost:4444/return/401?delay=300 | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:query { | ||
delay: 300 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: HTTP Status | ||
type: http | ||
seq: 1 | ||
} | ||
|
||
get { | ||
url: http://localhost:4444/return/200 | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Be Healthy | ||
type: http | ||
seq: 5 | ||
} | ||
|
||
put { | ||
url: http://localhost:4444/control/health/perfect | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Be Ready | ||
type: http | ||
seq: 8 | ||
} | ||
|
||
put { | ||
url: http://localhost:4444/control/ready/perfect | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Be Unready | ||
type: http | ||
seq: 9 | ||
} | ||
|
||
put { | ||
url: http://localhost:4444/control/ready/sick | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: CPU Spike | ||
type: http | ||
seq: 12 | ||
} | ||
|
||
put { | ||
url: http://localhost:4444/control/goturbo/cpu | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Fall Sick | ||
type: http | ||
seq: 6 | ||
} | ||
|
||
put { | ||
url: http://localhost:4444/control/health/sick | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Health | ||
type: http | ||
seq: 3 | ||
} | ||
|
||
get { | ||
url: http://localhost:4444/health | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Memory Spike | ||
type: http | ||
seq: 11 | ||
} | ||
|
||
put { | ||
url: http://localhost:4444/control/goturbo/memory | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Metadata | ||
type: http | ||
seq: 2 | ||
} | ||
|
||
get { | ||
url: http://localhost:4444/meta | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Ready | ||
type: http | ||
seq: 4 | ||
} | ||
|
||
get { | ||
url: http://localhost:4444/readiness | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Recover Health | ||
type: http | ||
seq: 7 | ||
} | ||
|
||
put { | ||
url: http://localhost:4444/control/health/sick?resetInSeconds=20 | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:query { | ||
resetInSeconds: 20 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Recover Readiness | ||
type: http | ||
seq: 10 | ||
} | ||
|
||
put { | ||
url: http://localhost:4444/control/ready/sick?resetInSeconds=20 | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:query { | ||
resetInSeconds: 20 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Suicide | ||
type: http | ||
seq: 13 | ||
} | ||
|
||
put { | ||
url: http://localhost:4444/control/crash | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Version | ||
type: http | ||
seq: 1 | ||
} | ||
|
||
get { | ||
url: http://localhost:4444/version | ||
body: none | ||
auth: none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"version": "1", | ||
"name": "dobby", | ||
"type": "collection", | ||
"ignore": [ | ||
"node_modules", | ||
".git" | ||
] | ||
} |