mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Fix auto finding logic of preferred versions - The kube preferred version might not contain the resource requested in some kube versions. Whereas the resource does exist on some previous api version Signed-off-by: Sebastian Malton <sebastian@malton.name> * Simplify getOrderedVersions Signed-off-by: Sebastian Malton <sebastian@malton.name> * Split test file Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix grammer Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name>
720 lines
26 KiB
TypeScript
720 lines
26 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import type { KubeJsonApi } from "../kube-json-api";
|
|
import { PassThrough } from "stream";
|
|
import type { ApiManager } from "../api-manager";
|
|
import { Ingress, IngressApi } from "../endpoints";
|
|
import { getDiForUnitTesting } from "../../../renderer/getDiForUnitTesting";
|
|
import apiManagerInjectable from "../api-manager/manager.injectable";
|
|
import autoRegistrationInjectable from "../api-manager/auto-registration.injectable";
|
|
import type { Fetch } from "../../fetch/fetch.injectable";
|
|
import fetchInjectable from "../../fetch/fetch.injectable";
|
|
import type { AsyncFnMock } from "@async-fn/jest";
|
|
import asyncFn from "@async-fn/jest";
|
|
import { flushPromises } from "../../test-utils/flush-promises";
|
|
import createKubeJsonApiInjectable from "../create-kube-json-api.injectable";
|
|
import type { Response, Headers as NodeFetchHeaders } from "node-fetch";
|
|
|
|
const createMockResponseFromString = (url: string, data: string, statusCode = 200) => {
|
|
const res: jest.Mocked<Response> = {
|
|
buffer: jest.fn(async () => { throw new Error("buffer() is not supported"); }),
|
|
clone: jest.fn(() => res),
|
|
arrayBuffer: jest.fn(async () => { throw new Error("arrayBuffer() is not supported"); }),
|
|
blob: jest.fn(async () => { throw new Error("blob() is not supported"); }),
|
|
body: new PassThrough(),
|
|
bodyUsed: false,
|
|
headers: new Headers() as NodeFetchHeaders,
|
|
json: jest.fn(async () => JSON.parse(await res.text())),
|
|
ok: 200 <= statusCode && statusCode < 300,
|
|
redirected: 300 <= statusCode && statusCode < 400,
|
|
size: data.length,
|
|
status: statusCode,
|
|
statusText: "some-text",
|
|
text: jest.fn(async () => data),
|
|
type: "basic",
|
|
url,
|
|
formData: jest.fn(async () => { throw new Error("formData() is not supported"); }),
|
|
};
|
|
|
|
return res;
|
|
};
|
|
|
|
describe("KubeApi", () => {
|
|
let request: KubeJsonApi;
|
|
let registerApiSpy: jest.SpiedFunction<ApiManager["registerApi"]>;
|
|
let fetchMock: AsyncFnMock<Fetch>;
|
|
|
|
beforeEach(async () => {
|
|
const di = getDiForUnitTesting({ doGeneralOverrides: true });
|
|
|
|
fetchMock = asyncFn();
|
|
di.override(fetchInjectable, () => fetchMock);
|
|
|
|
const createKubeJsonApi = di.inject(createKubeJsonApiInjectable);
|
|
|
|
request = createKubeJsonApi({
|
|
serverAddress: `http://127.0.0.1:9999`,
|
|
apiBase: "/api-kube",
|
|
});
|
|
registerApiSpy = jest.spyOn(di.inject(apiManagerInjectable), "registerApi");
|
|
|
|
di.inject(autoRegistrationInjectable);
|
|
});
|
|
|
|
describe("on first call to IngressApi.get()", () => {
|
|
let ingressApi: IngressApi;
|
|
let getCall: Promise<Ingress | null>;
|
|
|
|
beforeEach(async () => {
|
|
ingressApi = new IngressApi({
|
|
request,
|
|
objectConstructor: Ingress,
|
|
apiBase: "/apis/networking.k8s.io/v1/ingresses",
|
|
fallbackApiBases: ["/apis/extensions/v1beta1/ingresses"],
|
|
checkPreferredVersion: true,
|
|
});
|
|
getCall = ingressApi.get({
|
|
name: "foo",
|
|
namespace: "default",
|
|
});
|
|
|
|
// This is needed because of how JS promises work
|
|
await flushPromises();
|
|
});
|
|
|
|
it("requests version list from the api group from the initial apiBase", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/networking.k8s.io",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
describe("when the version list from the api group resolves", () => {
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io", JSON.stringify({
|
|
apiVersion: "v1",
|
|
kind: "APIGroup",
|
|
name: "networking.k8s.io",
|
|
versions: [
|
|
{
|
|
groupVersion: "networking.k8s.io/v1",
|
|
version: "v1",
|
|
},
|
|
{
|
|
groupVersion: "networking.k8s.io/v1beta1",
|
|
version: "v1beta1",
|
|
},
|
|
],
|
|
preferredVersion: {
|
|
groupVersion: "networking.k8s.io/v1",
|
|
version: "v1",
|
|
},
|
|
})),
|
|
);
|
|
});
|
|
|
|
it("requests resources from the versioned api group from the initial apiBase", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
describe("when resource request fufills with a resource", () => {
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1", JSON.stringify({
|
|
resources: [{
|
|
name: "ingresses",
|
|
}],
|
|
})),
|
|
);
|
|
});
|
|
|
|
it("makes the request to get the resource", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
it("sets fields in the api instance", () => {
|
|
expect(ingressApi).toEqual(expect.objectContaining({
|
|
apiVersionPreferred: "v1",
|
|
apiPrefix: "/apis",
|
|
apiGroup: "networking.k8s.io",
|
|
}));
|
|
});
|
|
|
|
it("registers the api with the changes info", () => {
|
|
expect(registerApiSpy).toBeCalledWith(ingressApi);
|
|
});
|
|
|
|
describe("when the request resolves with no data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo", JSON.stringify({})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to null", () => {
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
describe("on the second call to IngressApi.get()", () => {
|
|
let getCall: Promise<Ingress | null>;
|
|
|
|
beforeEach(async () => {
|
|
getCall = ingressApi.get({
|
|
name: "foo1",
|
|
namespace: "default",
|
|
});
|
|
|
|
// This is needed because of how JS promises work
|
|
await flushPromises();
|
|
});
|
|
|
|
it("makes the request to get the resource", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo1",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
describe("when the request resolves with no data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo1"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo1", JSON.stringify({})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to null", () => {
|
|
expect(result).toBeNull();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("when the request resolves with data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo", JSON.stringify({
|
|
apiVersion: "v1",
|
|
kind: "Ingress",
|
|
metadata: {
|
|
name: "foo",
|
|
namespace: "default",
|
|
resourceVersion: "1",
|
|
uid: "12345",
|
|
},
|
|
})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to an instance", () => {
|
|
expect(result).toBeInstanceOf(Ingress);
|
|
});
|
|
|
|
describe("on the second call to IngressApi.get()", () => {
|
|
let getCall: Promise<Ingress | null>;
|
|
|
|
beforeEach(async () => {
|
|
getCall = ingressApi.get({
|
|
name: "foo1",
|
|
namespace: "default",
|
|
});
|
|
|
|
// This is needed because of how JS promises work
|
|
await flushPromises();
|
|
});
|
|
|
|
it("makes the request to get the resource", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo1",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
describe("when the request resolves with no data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo1"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1/namespaces/default/ingresses/foo1", JSON.stringify({})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to null", () => {
|
|
expect(result).toBeNull();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("when resource request fufills with no resource", () => {
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1", JSON.stringify({
|
|
resources: [],
|
|
})),
|
|
);
|
|
});
|
|
|
|
it("requests resources from the second versioned api group from the initial apiBase", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
|
|
|
|
describe("when resource request fufills with a resource", () => {
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1", JSON.stringify({
|
|
resources: [{
|
|
name: "ingresses",
|
|
}],
|
|
})),
|
|
);
|
|
});
|
|
|
|
it("makes the request to get the resource", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
it("sets fields in the api instance", () => {
|
|
expect(ingressApi).toEqual(expect.objectContaining({
|
|
apiVersionPreferred: "v1beta1",
|
|
apiPrefix: "/apis",
|
|
apiGroup: "networking.k8s.io",
|
|
}));
|
|
});
|
|
|
|
it("registers the api with the changes info", () => {
|
|
expect(registerApiSpy).toBeCalledWith(ingressApi);
|
|
});
|
|
|
|
describe("when the request resolves with no data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo", JSON.stringify({})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to null", () => {
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
describe("on the second call to IngressApi.get()", () => {
|
|
let getCall: Promise<Ingress | null>;
|
|
|
|
beforeEach(async () => {
|
|
getCall = ingressApi.get({
|
|
name: "foo1",
|
|
namespace: "default",
|
|
});
|
|
|
|
// This is needed because of how JS promises work
|
|
await flushPromises();
|
|
});
|
|
|
|
it("makes the request to get the resource", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo1",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
describe("when the request resolves with no data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo1"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo1", JSON.stringify({})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to null", () => {
|
|
expect(result).toBeNull();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("when the request resolves with data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo", JSON.stringify({
|
|
apiVersion: "v1",
|
|
kind: "Ingress",
|
|
metadata: {
|
|
name: "foo",
|
|
namespace: "default",
|
|
resourceVersion: "1",
|
|
uid: "12345",
|
|
},
|
|
})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to an instance", () => {
|
|
expect(result).toBeInstanceOf(Ingress);
|
|
});
|
|
|
|
describe("on the second call to IngressApi.get()", () => {
|
|
let getCall: Promise<Ingress | null>;
|
|
|
|
beforeEach(async () => {
|
|
getCall = ingressApi.get({
|
|
name: "foo1",
|
|
namespace: "default",
|
|
});
|
|
|
|
// This is needed because of how JS promises work
|
|
await flushPromises();
|
|
});
|
|
|
|
it("makes the request to get the resource", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo1",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
describe("when the request resolves with no data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo1"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/foo1", JSON.stringify({})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to null", () => {
|
|
expect(result).toBeNull();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("when the version list from the api group resolves with no versions", () => {
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/networking.k8s.io"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/networking.k8s.io", JSON.stringify({
|
|
"metadata": {},
|
|
"status": "Failure",
|
|
"message": "the server could not find the requested resource",
|
|
"reason": "NotFound",
|
|
"details": {
|
|
"causes": [
|
|
{
|
|
"reason": "UnexpectedServerResponse",
|
|
"message": "404 page not found",
|
|
},
|
|
],
|
|
},
|
|
"code": 404,
|
|
}), 404),
|
|
);
|
|
});
|
|
|
|
it("requests the resources from the base api url from the fallback api", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/extensions",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
describe("when resource request fufills with a resource", () => {
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/extensions"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/extensions", JSON.stringify({
|
|
apiVersion: "v1",
|
|
kind: "APIGroup",
|
|
name: "extensions",
|
|
versions: [
|
|
{
|
|
groupVersion: "extensions/v1beta1",
|
|
version: "v1beta1",
|
|
},
|
|
],
|
|
preferredVersion: {
|
|
groupVersion: "extensions/v1beta1",
|
|
version: "v1beta1",
|
|
},
|
|
})),
|
|
);
|
|
});
|
|
|
|
it("requests resource versions from the versioned api group from the fallback apiBase", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
describe("when the preferred version request resolves to v1beta1", () => {
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/extensions", JSON.stringify({
|
|
resources: [{
|
|
name: "ingresses",
|
|
}],
|
|
})),
|
|
);
|
|
});
|
|
|
|
it("makes the request to get the resource", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
it("sets fields in the api instance", () => {
|
|
expect(ingressApi).toEqual(expect.objectContaining({
|
|
apiVersionPreferred: "v1beta1",
|
|
apiPrefix: "/apis",
|
|
apiGroup: "extensions",
|
|
}));
|
|
});
|
|
|
|
it("registers the api with the changes info", () => {
|
|
expect(registerApiSpy).toBeCalledWith(ingressApi);
|
|
});
|
|
|
|
describe("when the request resolves with no data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo", JSON.stringify({})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to null", () => {
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
describe("on the second call to IngressApi.get()", () => {
|
|
let getCall: Promise<Ingress | null>;
|
|
|
|
beforeEach(async () => {
|
|
getCall = ingressApi.get({
|
|
name: "foo1",
|
|
namespace: "default",
|
|
});
|
|
|
|
// This is needed because of how JS promises work
|
|
await flushPromises();
|
|
});
|
|
|
|
it("makes the request to get the resource", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo1",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
describe("when the request resolves with no data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo1"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo1", JSON.stringify({})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to null", () => {
|
|
expect(result).toBeNull();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("when the request resolves with data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo", JSON.stringify({
|
|
apiVersion: "v1beta1",
|
|
kind: "Ingress",
|
|
metadata: {
|
|
name: "foo",
|
|
namespace: "default",
|
|
resourceVersion: "1",
|
|
uid: "12345",
|
|
},
|
|
})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to an instance", () => {
|
|
expect(result).toBeInstanceOf(Ingress);
|
|
});
|
|
|
|
describe("on the second call to IngressApi.get()", () => {
|
|
let getCall: Promise<Ingress | null>;
|
|
|
|
beforeEach(async () => {
|
|
getCall = ingressApi.get({
|
|
name: "foo1",
|
|
namespace: "default",
|
|
});
|
|
|
|
// This is needed because of how JS promises work
|
|
await flushPromises();
|
|
});
|
|
|
|
it("makes the request to get the resource", () => {
|
|
expect(fetchMock.mock.lastCall).toMatchObject([
|
|
"http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo1",
|
|
{
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
method: "get",
|
|
},
|
|
]);
|
|
});
|
|
|
|
describe("when the request resolves with no data", () => {
|
|
let result: Ingress | null;
|
|
|
|
beforeEach(async () => {
|
|
await fetchMock.resolveSpecific(
|
|
["http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo1"],
|
|
createMockResponseFromString("http://127.0.0.1:9999/api-kube/apis/extensions/v1beta1/namespaces/default/ingresses/foo1", JSON.stringify({})),
|
|
);
|
|
result = await getCall;
|
|
});
|
|
|
|
it("results in the get call resolving to null", () => {
|
|
expect(result).toBeNull();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|