test: remove unused logs odata requests

This commit is contained in:
Meik
2026-07-01 16:58:14 +02:00
parent fc9b957591
commit a6230478d3

View File

@@ -26,8 +26,8 @@
"script": { "script": {
"type": "text/javascript", "type": "text/javascript",
"exec": [ "exec": [
"pm.test(\"No unhandled 5xx server error\", function () {", "pm.test(\"Request returns a successful or redirect status\", function () {",
" pm.expect(pm.response.code).to.be.below(500);", " pm.expect(pm.response.code).to.be.below(400);",
"});", "});",
"", "",
"if (pm.response.text()) {", "if (pm.response.text()) {",
@@ -929,111 +929,6 @@
} }
} }
] ]
},
{
"name": "05 Logs OData",
"item": [
{
"name": "Logs list",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/logs",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"c4itf4sdwebapi",
"logs"
]
}
}
},
{
"name": "Logs list filtered",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/logs?$filter={{logFilter}}",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"c4itf4sdwebapi",
"logs"
],
"query": [
{
"key": "$filter",
"value": "{{logFilter}}"
}
]
}
}
},
{
"name": "Logs count",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/logs/$count",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"c4itf4sdwebapi",
"logs",
"$count"
]
}
}
},
{
"name": "Logs get by id",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/logs/{{logEntryId}}",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"c4itf4sdwebapi",
"logs",
"{{logEntryId}}"
]
}
}
}
]
} }
] ]
} }