-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix workload overview status sorting (#3486)
* Sort statuses allowing 'running' to be first Signed-off-by: Alex Andreev <[email protected]> * Fix Chart legend badges Signed-off-by: Alex Andreev <[email protected]> * Adding getStatus() tests for each store Signed-off-by: Alex Andreev <[email protected]>
- Loading branch information
1 parent
fd5881f
commit 8966210
Showing
17 changed files
with
1,322 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
115 changes: 115 additions & 0 deletions
115
src/renderer/components/__tests__/cronjob.store.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
/** | ||
* Copyright (c) 2021 OpenLens Authors | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
* this software and associated documentation files (the "Software"), to deal in | ||
* the Software without restriction, including without limitation the rights to | ||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
* the Software, and to permit persons to whom the Software is furnished to do so, | ||
* subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
import { cronJobStore } from "../+workloads-cronjobs/cronjob.store"; | ||
import { CronJob } from "../../api/endpoints"; | ||
|
||
const spec = { | ||
schedule: "test", | ||
concurrencyPolicy: "test", | ||
suspend: true, | ||
jobTemplate: { | ||
metadata: {}, | ||
spec: { | ||
template: { | ||
metadata: {}, | ||
spec: { | ||
containers: [] as any, | ||
restartPolicy: "restart", | ||
terminationGracePeriodSeconds: 1, | ||
dnsPolicy: "no", | ||
hostPID: true, | ||
schedulerName: "string" | ||
} | ||
} | ||
} | ||
}, | ||
successfulJobsHistoryLimit: 1, | ||
failedJobsHistoryLimit: 1 | ||
}; | ||
|
||
const scheduledCronJob = new CronJob({ | ||
apiVersion: "foo", | ||
kind: "CronJob", | ||
metadata: { | ||
name: "scheduledCronJob", | ||
resourceVersion: "scheduledCronJob", | ||
uid: "scheduledCronJob", | ||
namespace: "default", | ||
}, | ||
}); | ||
|
||
const suspendedCronJob = new CronJob({ | ||
apiVersion: "foo", | ||
kind: "CronJob", | ||
metadata: { | ||
name: "suspendedCronJob", | ||
resourceVersion: "suspendedCronJob", | ||
uid: "suspendedCronJob", | ||
namespace: "default", | ||
} | ||
}); | ||
|
||
const otherSuspendedCronJob = new CronJob({ | ||
apiVersion: "foo", | ||
kind: "CronJob", | ||
metadata: { | ||
name: "otherSuspendedCronJob", | ||
resourceVersion: "otherSuspendedCronJob", | ||
uid: "otherSuspendedCronJob", | ||
namespace: "default", | ||
}, | ||
}); | ||
|
||
scheduledCronJob.spec = { ...spec }; | ||
suspendedCronJob.spec = { ...spec }; | ||
otherSuspendedCronJob.spec = { ...spec }; | ||
scheduledCronJob.spec.suspend = false; | ||
|
||
describe("CronJob Store tests", () => { | ||
it("gets CronJob statuses in proper sorting order", () => { | ||
const statuses = Object.entries(cronJobStore.getStatuses([ | ||
suspendedCronJob, | ||
otherSuspendedCronJob, | ||
scheduledCronJob | ||
])); | ||
|
||
expect(statuses).toEqual([ | ||
["scheduled", 1], | ||
["suspended", 2], | ||
]); | ||
}); | ||
|
||
it("returns 0 for other statuses", () => { | ||
let statuses = Object.entries(cronJobStore.getStatuses([scheduledCronJob])); | ||
|
||
expect(statuses).toEqual([ | ||
["scheduled", 1], | ||
["suspended", 0], | ||
]); | ||
|
||
statuses = Object.entries(cronJobStore.getStatuses([suspendedCronJob])); | ||
|
||
expect(statuses).toEqual([ | ||
["scheduled", 0], | ||
["suspended", 1], | ||
]); | ||
}); | ||
}); |
181 changes: 181 additions & 0 deletions
181
src/renderer/components/__tests__/daemonset.store.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
/** | ||
* Copyright (c) 2021 OpenLens Authors | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
* this software and associated documentation files (the "Software"), to deal in | ||
* the Software without restriction, including without limitation the rights to | ||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
* the Software, and to permit persons to whom the Software is furnished to do so, | ||
* subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
import { observable } from "mobx"; | ||
import { daemonSetStore } from "../+workloads-daemonsets/daemonsets.store"; | ||
import { podsStore } from "../+workloads-pods/pods.store"; | ||
import { DaemonSet, Pod } from "../../api/endpoints"; | ||
|
||
const runningDaemonSet = new DaemonSet({ | ||
apiVersion: "foo", | ||
kind: "DaemonSet", | ||
metadata: { | ||
name: "runningDaemonSet", | ||
resourceVersion: "runningDaemonSet", | ||
uid: "runningDaemonSet", | ||
namespace: "default", | ||
}, | ||
}); | ||
|
||
const failedDaemonSet = new DaemonSet({ | ||
apiVersion: "foo", | ||
kind: "DaemonSet", | ||
metadata: { | ||
name: "failedDaemonSet", | ||
resourceVersion: "failedDaemonSet", | ||
uid: "failedDaemonSet", | ||
namespace: "default", | ||
}, | ||
}); | ||
|
||
const pendingDaemonSet = new DaemonSet({ | ||
apiVersion: "foo", | ||
kind: "DaemonSet", | ||
metadata: { | ||
name: "pendingDaemonSet", | ||
resourceVersion: "pendingDaemonSet", | ||
uid: "pendingDaemonSet", | ||
namespace: "default", | ||
}, | ||
}); | ||
|
||
const runningPod = new Pod({ | ||
apiVersion: "foo", | ||
kind: "Pod", | ||
metadata: { | ||
name: "foobar", | ||
resourceVersion: "foobar", | ||
uid: "foobar", | ||
ownerReferences: [{ | ||
uid: "runningDaemonSet", | ||
}], | ||
namespace: "default" | ||
}, | ||
}); | ||
|
||
runningPod.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", | ||
ownerReferences: [{ | ||
uid: "pendingDaemonSet", | ||
}], | ||
namespace: "default" | ||
}, | ||
}); | ||
|
||
const failedPod = new Pod({ | ||
apiVersion: "foo", | ||
kind: "Pod", | ||
metadata: { | ||
name: "foobar-failed", | ||
resourceVersion: "foobar", | ||
uid: "foobar-failed", | ||
ownerReferences: [{ | ||
uid: "failedDaemonSet", | ||
}], | ||
namespace: "default" | ||
}, | ||
}); | ||
|
||
failedPod.status = { | ||
phase: "Failed", | ||
conditions: [], | ||
hostIP: "10.0.0.1", | ||
podIP: "10.0.0.1", | ||
startTime: "now", | ||
}; | ||
|
||
describe("DaemonSet Store tests", () => { | ||
beforeAll(() => { | ||
podsStore.items = observable.array([ | ||
runningPod, | ||
failedPod, | ||
pendingPod | ||
]); | ||
}); | ||
|
||
it("gets DaemonSet statuses in proper sorting order", () => { | ||
const statuses = Object.entries(daemonSetStore.getStatuses([ | ||
failedDaemonSet, | ||
runningDaemonSet, | ||
pendingDaemonSet | ||
])); | ||
|
||
expect(statuses).toEqual([ | ||
["running", 1], | ||
["failed", 1], | ||
["pending", 1], | ||
]); | ||
}); | ||
|
||
it("returns 0 for other statuses", () => { | ||
let statuses = Object.entries(daemonSetStore.getStatuses([runningDaemonSet])); | ||
|
||
expect(statuses).toEqual([ | ||
["running", 1], | ||
["failed", 0], | ||
["pending", 0], | ||
]); | ||
|
||
statuses = Object.entries(daemonSetStore.getStatuses([failedDaemonSet])); | ||
|
||
expect(statuses).toEqual([ | ||
["running", 0], | ||
["failed", 1], | ||
["pending", 0], | ||
]); | ||
|
||
statuses = Object.entries(daemonSetStore.getStatuses([pendingDaemonSet])); | ||
|
||
expect(statuses).toEqual([ | ||
["running", 0], | ||
["failed", 0], | ||
["pending", 1], | ||
]); | ||
}); | ||
}); |
Oops, something went wrong.