mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Forgot testing for this
This commit is contained in:
parent
ffc10a0531
commit
bb86bb77c7
@ -9,11 +9,16 @@ import {
|
|||||||
} from '@angular/core/testing'
|
} from '@angular/core/testing'
|
||||||
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'
|
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'
|
||||||
import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons'
|
import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons'
|
||||||
|
import { of, throwError } from 'rxjs'
|
||||||
|
import { PaperlessTaskName } from 'src/app/data/paperless-task'
|
||||||
import {
|
import {
|
||||||
InstallType,
|
InstallType,
|
||||||
SystemStatus,
|
SystemStatus,
|
||||||
SystemStatusItemStatus,
|
SystemStatusItemStatus,
|
||||||
} from 'src/app/data/system-status'
|
} from 'src/app/data/system-status'
|
||||||
|
import { SystemStatusService } from 'src/app/services/system-status.service'
|
||||||
|
import { TasksService } from 'src/app/services/tasks.service'
|
||||||
|
import { ToastService } from 'src/app/services/toast.service'
|
||||||
import { SystemStatusDialogComponent } from './system-status-dialog.component'
|
import { SystemStatusDialogComponent } from './system-status-dialog.component'
|
||||||
|
|
||||||
const status: SystemStatus = {
|
const status: SystemStatus = {
|
||||||
@ -54,6 +59,9 @@ describe('SystemStatusDialogComponent', () => {
|
|||||||
let component: SystemStatusDialogComponent
|
let component: SystemStatusDialogComponent
|
||||||
let fixture: ComponentFixture<SystemStatusDialogComponent>
|
let fixture: ComponentFixture<SystemStatusDialogComponent>
|
||||||
let clipboard: Clipboard
|
let clipboard: Clipboard
|
||||||
|
let tasksService: TasksService
|
||||||
|
let systemStatusService: SystemStatusService
|
||||||
|
let toastService: ToastService
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
@ -72,6 +80,9 @@ describe('SystemStatusDialogComponent', () => {
|
|||||||
component = fixture.componentInstance
|
component = fixture.componentInstance
|
||||||
component.status = status
|
component.status = status
|
||||||
clipboard = TestBed.inject(Clipboard)
|
clipboard = TestBed.inject(Clipboard)
|
||||||
|
tasksService = TestBed.inject(TasksService)
|
||||||
|
systemStatusService = TestBed.inject(SystemStatusService)
|
||||||
|
toastService = TestBed.inject(ToastService)
|
||||||
fixture.detectChanges()
|
fixture.detectChanges()
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -98,4 +109,37 @@ describe('SystemStatusDialogComponent', () => {
|
|||||||
expect(component.isStale(date.toISOString())).toBeTruthy()
|
expect(component.isStale(date.toISOString())).toBeTruthy()
|
||||||
expect(component.isStale(date.toISOString(), 26)).toBeFalsy()
|
expect(component.isStale(date.toISOString(), 26)).toBeFalsy()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('should check if task is running', () => {
|
||||||
|
component.runTask(PaperlessTaskName.IndexOptimize)
|
||||||
|
expect(component.isRunning(PaperlessTaskName.IndexOptimize)).toBeTruthy()
|
||||||
|
expect(component.isRunning(PaperlessTaskName.SanityCheck)).toBeFalsy()
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should support running tasks, refresh status and show toasts', () => {
|
||||||
|
const toastSpy = jest.spyOn(toastService, 'showInfo')
|
||||||
|
const toastErrorSpy = jest.spyOn(toastService, 'showError')
|
||||||
|
const getStatusSpy = jest.spyOn(systemStatusService, 'get')
|
||||||
|
const runSpy = jest.spyOn(tasksService, 'run')
|
||||||
|
|
||||||
|
// fail first
|
||||||
|
runSpy.mockReturnValue(throwError(() => new Error('error')))
|
||||||
|
component.runTask(PaperlessTaskName.IndexOptimize)
|
||||||
|
expect(runSpy).toHaveBeenCalledWith(PaperlessTaskName.IndexOptimize)
|
||||||
|
expect(toastErrorSpy).toHaveBeenCalledWith(
|
||||||
|
`Failed to start task ${PaperlessTaskName.IndexOptimize}, see the logs for more details`,
|
||||||
|
expect.any(Error)
|
||||||
|
)
|
||||||
|
|
||||||
|
// succeed
|
||||||
|
runSpy.mockReturnValue(of({}))
|
||||||
|
getStatusSpy.mockReturnValue(of(status))
|
||||||
|
component.runTask(PaperlessTaskName.IndexOptimize)
|
||||||
|
expect(runSpy).toHaveBeenCalledWith(PaperlessTaskName.IndexOptimize)
|
||||||
|
|
||||||
|
expect(getStatusSpy).toHaveBeenCalled()
|
||||||
|
expect(toastSpy).toHaveBeenCalledWith(
|
||||||
|
`Task ${PaperlessTaskName.IndexOptimize} started`
|
||||||
|
)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
@ -49,7 +49,7 @@ export class SystemStatusDialogComponent {
|
|||||||
constructor(
|
constructor(
|
||||||
public activeModal: NgbActiveModal,
|
public activeModal: NgbActiveModal,
|
||||||
private clipboard: Clipboard,
|
private clipboard: Clipboard,
|
||||||
private statusService: SystemStatusService,
|
private systemStatusService: SystemStatusService,
|
||||||
private tasksService: TasksService,
|
private tasksService: TasksService,
|
||||||
private toastService: ToastService,
|
private toastService: ToastService,
|
||||||
private permissionsService: PermissionsService
|
private permissionsService: PermissionsService
|
||||||
@ -83,7 +83,7 @@ export class SystemStatusDialogComponent {
|
|||||||
this.tasksService.run(taskName).subscribe({
|
this.tasksService.run(taskName).subscribe({
|
||||||
next: () => {
|
next: () => {
|
||||||
this.runningTasks.delete(taskName)
|
this.runningTasks.delete(taskName)
|
||||||
this.statusService.get().subscribe({
|
this.systemStatusService.get().subscribe({
|
||||||
next: (status) => {
|
next: (status) => {
|
||||||
this.status = status
|
this.status = status
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user