mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-01 11:19:32 -05:00
136 lines
4.5 KiB
TypeScript
136 lines
4.5 KiB
TypeScript
import { HttpClientTestingModule } from '@angular/common/http/testing'
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing'
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms'
|
|
import { NgbActiveModal, NgbModule } from '@ng-bootstrap/ng-bootstrap'
|
|
import { NgSelectModule } from '@ng-select/ng-select'
|
|
import { of } from 'rxjs'
|
|
import { IfOwnerDirective } from 'src/app/directives/if-owner.directive'
|
|
import { IfPermissionsDirective } from 'src/app/directives/if-permissions.directive'
|
|
import { SafeHtmlPipe } from 'src/app/pipes/safehtml.pipe'
|
|
import { CorrespondentService } from 'src/app/services/rest/correspondent.service'
|
|
import { DocumentTypeService } from 'src/app/services/rest/document-type.service'
|
|
import { MailRuleService } from 'src/app/services/rest/mail-rule.service'
|
|
import { StoragePathService } from 'src/app/services/rest/storage-path.service'
|
|
import { SettingsService } from 'src/app/services/settings.service'
|
|
import { NumberComponent } from '../../input/number/number.component'
|
|
import { PermissionsGroupComponent } from '../../input/permissions/permissions-group/permissions-group.component'
|
|
import { PermissionsUserComponent } from '../../input/permissions/permissions-user/permissions-user.component'
|
|
import { SelectComponent } from '../../input/select/select.component'
|
|
import { TagsComponent } from '../../input/tags/tags.component'
|
|
import { TextComponent } from '../../input/text/text.component'
|
|
import { EditDialogMode } from '../edit-dialog.component'
|
|
import { ConsumptionTemplateEditDialogComponent } from './consumption-template-edit-dialog.component'
|
|
import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service'
|
|
|
|
describe('ConsumptionTemplateEditDialogComponent', () => {
|
|
let component: ConsumptionTemplateEditDialogComponent
|
|
let settingsService: SettingsService
|
|
let fixture: ComponentFixture<ConsumptionTemplateEditDialogComponent>
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [
|
|
ConsumptionTemplateEditDialogComponent,
|
|
IfPermissionsDirective,
|
|
IfOwnerDirective,
|
|
SelectComponent,
|
|
TextComponent,
|
|
NumberComponent,
|
|
TagsComponent,
|
|
PermissionsUserComponent,
|
|
PermissionsGroupComponent,
|
|
SafeHtmlPipe,
|
|
],
|
|
providers: [
|
|
NgbActiveModal,
|
|
{
|
|
provide: CorrespondentService,
|
|
useValue: {
|
|
listAll: () =>
|
|
of({
|
|
results: [
|
|
{
|
|
id: 1,
|
|
username: 'c1',
|
|
},
|
|
],
|
|
}),
|
|
},
|
|
},
|
|
{
|
|
provide: DocumentTypeService,
|
|
useValue: {
|
|
listAll: () =>
|
|
of({
|
|
results: [
|
|
{
|
|
id: 1,
|
|
username: 'dt1',
|
|
},
|
|
],
|
|
}),
|
|
},
|
|
},
|
|
{
|
|
provide: StoragePathService,
|
|
useValue: {
|
|
listAll: () =>
|
|
of({
|
|
results: [
|
|
{
|
|
id: 1,
|
|
username: 'sp1',
|
|
},
|
|
],
|
|
}),
|
|
},
|
|
},
|
|
{
|
|
provide: MailRuleService,
|
|
useValue: {
|
|
listAll: () =>
|
|
of({
|
|
results: [],
|
|
}),
|
|
},
|
|
},
|
|
{
|
|
provide: CustomFieldsService,
|
|
useValue: {
|
|
listAll: () =>
|
|
of({
|
|
results: [],
|
|
}),
|
|
},
|
|
},
|
|
],
|
|
imports: [
|
|
HttpClientTestingModule,
|
|
FormsModule,
|
|
ReactiveFormsModule,
|
|
NgSelectModule,
|
|
NgbModule,
|
|
],
|
|
}).compileComponents()
|
|
|
|
fixture = TestBed.createComponent(ConsumptionTemplateEditDialogComponent)
|
|
settingsService = TestBed.inject(SettingsService)
|
|
settingsService.currentUser = { id: 99, username: 'user99' }
|
|
component = fixture.componentInstance
|
|
|
|
fixture.detectChanges()
|
|
})
|
|
|
|
it('should support create and edit modes', () => {
|
|
component.dialogMode = EditDialogMode.CREATE
|
|
const createTitleSpy = jest.spyOn(component, 'getCreateTitle')
|
|
const editTitleSpy = jest.spyOn(component, 'getEditTitle')
|
|
fixture.detectChanges()
|
|
expect(createTitleSpy).toHaveBeenCalled()
|
|
expect(editTitleSpy).not.toHaveBeenCalled()
|
|
component.dialogMode = EditDialogMode.EDIT
|
|
fixture.detectChanges()
|
|
expect(editTitleSpy).toHaveBeenCalled()
|
|
})
|
|
})
|