Testcases for URLEncoded contentType

This commit is contained in:
Frank Jogeleit 2022-11-07 11:08:34 +01:00
parent c4ec44ca3e
commit cc3aff9cbe

View file

@ -145,3 +145,19 @@ jobs:
url: 'https://postman-echo.com/post' url: 'https://postman-echo.com/post'
method: 'POST' method: 'POST'
file: "${{ github.workspace }}/testfile.txt" file: "${{ github.workspace }}/testfile.txt"
- name: Request Postman Echo POST URLEncoded string data
uses: ./
with:
url: 'https://postman-echo.com/post'
contentType : 'application/x-www-form-urlencoded'
method: 'POST'
data: 'key=value'
- name: Request Postman Echo POST URLEncoded json data
uses: ./
with:
url: 'https://postman-echo.com/post'
contentType : 'application/x-www-form-urlencoded'
method: 'POST'
data: '{"key":"value"}'