Replaced "baseUrl" with implicit "host" and fixed a minor bug regarding ordering

This commit is contained in:
matty
2023-10-25 16:34:47 +03:30
parent 247774b181
commit 3cd00d74bf
6 changed files with 51 additions and 22 deletions

View File

@@ -1,11 +1,11 @@
{{
const axios = require('axios');
const wait = axios.get(`${baseUrl}/products`).then(res => {
const wait = axios.get(`${host}/products`).then(res => {
let length = res.data.length;
let exists = res.data.find(item => item.id === 78);
if(length===78 && exists){
return axios.delete(`${baseUrl}/products?id=eq.78`)
return axios.delete(`${host}/products?id=eq.78`)
.then(res => {
return null;
})
@@ -16,20 +16,20 @@
}}
###
GET {{baseUrl}}/products/1
GET /products/1
?? status == 200
?? body product_name == Chai
?? body id == 1
###
GET {{baseUrl}}/products
GET /products
?? status == 200
?? body length == 77
###
POST {{baseUrl}}/products
POST /products
Content-Type: application/json
{
@@ -62,13 +62,13 @@ Content-Type: application/json
"units_on_order": 0,
"reorder_level": 10
}
const wait = axios.post(`${baseUrl}/products`, postData, {headers:{ 'Content-Type': 'application/json'} }).then(res => {
const wait = axios.post(`${host}/products`, postData, {headers:{ 'Content-Type': 'application/json'} }).then(res => {
return null;
})
exports.wait = wait;
}}
PATCH {{baseUrl}}/products?id=eq.78
PATCH /products?id=eq.78
Content-Type: application/json
{
@@ -80,7 +80,7 @@ Content-Type: application/json
const {expect} = require('chai');
const axios = require("axios");
const wait = axios.get(`${baseUrl}/products?id=eq.78`).then(res => {
const wait = axios.get(`${host}/products?id=eq.78`).then(res => {
test("Check Patch", () =>
{
expect(res.data[0].product_name).to.equal("Saffaron-patch")
@@ -106,20 +106,20 @@ Content-Type: application/json
"units_on_order": 0,
"reorder_level": 10
}
const wait = axios.post(`${baseUrl}/products`, postData, {headers:{ 'Content-Type': 'application/json'} } ).then(res => {
const wait = axios.post(`${host}/products`, postData, {headers:{ 'Content-Type': 'application/json'} } ).then(res => {
return null;
})
exports.wait = wait;
}}
DELETE {{baseUrl}}/products?id=eq.78
DELETE /products?id=eq.78
?? status == 204
{{
const {expect} = require('chai');
const axios = require("axios");
const wait = axios.get(`${baseUrl}/products`).then(res => {
const wait = axios.get(`${host}/products`).then(res => {
test("Check for Delete", () => {
expect(res.data.length).to.equal(77);
})