mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- New name better implies that it is just a guard state and does not do anything Signed-off-by: Sebastian Malton <sebastian@malton.name>
163 lines
3.5 KiB
TypeScript
163 lines
3.5 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import { Pod } from "../../../common/k8s-api/endpoints";
|
|
import type { PodStore } from "../+workloads-pods/store";
|
|
import podStoreInjectable from "../+workloads-pods/store.injectable";
|
|
import storesAndApisCanBeCreatedInjectable from "../../stores-apis-can-be-created.injectable";
|
|
import { getDiForUnitTesting } from "../../getDiForUnitTesting";
|
|
|
|
const runningPod = new Pod({
|
|
apiVersion: "foo",
|
|
kind: "Pod",
|
|
metadata: {
|
|
name: "foobar",
|
|
resourceVersion: "foobar",
|
|
uid: "foobar",
|
|
namespace: "default",
|
|
selfLink: "/api/v1/pods/default/foobar",
|
|
},
|
|
status: {
|
|
phase: "Running",
|
|
conditions: [
|
|
{
|
|
type: "Initialized",
|
|
status: "True",
|
|
lastProbeTime: 1,
|
|
lastTransitionTime: "1",
|
|
},
|
|
{
|
|
type: "Ready",
|
|
status: "True",
|
|
lastProbeTime: 1,
|
|
lastTransitionTime: "1",
|
|
},
|
|
],
|
|
hostIP: "10.0.0.1",
|
|
podIP: "10.0.0.1",
|
|
startTime: "now",
|
|
containerStatuses: [],
|
|
initContainerStatuses: [],
|
|
},
|
|
});
|
|
|
|
const pendingPod = new Pod({
|
|
apiVersion: "foo",
|
|
kind: "Pod",
|
|
metadata: {
|
|
name: "foobar-pending",
|
|
resourceVersion: "foobar",
|
|
uid: "foobar-pending",
|
|
namespace: "default",
|
|
selfLink: "/api/v1/pods/default/foobar-pending",
|
|
},
|
|
});
|
|
|
|
const failedPod = new Pod({
|
|
apiVersion: "foo",
|
|
kind: "Pod",
|
|
metadata: {
|
|
name: "foobar-failed",
|
|
resourceVersion: "foobar",
|
|
uid: "foobar-failed",
|
|
namespace: "default",
|
|
selfLink: "/api/v1/pods/default/foobar-failed",
|
|
},
|
|
status: {
|
|
phase: "Failed",
|
|
conditions: [],
|
|
hostIP: "10.0.0.1",
|
|
podIP: "10.0.0.1",
|
|
startTime: "now",
|
|
},
|
|
});
|
|
|
|
const evictedPod = new Pod({
|
|
apiVersion: "foo",
|
|
kind: "Pod",
|
|
metadata: {
|
|
name: "foobar-evicted",
|
|
resourceVersion: "foobar",
|
|
uid: "foobar-evicted",
|
|
namespace: "default",
|
|
selfLink: "/api/v1/pods/default/foobar-evicted",
|
|
},
|
|
status: {
|
|
phase: "Failed",
|
|
reason: "Evicted",
|
|
conditions: [],
|
|
hostIP: "10.0.0.1",
|
|
podIP: "10.0.0.1",
|
|
startTime: "now",
|
|
},
|
|
});
|
|
|
|
const succeededPod = new Pod({
|
|
apiVersion: "foo",
|
|
kind: "Pod",
|
|
metadata: {
|
|
name: "foobar-succeeded",
|
|
resourceVersion: "foobar",
|
|
uid: "foobar-succeeded",
|
|
namespace: "default",
|
|
selfLink: "/api/v1/pods/default/foobar-succeeded",
|
|
},
|
|
status: {
|
|
phase: "Succeeded",
|
|
conditions: [],
|
|
hostIP: "10.0.0.1",
|
|
podIP: "10.0.0.1",
|
|
startTime: "now",
|
|
},
|
|
});
|
|
|
|
describe("Pod Store tests", () => {
|
|
let podStore: PodStore;
|
|
|
|
beforeEach(() => {
|
|
const di = getDiForUnitTesting({ doGeneralOverrides: true });
|
|
|
|
di.override(storesAndApisCanBeCreatedInjectable, () => true);
|
|
|
|
podStore = di.inject(podStoreInjectable);
|
|
});
|
|
|
|
it("gets Pod statuses in proper sorting order", () => {
|
|
const statuses = Object.entries(podStore.getStatuses([
|
|
pendingPod,
|
|
runningPod,
|
|
succeededPod,
|
|
failedPod,
|
|
evictedPod,
|
|
evictedPod,
|
|
]));
|
|
|
|
expect(statuses).toEqual([
|
|
["Succeeded", 1],
|
|
["Running", 1],
|
|
["Pending", 1],
|
|
["Failed", 1],
|
|
["Evicted", 2],
|
|
]);
|
|
});
|
|
|
|
it("counts statuses properly", () => {
|
|
const statuses = Object.entries(podStore.getStatuses([
|
|
pendingPod,
|
|
pendingPod,
|
|
pendingPod,
|
|
runningPod,
|
|
failedPod,
|
|
failedPod,
|
|
]));
|
|
|
|
expect(statuses).toEqual([
|
|
["Running", 1],
|
|
["Pending", 3],
|
|
["Failed", 2],
|
|
]);
|
|
});
|
|
});
|