-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: unit test the intacct export log pages (#989)
* test: unit test intacct export log root component * fix: page size change not updating localstorage Currently the page size saved in localstorage does not update at all in intacct export logs. After this change, we store the new page size to localstorage on page size being updated * fix: `selectedDateFilter` default type * test: intacct completed export log component * test: intacct skip export log component * fix: page size change not updating localstorage Currently the page size saved in localstorage does not update at all in intacct skipped export logs. After this change, we store the new page size to localstorage on page size being updated * fix: default types of `searchQuery` and `selectedDateFilter`
- Loading branch information
1 parent
b2c0674
commit 79bede5
Showing
7 changed files
with
393 additions
and
24 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
136 changes: 128 additions & 8 deletions
136
...ct-export-log/intacct-completed-export-log/intacct-completed-export-log.component.spec.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 |
---|---|---|
@@ -1,23 +1,143 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { ComponentFixture, TestBed, fakeAsync, tick } from '@angular/core/testing'; | ||
import { FormBuilder, ReactiveFormsModule } from '@angular/forms'; | ||
import { of } from 'rxjs'; | ||
import { IntacctCompletedExportLogComponent } from './intacct-completed-export-log.component'; | ||
import { TrackingService } from 'src/app/core/services/integration/tracking.service'; | ||
import { ExportLogService } from 'src/app/core/services/common/export-log.service'; | ||
import { PaginatorService } from 'src/app/core/services/common/paginator.service'; | ||
import { UserService } from 'src/app/core/services/misc/user.service'; | ||
import { mockExpenseGroupResponse, mockPaginator } from '../../../intacct.fixture'; | ||
import { PaginatorPage, TaskLogState } from 'src/app/core/models/enum/enum.model'; | ||
import { MinimalUser } from 'src/app/core/models/db/user.model'; | ||
import { SharedModule } from 'src/app/shared/shared.module'; | ||
|
||
xdescribe('IntacctCompletedExportLogComponent', () => { | ||
describe('IntacctCompletedExportLogComponent', () => { | ||
let component: IntacctCompletedExportLogComponent; | ||
let fixture: ComponentFixture<IntacctCompletedExportLogComponent>; | ||
let exportLogService: jasmine.SpyObj<ExportLogService>; | ||
let trackingService: jasmine.SpyObj<TrackingService>; | ||
let paginatorService: jasmine.SpyObj<PaginatorService>; | ||
let userService: jasmine.SpyObj<UserService>; | ||
|
||
beforeEach(async () => { | ||
const exportLogServiceSpy = jasmine.createSpyObj('ExportLogService', ['getExpenseGroups']); | ||
const trackingServiceSpy = jasmine.createSpyObj('TrackingService', ['onDateFilter']); | ||
const paginatorServiceSpy = jasmine.createSpyObj('PaginatorService', ['getPageSize', 'storePageSize']); | ||
const userServiceSpy = jasmine.createSpyObj('UserService', ['getUserProfile']); | ||
|
||
await TestBed.configureTestingModule({ | ||
declarations: [ IntacctCompletedExportLogComponent ] | ||
}) | ||
.compileComponents(); | ||
declarations: [ IntacctCompletedExportLogComponent ], | ||
imports: [ ReactiveFormsModule, SharedModule ], | ||
providers: [ | ||
FormBuilder, | ||
{ provide: ExportLogService, useValue: exportLogServiceSpy }, | ||
{ provide: TrackingService, useValue: trackingServiceSpy }, | ||
{ provide: PaginatorService, useValue: paginatorServiceSpy }, | ||
{ provide: UserService, useValue: userServiceSpy } | ||
] | ||
}).compileComponents(); | ||
|
||
exportLogService = TestBed.inject(ExportLogService) as jasmine.SpyObj<ExportLogService>; | ||
trackingService = TestBed.inject(TrackingService) as jasmine.SpyObj<TrackingService>; | ||
paginatorService = TestBed.inject(PaginatorService) as jasmine.SpyObj<PaginatorService>; | ||
userService = TestBed.inject(UserService) as jasmine.SpyObj<UserService>; | ||
|
||
userService.getUserProfile.and.returnValue({ org_id: 'ORG123' } as MinimalUser); | ||
paginatorService.getPageSize.and.returnValue(mockPaginator); | ||
exportLogService.getExpenseGroups.and.returnValue(of(mockExpenseGroupResponse)); | ||
|
||
fixture = TestBed.createComponent(IntacctCompletedExportLogComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); | ||
|
||
it('should initialize component and load data', () => { | ||
component.ngOnInit(); | ||
expect(component.limit).toBe(mockPaginator.limit); | ||
expect(component.offset).toBe(mockPaginator.offset); | ||
expect(component.isLoading).toBeFalse(); | ||
expect(component.totalCount).toBe(mockExpenseGroupResponse.count); | ||
expect(component.filteredAccountingExports.length).toBe(mockExpenseGroupResponse.results.length); | ||
expect(component.filteredAccountingExports).toEqual(component.accountingExports); | ||
}); | ||
|
||
it('should handle page size changes', () => { | ||
const newLimit = 20; | ||
component.pageSizeChanges(newLimit); | ||
expect(component.limit).toBe(newLimit); | ||
expect(component.currentPage).toBe(1); | ||
expect(paginatorService.storePageSize).toHaveBeenCalledWith(PaginatorPage.EXPORT_LOG, newLimit); | ||
expect(exportLogService.getExpenseGroups).toHaveBeenCalled(); | ||
}); | ||
|
||
it('should handle page changes', () => { | ||
fixture.detectChanges(); | ||
component.pageChanges(10); | ||
expect(component.offset).toBe(10); | ||
expect(component.currentPage).toBe(2); | ||
expect(exportLogService.getExpenseGroups).toHaveBeenCalled(); | ||
}); | ||
|
||
it('should handle simple search', fakeAsync(() => { | ||
const searchQuery = 'test query'; | ||
fixture.detectChanges(); | ||
component.handleSimpleSearch(searchQuery); | ||
tick(1000); | ||
expect(component.searchQuery).toBe(searchQuery); | ||
expect(component.offset).toBe(0); | ||
expect(component.currentPage).toBe(1); | ||
expect(exportLogService.getExpenseGroups).toHaveBeenCalled(); | ||
})); | ||
|
||
it('should open expense in Fyle', () => { | ||
const expenseId = 'exp123'; | ||
spyOn(window, 'open'); | ||
component.openExpenseinFyle(expenseId); | ||
expect(window.open).toHaveBeenCalledWith(jasmine.stringContaining(expenseId), '_blank'); | ||
}); | ||
|
||
it('should handle date filter changes', fakeAsync(() => { | ||
component.ngOnInit(); | ||
const dateRange = [new Date('2023-01-01'), new Date('2023-01-31')]; | ||
component.exportLogForm.controls.start.setValue(dateRange); | ||
tick(10); | ||
expect(component.selectedDateFilter).toEqual({ | ||
startDate: dateRange[0], | ||
endDate: dateRange[1] | ||
}); | ||
expect(component.isDateSelected).toBeTrue(); | ||
expect(exportLogService.getExpenseGroups).toHaveBeenCalled(); | ||
expect(component.hideCalendar).toBeFalse(); | ||
})); | ||
|
||
it('should clear date filter when null is set', fakeAsync(() => { | ||
fixture.detectChanges(); | ||
component.exportLogForm.controls.start.setValue(null); | ||
tick(10); | ||
expect(component.selectedDateFilter).toBeNull(); | ||
expect(component.isDateSelected).toBeFalse(); | ||
expect(exportLogService.getExpenseGroups).toHaveBeenCalled(); | ||
})); | ||
|
||
it('should call getExpenseGroups with correct parameters', () => { | ||
component.ngOnInit(); | ||
expect(exportLogService.getExpenseGroups).toHaveBeenCalledWith( | ||
TaskLogState.COMPLETE, | ||
mockPaginator.limit, | ||
mockPaginator.offset, | ||
undefined, | ||
null, | ||
undefined | ||
); | ||
}); | ||
|
||
it('should track date filter', () => { | ||
const dateFilter = { startDate: new Date('2023-01-01'), endDate: new Date('2023-01-31') }; | ||
(component as any).trackDateFilter('custom', dateFilter); | ||
expect(trackingService.onDateFilter).toHaveBeenCalledWith(jasmine.any(String), jasmine.objectContaining(dateFilter)); | ||
}); | ||
}); |
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
136 changes: 128 additions & 8 deletions
136
...main/intacct-export-log/intacct-skip-export-log/intacct-skip-export-log.component.spec.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 |
---|---|---|
@@ -1,23 +1,143 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { ComponentFixture, TestBed, fakeAsync, tick } from '@angular/core/testing'; | ||
import { FormBuilder, ReactiveFormsModule } from '@angular/forms'; | ||
import { of } from 'rxjs'; | ||
import { IntacctSkipExportLogComponent } from './intacct-skip-export-log.component'; | ||
import { TrackingService } from 'src/app/core/services/integration/tracking.service'; | ||
import { ExportLogService } from 'src/app/core/services/common/export-log.service'; | ||
import { PaginatorService } from 'src/app/core/services/si/si-core/paginator.service'; | ||
import { UserService } from 'src/app/core/services/misc/user.service'; | ||
import { mockSkipExportLogResponse, mockPaginator } from '../../../intacct.fixture'; | ||
import { PaginatorPage } from 'src/app/core/models/enum/enum.model'; | ||
import { MinimalUser } from 'src/app/core/models/db/user.model'; | ||
import { SharedModule } from 'src/app/shared/shared.module'; | ||
|
||
xdescribe('SkipExportLogComponent', () => { | ||
describe('IntacctSkipExportLogComponent', () => { | ||
let component: IntacctSkipExportLogComponent; | ||
let fixture: ComponentFixture<IntacctSkipExportLogComponent>; | ||
let exportLogService: jasmine.SpyObj<ExportLogService>; | ||
let trackingService: jasmine.SpyObj<TrackingService>; | ||
let paginatorService: jasmine.SpyObj<PaginatorService>; | ||
let userService: jasmine.SpyObj<UserService>; | ||
|
||
beforeEach(async () => { | ||
const exportLogServiceSpy = jasmine.createSpyObj('ExportLogService', ['getSkippedExpenses']); | ||
const trackingServiceSpy = jasmine.createSpyObj('TrackingService', ['onDateFilter']); | ||
const paginatorServiceSpy = jasmine.createSpyObj('PaginatorService', ['getPageSize', 'storePageSize']); | ||
const userServiceSpy = jasmine.createSpyObj('UserService', ['getUserProfile']); | ||
|
||
await TestBed.configureTestingModule({ | ||
declarations: [ IntacctSkipExportLogComponent ] | ||
}) | ||
.compileComponents(); | ||
imports: [ ReactiveFormsModule, SharedModule ], | ||
declarations: [ IntacctSkipExportLogComponent ], | ||
providers: [ | ||
FormBuilder, | ||
{ provide: ExportLogService, useValue: exportLogServiceSpy }, | ||
{ provide: TrackingService, useValue: trackingServiceSpy }, | ||
{ provide: PaginatorService, useValue: paginatorServiceSpy }, | ||
{ provide: UserService, useValue: userServiceSpy } | ||
] | ||
}).compileComponents(); | ||
|
||
exportLogService = TestBed.inject(ExportLogService) as jasmine.SpyObj<ExportLogService>; | ||
trackingService = TestBed.inject(TrackingService) as jasmine.SpyObj<TrackingService>; | ||
paginatorService = TestBed.inject(PaginatorService) as jasmine.SpyObj<PaginatorService>; | ||
userService = TestBed.inject(UserService) as jasmine.SpyObj<UserService>; | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(IntacctSkipExportLogComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
userService.getUserProfile.and.returnValue({ org_id: 'ORG123' } as MinimalUser); | ||
paginatorService.getPageSize.and.returnValue(mockPaginator); | ||
exportLogService.getSkippedExpenses.and.returnValue(of(mockSkipExportLogResponse)); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); | ||
|
||
it('should initialize component and load data', () => { | ||
component.ngOnInit(); | ||
expect(component.limit).toBe(mockPaginator.limit); | ||
expect(component.offset).toBe(mockPaginator.offset); | ||
expect(component.isLoading).toBeFalse(); | ||
expect(component.totalCount).toBe(mockSkipExportLogResponse.count); | ||
expect(component.filteredExpenses.length).toBe(mockSkipExportLogResponse.results.length); | ||
expect(component.filteredExpenses).toEqual(component.expenses); | ||
}); | ||
|
||
it('should handle page size changes', () => { | ||
const newLimit = 20; | ||
component.pageSizeChanges(newLimit); | ||
expect(component.limit).toBe(newLimit); | ||
expect(component.currentPage).toBe(1); | ||
expect(paginatorService.storePageSize).toHaveBeenCalledWith(PaginatorPage.EXPORT_LOG, newLimit); | ||
expect(exportLogService.getSkippedExpenses).toHaveBeenCalled(); | ||
}); | ||
|
||
it('should handle page changes', () => { | ||
fixture.detectChanges(); | ||
const newOffset = 10; | ||
component.pageChanges(newOffset); | ||
expect(component.offset).toBe(newOffset); | ||
expect(component.currentPage).toBe(2); | ||
expect(exportLogService.getSkippedExpenses).toHaveBeenCalled(); | ||
}); | ||
|
||
it('should handle simple search', fakeAsync(() => { | ||
fixture.detectChanges(); | ||
const searchQuery = 'test query'; | ||
component.handleSimpleSearch(searchQuery); | ||
tick(1000); | ||
expect(component.searchQuery).toBe(searchQuery); | ||
expect(component.offset).toBe(0); | ||
expect(component.currentPage).toBe(1); | ||
expect(exportLogService.getSkippedExpenses).toHaveBeenCalled(); | ||
})); | ||
|
||
it('should handle date filter changes', fakeAsync(() => { | ||
component.ngOnInit(); | ||
const dateRange = [new Date('2023-01-01'), new Date('2023-01-31')]; | ||
component.skipExportLogForm.controls.start.setValue(dateRange); | ||
tick(10); | ||
expect(component.selectedDateFilter).toEqual({ | ||
startDate: dateRange[0], | ||
endDate: dateRange[1] | ||
}); | ||
expect(component.isDateSelected).toBeTrue(); | ||
expect(exportLogService.getSkippedExpenses).toHaveBeenCalled(); | ||
})); | ||
|
||
it('should clear date filter when null is set', fakeAsync(() => { | ||
component.ngOnInit(); | ||
component.skipExportLogForm.controls.start.setValue(null); | ||
tick(10); | ||
expect(component.selectedDateFilter).toBeNull(); | ||
expect(component.isDateSelected).toBeFalse(); | ||
expect(exportLogService.getSkippedExpenses).toHaveBeenCalled(); | ||
})); | ||
|
||
it('should call getSkippedExpenses with correct parameters', () => { | ||
fixture.detectChanges(); | ||
expect(exportLogService.getSkippedExpenses).toHaveBeenCalledWith( | ||
mockPaginator.limit, | ||
mockPaginator.offset, | ||
undefined, | ||
undefined | ||
); | ||
}); | ||
|
||
it('should track date filter', () => { | ||
const dateFilter = { startDate: new Date('2023-01-01'), endDate: new Date('2023-01-31') }; | ||
(component as any).trackDateFilter('custom', dateFilter); | ||
expect(trackingService.onDateFilter).toHaveBeenCalledWith(jasmine.any(String), jasmine.objectContaining(dateFilter)); | ||
}); | ||
|
||
it('should set hideCalendar to false after timeout', fakeAsync(() => { | ||
component.ngOnInit(); | ||
const dateRange = [new Date('2023-01-01'), new Date('2023-01-31')]; | ||
component.skipExportLogForm.controls.start.setValue(dateRange); | ||
expect(component.hideCalendar).toBeTrue(); | ||
tick(10); | ||
expect(component.hideCalendar).toBeFalse(); | ||
})); | ||
}); |
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
Oops, something went wrong.