mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
109 lines
3.0 KiB
TypeScript
109 lines
3.0 KiB
TypeScript
import nock from "nock";
|
|
|
|
nock("https://iwdfzvfqbtokqetmbmbp.supabase.co:443", {
|
|
encodedQueryParams: true,
|
|
})
|
|
.get("/rest/v1/posts")
|
|
.query({ select: "%2A", id: "in.%282%2C3%29" })
|
|
.reply(
|
|
200,
|
|
[
|
|
{
|
|
id: 2,
|
|
title: "test title",
|
|
slug: "test-slug",
|
|
createdAt: "2021-09-03T07:36:42+00:00",
|
|
content: "test content",
|
|
categoryId: 1,
|
|
image: {},
|
|
},
|
|
{
|
|
id: 3,
|
|
title: "What a library",
|
|
slug: "refine-nokta-kom",
|
|
createdAt: "2021-09-03T09:17:51+00:00",
|
|
content: "Hello lorem ipsum pala baba",
|
|
categoryId: 1,
|
|
image: {},
|
|
},
|
|
],
|
|
[
|
|
"Content-Type",
|
|
"application/json; charset=utf-8",
|
|
"Transfer-Encoding",
|
|
"chunked",
|
|
"Connection",
|
|
"close",
|
|
"Date",
|
|
"Mon, 06 Sep 2021 09:26:19 GMT",
|
|
"Server",
|
|
"postgrest/8.0.0",
|
|
"Content-Range",
|
|
"0-1/*",
|
|
"Content-Location",
|
|
"/posts?id=in.%282%2C3%29&select=%2A",
|
|
"Content-Profile",
|
|
"public",
|
|
"vary",
|
|
"Origin",
|
|
"Access-Control-Allow-Origin",
|
|
"*",
|
|
"X-Kong-Upstream-Latency",
|
|
"29",
|
|
"X-Kong-Proxy-Latency",
|
|
"0",
|
|
"Via",
|
|
"kong/2.2.1",
|
|
],
|
|
);
|
|
|
|
nock("https://iwdfzvfqbtokqetmbmbp.supabase.co:443", {
|
|
encodedQueryParams: true,
|
|
})
|
|
.get("/rest/v1/posts")
|
|
.query({ select: "title", id: "in.%283%2C61%29" })
|
|
.reply(
|
|
200,
|
|
[
|
|
"1f8b08000000000000038bae562ac92cc94955b252324c2c4e0122a55a1d052e0584b04f7e516aae8267417169ae8291ae99526d2c0076408e3734000000",
|
|
],
|
|
[
|
|
"Date",
|
|
"Fri, 28 Jan 2022 13:02:57 GMT",
|
|
"Content-Type",
|
|
"application/json; charset=utf-8",
|
|
"Transfer-Encoding",
|
|
"chunked",
|
|
"Connection",
|
|
"close",
|
|
"CF-Ray",
|
|
"6d4a6b08d9755488-IST",
|
|
"Access-Control-Allow-Origin",
|
|
"*",
|
|
"Content-Encoding",
|
|
"gzip",
|
|
"Content-Location",
|
|
"/posts?id=in.%283%2C61%29&select=title",
|
|
"Content-Range",
|
|
"0-1/*",
|
|
"Vary",
|
|
"Accept-Encoding, Origin",
|
|
"Via",
|
|
"kong/2.2.1",
|
|
"CF-Cache-Status",
|
|
"DYNAMIC",
|
|
"Content-Profile",
|
|
"public",
|
|
"Expect-CT",
|
|
'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
|
|
"X-Kong-Proxy-Latency",
|
|
"1",
|
|
"X-Kong-Upstream-Latency",
|
|
"3",
|
|
"Server",
|
|
"cloudflare",
|
|
"alt-svc",
|
|
'h3=":443"; ma=86400, h3-29=":443"; ma=86400',
|
|
],
|
|
);
|