tauri-kargo-tools 0.3.5 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/api.ts +4 -1
- package/src/test.ts +9 -2
- package/src/types.ts +15 -0
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -79,7 +79,10 @@ export class TauriKargoClient {
|
|
|
79
79
|
useConfig(body: T.UseConfigReq): Promise<T.UseConfigResp> {
|
|
80
80
|
return this.postJson<T.UseConfigResp>("/api/useConfig", body);
|
|
81
81
|
}
|
|
82
|
-
|
|
82
|
+
/** POST /api/get-config */
|
|
83
|
+
getAllRunStatus(): Promise<T.AllRunStatusResponse> {
|
|
84
|
+
return this.postJson<T.AllRunStatusResponse>("/api/allRunStatus", {});
|
|
85
|
+
}
|
|
83
86
|
/** POST /api/get-config */
|
|
84
87
|
getConfig(): Promise<T.GetConfigResp> {
|
|
85
88
|
return this.postJson<T.GetConfigResp>("/api/get-config", {});
|
package/src/test.ts
CHANGED
|
@@ -353,7 +353,7 @@ export function log(...args: (string | number)[]) {
|
|
|
353
353
|
export async function assertEqualsSnapshot(actual: unknown, name: string, msg?: string) {
|
|
354
354
|
let postMessage = true
|
|
355
355
|
try {
|
|
356
|
-
const response = await fetch(`/test/
|
|
356
|
+
const response = await fetch(`/test/snapshots/${name}.json`)
|
|
357
357
|
if (response.status === 404) {
|
|
358
358
|
const updateSnapshot: UpdateSnapshot = { type: "snapshot", value: actual ,name:name}
|
|
359
359
|
if (self) {
|
|
@@ -362,7 +362,14 @@ export async function assertEqualsSnapshot(actual: unknown, name: string, msg?:
|
|
|
362
362
|
}
|
|
363
363
|
}
|
|
364
364
|
if (response.ok) {
|
|
365
|
-
|
|
365
|
+
let valueSrc = await response.text()
|
|
366
|
+
let value = undefined
|
|
367
|
+
try {
|
|
368
|
+
value = JSON.parse(valueSrc)
|
|
369
|
+
} catch (error) {
|
|
370
|
+
|
|
371
|
+
}
|
|
372
|
+
|
|
366
373
|
if (deepEqual(actual, value)) {
|
|
367
374
|
const a: Assert = { type: "assert", message: msg ?? "", value: true }
|
|
368
375
|
if (self) {
|
package/src/types.ts
CHANGED
|
@@ -280,4 +280,19 @@ export type UpdateSnapshot = {
|
|
|
280
280
|
type: "snapshot",
|
|
281
281
|
name:string,
|
|
282
282
|
value: any
|
|
283
|
+
}
|
|
284
|
+
export type AllRunStatusItem = {
|
|
285
|
+
id: number
|
|
286
|
+
pid: number | null
|
|
287
|
+
command: string
|
|
288
|
+
executableName: string
|
|
289
|
+
arguments: string[]
|
|
290
|
+
running: boolean
|
|
291
|
+
status: number | null
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
export type AllRunStatusResponse = {
|
|
295
|
+
ok: boolean
|
|
296
|
+
message: string
|
|
297
|
+
items: AllRunStatusItem[]
|
|
283
298
|
}
|