Este README fornece uma visão geral das configurações básicas e exemplos práticos de uso do Wiremock para simulação de APIs.
Wiremock é uma ferramenta poderosa para simular APIs e auxiliar em testes de integração e desenvolvimento de software.
Para rodar o Wiremock no modo standalone, use o seguinte comando:
java -jar <name_jar>.jar --global-response-templating --no-request-journal --port <port>
java -jar wiremock-standalone-3.9.1.jar --global-response-templating --no-request-journal --port 9090 --verbose
Arquivo: get_data_basic.json
{
"id" : "1768945d-c8f4-45f3-ad69-f80237ae8fa3",
"name" : "get-resource-example1-return-200",
"request" : {
"urlPattern" : "/v1/tests",
"method" : "GET"
},
"response" : {
"status" : 200,
"body": "{\"id\": \"1\", \"result\": \"data\" }",
"headers" : {
"Content-Type" : "application/json;charset=UTF-8"
}
},
"uuid" : "1768945d-c8f4-45f3-ad69-f80237ae8fa3",
"persistent" : true,
"priority": 1
}
Arquivo: get_data_file.json
{
"id" : "357d4984-eb5b-49cb-9f02-f85b65b9b6d3",
"name" : "get-resource-example2-return-200",
"request" : {
"urlPattern" : "/v1/tests",
"method" : "GET"
},
"response" : {
"status" : 200,
"bodyFileName" : "get_data_file.json",
"headers" : {
"Content-Type" : "application/json;charset=UTF-8"
}
},
"uuid" : "357d4984-eb5b-49cb-9f02-f85b65b9b6d3",
"persistent" : true,
"priority": 2
}
curl --location 'http://localhost:9090/health'
curl --location 'http://localhost:9090/v1/tests'
curl --location 'http://localhost:9090/v1/tests/1'
curl --location 'http://localhost:9090/v1/tests' \
--header 'Channel: APP'
curl --location 'http://localhost:9090/v1/tests'
curl --location 'http://localhost:9090/v1/employees'
curl --location 'http://localhost:9090/v1/product/12345/validate' \
--header 'Content-Type: application/json' \
--data '{
"name": "Product 1",
"status": "PROCESSING"
}'
curl --location --request POST 'http://localhost:9090/v1/tests'