-
Notifications
You must be signed in to change notification settings - Fork 0
test: intacct advanced settings utility functions #1027
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
JustARatherRidiculouslyLongUsername
merged 7 commits into
master
from
ut-intacct-advanced-settings-utils
Oct 18, 2024
Merged
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1a7a5fc
test: intacct advanced settings initialization
JustARatherRidiculouslyLongUsername 5898fe2
test: intacct advanced settings watchers
JustARatherRidiculouslyLongUsername fbaadfe
test: intacct advanced settings save functionality
JustARatherRidiculouslyLongUsername f79dc59
test: intacct advanced settings utility functions
JustARatherRidiculouslyLongUsername 14673d9
refactor: typo
JustARatherRidiculouslyLongUsername b36797c
refactor: update type
JustARatherRidiculouslyLongUsername 6a1902e
Merge branch 'master' into ut-intacct-advanced-settings-utils
JustARatherRidiculouslyLongUsername File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
324 changes: 316 additions & 8 deletions
324
...acct/intacct-shared/intacct-advanced-settings/intacct-advanced-settings.component.spec.ts
This file contains hidden or 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,331 @@ | ||
| import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
|
||
| /* eslint-disable dot-notation */ | ||
| import { ComponentFixture, fakeAsync, TestBed, tick } from '@angular/core/testing'; | ||
| import { FormBuilder, FormGroup, ReactiveFormsModule, Validators } from '@angular/forms'; | ||
| import { provideRouter, Router } from '@angular/router'; | ||
| import { of, throwError } from 'rxjs'; | ||
| import { IntacctAdvancedSettingsComponent } from './intacct-advanced-settings.component'; | ||
| import { SiAdvancedSettingService } from 'src/app/core/services/si/si-configuration/si-advanced-setting.service'; | ||
| import { IntegrationsToastService } from 'src/app/core/services/common/integrations-toast.service'; | ||
| import { TrackingService } from 'src/app/core/services/integration/tracking.service'; | ||
| import { SiWorkspaceService } from 'src/app/core/services/si/si-core/si-workspace.service'; | ||
| import { SiMappingsService } from 'src/app/core/services/si/si-core/si-mappings.service'; | ||
| import { SkipExportComponent } from 'src/app/shared/components/si/helper/skip-export/skip-export.component'; | ||
| import { adminEmails, advancedSettings, configurationForAdvancedSettings, configurationWithFyleToIntacct, configurationWithIntacctToFyle, configurationWithOutSync, expenseFilter, groupedAttributes } from '../../intacct.fixture'; | ||
| import { Configuration, ExpenseFilterResponse } from 'src/app/core/models/intacct/intacct-configuration/advanced-settings.model'; | ||
| import { SharedModule } from 'src/app/shared/shared.module'; | ||
| import { IntacctOnboardingState, PaymentSyncDirection, ToastSeverity } from 'src/app/core/models/enum/enum.model'; | ||
| import { SkipExport } from 'src/app/core/models/intacct/misc/skip-export.model'; | ||
| import { DestinationAttribute } from 'src/app/core/models/db/destination-attribute.model'; | ||
|
|
||
| xdescribe('IntacctAdvancedSettingsComponent', () => { | ||
| describe('IntacctAdvancedSettingsComponent', () => { | ||
| let component: IntacctAdvancedSettingsComponent; | ||
| let fixture: ComponentFixture<IntacctAdvancedSettingsComponent>; | ||
| let advancedSettingsService: jasmine.SpyObj<SiAdvancedSettingService>; | ||
| let router: Router; | ||
| let toastService: jasmine.SpyObj<IntegrationsToastService>; | ||
| let trackingService: jasmine.SpyObj<TrackingService>; | ||
| let workspaceService: jasmine.SpyObj<SiWorkspaceService>; | ||
| let mappingService: jasmine.SpyObj<SiMappingsService>; | ||
|
|
||
|
|
||
| beforeEach(async () => { | ||
| const advancedSettingsServiceSpy = jasmine.createSpyObj('SiAdvancedSettingService', [ | ||
| 'getAdvancedSettings', | ||
| 'getExpenseFilter', | ||
| 'getAdditionalEmails', | ||
| 'postAdvancedSettings', | ||
| 'deleteExpenseFilter' | ||
| ]); | ||
| const toastServiceSpy = jasmine.createSpyObj('IntegrationsToastService', ['displayToastMessage']); | ||
| const trackingServiceSpy = jasmine.createSpyObj('TrackingService', ['trackTimeSpent', 'integrationsOnboardingCompletion', 'intacctUpdateEvent']); | ||
| const workspaceServiceSpy = jasmine.createSpyObj('SiWorkspaceService', ['getIntacctOnboardingState', 'setIntacctOnboardingState']); | ||
| const mappingServiceSpy = jasmine.createSpyObj('SiMappingsService', ['getGroupedDestinationAttributes', 'getConfiguration', 'refreshSageIntacctDimensions', 'refreshFyleDimensions']); | ||
| await TestBed.configureTestingModule({ | ||
| declarations: [ IntacctAdvancedSettingsComponent ] | ||
| }) | ||
| .compileComponents(); | ||
| declarations: [IntacctAdvancedSettingsComponent, SkipExportComponent], | ||
| imports: [SharedModule, ReactiveFormsModule], | ||
| providers: [ | ||
| FormBuilder, | ||
| { provide: SiAdvancedSettingService, useValue: advancedSettingsServiceSpy }, | ||
| { provide: IntegrationsToastService, useValue: toastServiceSpy }, | ||
| { provide: TrackingService, useValue: trackingServiceSpy }, | ||
| { provide: SiWorkspaceService, useValue: workspaceServiceSpy }, | ||
| { provide: SiMappingsService, useValue: mappingServiceSpy }, | ||
| provideRouter([]) | ||
| ] | ||
| }).compileComponents(); | ||
|
|
||
| advancedSettingsService = TestBed.inject(SiAdvancedSettingService) as jasmine.SpyObj<SiAdvancedSettingService>; | ||
| toastService = TestBed.inject(IntegrationsToastService) as jasmine.SpyObj<IntegrationsToastService>; | ||
| trackingService = TestBed.inject(TrackingService) as jasmine.SpyObj<TrackingService>; | ||
| workspaceService = TestBed.inject(SiWorkspaceService) as jasmine.SpyObj<SiWorkspaceService>; | ||
| mappingService = TestBed.inject(SiMappingsService) as jasmine.SpyObj<SiMappingsService>; | ||
| router = TestBed.inject(Router); | ||
| spyOn(router, 'navigate'); | ||
|
|
||
| advancedSettingsService.getAdditionalEmails.and.returnValue(of(adminEmails)); | ||
| advancedSettingsService.getAdvancedSettings.and.returnValue(of(advancedSettings)); | ||
| advancedSettingsService.getExpenseFilter.and.returnValue(of(expenseFilter as ExpenseFilterResponse)); | ||
| mappingService.getGroupedDestinationAttributes.and.returnValue(of(groupedAttributes)); | ||
| mappingService.getConfiguration.and.returnValue(of(configurationForAdvancedSettings)); | ||
|
|
||
| fixture = TestBed.createComponent(IntacctAdvancedSettingsComponent); | ||
| component = fixture.componentInstance; | ||
| fixture.detectChanges(); | ||
| }); | ||
|
|
||
| it('should create', () => { | ||
| expect(component).toBeTruthy(); | ||
| }); | ||
| }); | ||
|
|
||
| describe('Initialization', () => { | ||
| it('should initialize with correct data', fakeAsync(() => { | ||
| fixture.detectChanges(); | ||
| tick(); | ||
|
|
||
| expect(component.isLoading).toBeFalse(); | ||
| expect(component.adminEmails).toEqual(adminEmails.concat(advancedSettings.workspace_schedules.additional_email_options)); | ||
| expect(component.advancedSettings).toEqual(advancedSettings); | ||
| expect(component.sageIntacctLocations).toEqual(groupedAttributes.LOCATION); | ||
| expect(component.sageIntacctDefaultItem).toEqual(groupedAttributes.ITEM); | ||
| expect(component.sageIntacctDepartments).toEqual(groupedAttributes.DEPARTMENT); | ||
| expect(component.sageIntacctProjects).toEqual(groupedAttributes.PROJECT); | ||
| expect(component.sageIntacctClasses).toEqual(groupedAttributes.CLASS); | ||
| expect(component.sageIntacctPaymentAccount).toEqual(groupedAttributes.PAYMENT_ACCOUNT); | ||
| expect(component.reimbursableExpense).toEqual(configurationForAdvancedSettings.reimbursable_expenses_object); | ||
| expect(component.corporateCreditCardExpense).toEqual(configurationForAdvancedSettings.corporate_credit_card_expenses_object); | ||
| expect(component.importVendorsAsMerchants).toEqual(configurationForAdvancedSettings.import_vendors_as_merchants); | ||
| expect(component.useMerchantInJournalLine).toEqual(configurationForAdvancedSettings.use_merchant_in_journal_line); | ||
| expect(component.employeeFieldMapping).toEqual(configurationForAdvancedSettings.employee_field_mapping); | ||
| })); | ||
|
|
||
| it('should initialize forms correctly', () => { | ||
| fixture.detectChanges(); | ||
|
|
||
| expect(component.advancedSettingsForm).toBeDefined(); | ||
| expect(component.skipExportForm).toBeDefined(); | ||
|
|
||
| expect(component.advancedSettingsForm.get('exportSchedule')?.value).toBeTrue(); | ||
| expect(component.advancedSettingsForm.get('exportScheduleFrequency')?.value).toBe(12); | ||
| expect(component.advancedSettingsForm.get('setDescriptionField')?.value).toEqual(['employee_email', 'merchant', 'purpose']); | ||
| }); | ||
|
|
||
| it('should handle onboarding state correctly', () => { | ||
| spyOnProperty(router, 'url').and.returnValue('/integrations/intacct/onboarding/advanced_settings'); | ||
| fixture.detectChanges(); | ||
|
|
||
| expect(component.isOnboarding).toBeTrue(); | ||
| }); | ||
|
|
||
| it('should handle non-onboarding state correctly', () => { | ||
| spyOnProperty(router, 'url').and.returnValue('/integrations/intacct/advanced_settings'); | ||
| fixture.detectChanges(); | ||
|
|
||
| expect(component.isOnboarding).toBeFalse(); | ||
| }); | ||
|
|
||
| it('should create memo preview correctly', () => { | ||
| fixture.detectChanges(); | ||
|
|
||
| const expectedPreview = '[email protected] - Pizza Hut - Client Meeting'; | ||
| expect(component.memoPreviewText).toBe(expectedPreview); | ||
| }); | ||
| }); | ||
|
|
||
| describe('Watchers', () => { | ||
| beforeEach(() => { | ||
| fixture.detectChanges(); | ||
| }); | ||
|
|
||
| it('should update memo preview when setDescriptionField changes', fakeAsync(() => { | ||
| const newMemoStructure = ['category', 'purpose', 'spent_on']; | ||
| component.advancedSettingsForm.get('setDescriptionField')?.setValue(newMemoStructure); | ||
| tick(); | ||
|
|
||
| expect(component.memoStructure).toEqual(newMemoStructure); | ||
| expect(component.memoPreviewText).toBe('Client Meeting - Meals and Entertainment - ' + new Date(Date.now()).toLocaleDateString()); | ||
| })); | ||
|
|
||
| it('should update defaultPaymentAccount validators when autoSyncPayments changes', fakeAsync(() => { | ||
| component.advancedSettingsForm.get('autoSyncPayments')?.setValue(PaymentSyncDirection.FYLE_TO_INTACCT); | ||
| tick(); | ||
|
|
||
| expect(component.advancedSettingsForm.get('defaultPaymentAccount')?.hasValidator(Validators.required)).toBeTrue(); | ||
|
|
||
| component.advancedSettingsForm.get('autoSyncPayments')?.setValue(null); | ||
| tick(); | ||
|
|
||
| expect(component.advancedSettingsForm.get('defaultPaymentAccount')?.hasValidator(Validators.required)).toBeFalse(); | ||
| })); | ||
| }); | ||
|
|
||
| describe('Save', () => { | ||
| beforeEach(fakeAsync(() => { | ||
| fixture.detectChanges(); | ||
| advancedSettingsService.deleteExpenseFilter.and.returnValue(of({} as SkipExport)); | ||
| })); | ||
|
|
||
| it('should handle save advanced settings during onboarding', fakeAsync(() => { | ||
| const mockResponse = { ...advancedSettings }; | ||
| advancedSettingsService.postAdvancedSettings.and.returnValue(of(mockResponse)); | ||
| workspaceService.getIntacctOnboardingState.and.returnValue(IntacctOnboardingState.ADVANCED_CONFIGURATION); | ||
|
|
||
| component.skipExportChild = { saveSkipExportFields: jasmine.createSpy('saveSkipExportFields') } as any; | ||
| component.advancedSettingsForm.get('skipSelectiveExpenses')?.setValue(true); | ||
| component.isOnboarding = true; | ||
|
|
||
| component.save(); | ||
| tick(); | ||
|
|
||
| expect(advancedSettingsService.postAdvancedSettings).toHaveBeenCalled(); | ||
| expect(component.skipExportChild.saveSkipExportFields).toHaveBeenCalled(); | ||
| expect(toastService.displayToastMessage).toHaveBeenCalledWith(ToastSeverity.SUCCESS, 'Advanced settings saved successfully'); | ||
| expect(trackingService.trackTimeSpent).toHaveBeenCalled(); | ||
| expect(trackingService.integrationsOnboardingCompletion).toHaveBeenCalled(); | ||
| expect(workspaceService.setIntacctOnboardingState).toHaveBeenCalledWith(IntacctOnboardingState.COMPLETE); | ||
| expect(router.navigate).toHaveBeenCalledWith(['/integrations/intacct/onboarding/done']); | ||
| })); | ||
|
|
||
| it('should handle save when skipSelectiveExpenses is false', fakeAsync(() => { | ||
| const mockResponse = { ...advancedSettings }; | ||
| advancedSettingsService.postAdvancedSettings.and.returnValue(of(mockResponse)); | ||
| advancedSettingsService.deleteExpenseFilter.and.returnValue(of({} as SkipExport)); | ||
| workspaceService.getIntacctOnboardingState.and.returnValue(IntacctOnboardingState.ADVANCED_CONFIGURATION); | ||
|
|
||
| component.advancedSettingsForm.get('skipSelectiveExpenses')?.setValue(false); | ||
|
|
||
| component.save(); | ||
| tick(); | ||
|
|
||
| expect(advancedSettingsService.postAdvancedSettings).toHaveBeenCalled(); | ||
| expect(advancedSettingsService.deleteExpenseFilter).toHaveBeenCalledTimes(2); | ||
| expect(advancedSettingsService.deleteExpenseFilter).toHaveBeenCalledWith(1); | ||
| expect(advancedSettingsService.deleteExpenseFilter).toHaveBeenCalledWith(2); | ||
| expect(toastService.displayToastMessage).toHaveBeenCalledWith(ToastSeverity.SUCCESS, 'Advanced settings saved successfully'); | ||
| })); | ||
|
|
||
| it('should handle save when not in onboarding state', fakeAsync(() => { | ||
| const mockResponse = { ...advancedSettings }; | ||
| advancedSettingsService.postAdvancedSettings.and.returnValue(of(mockResponse)); | ||
| workspaceService.getIntacctOnboardingState.and.returnValue(IntacctOnboardingState.COMPLETE); | ||
|
|
||
| component.isOnboarding = false; | ||
| component.save(); | ||
| tick(); | ||
|
|
||
| expect(advancedSettingsService.postAdvancedSettings).toHaveBeenCalled(); | ||
| expect(trackingService.intacctUpdateEvent).toHaveBeenCalled(); | ||
| expect(router.navigate).not.toHaveBeenCalled(); | ||
| })); | ||
|
|
||
| it('should handle error when saving advanced settings', fakeAsync(() => { | ||
| const getError = () => new Error('Error'); | ||
| advancedSettingsService.postAdvancedSettings.and.returnValue(throwError(getError)); | ||
|
|
||
| component.save(); | ||
| tick(); | ||
|
|
||
| expect(advancedSettingsService.postAdvancedSettings).toHaveBeenCalled(); | ||
| expect(toastService.displayToastMessage).toHaveBeenCalledWith(ToastSeverity.ERROR, 'Error saving advanced settings, please try again later'); | ||
| expect(component.saveInProgress).toBeFalse(); | ||
| })); | ||
| }); | ||
|
|
||
|
|
||
| describe('Utility Functions', () => { | ||
| describe('navigateToPreviousStep', () => { | ||
| it('should navigate to the import settings page', () => { | ||
| component.navigateToPreviousStep(); | ||
| expect(router.navigate).toHaveBeenCalledWith(['/integrations/intacct/onboarding/import_settings']); | ||
| }); | ||
| }); | ||
|
|
||
| describe('isOverflowing', () => { | ||
| it('should return the mapping value if element is overflowing', () => { | ||
| const element = { offsetWidth: 100, scrollWidth: 150 }; | ||
| const mapping = { value: 'test value' } as DestinationAttribute; | ||
| expect(component.isOverflowing(element, mapping)).toBe('test value'); | ||
| }); | ||
|
|
||
| it('should return an empty string if element is not overflowing', () => { | ||
| const element = { offsetWidth: 150, scrollWidth: 100 }; | ||
| const mapping = { value: 'test value' } as DestinationAttribute; | ||
| expect(component.isOverflowing(element, mapping)).toBe(''); | ||
| }); | ||
| }); | ||
|
|
||
| describe('refreshDimensions', () => { | ||
| it('should call refreshSageIntacctDimensions and refreshFyleDimensions', () => { | ||
| mappingService.refreshSageIntacctDimensions.and.returnValue(of({})); | ||
| mappingService.refreshFyleDimensions.and.returnValue(of({})); | ||
|
|
||
| component.refreshDimensions(true); | ||
|
|
||
| expect(mappingService.refreshSageIntacctDimensions).toHaveBeenCalled(); | ||
| expect(mappingService.refreshFyleDimensions).toHaveBeenCalled(); | ||
| expect(toastService.displayToastMessage).toHaveBeenCalledWith(ToastSeverity.SUCCESS, 'Syncing data dimensions from Sage Intacct'); | ||
| }); | ||
JustARatherRidiculouslyLongUsername marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| }); | ||
|
|
||
| describe('removeFilter', () => { | ||
| it('should reset the form control', () => { | ||
| const formGroup = new FormGroup({}); | ||
| const resetSpy = spyOn(formGroup, 'reset'); | ||
|
|
||
| component.removeFilter(formGroup); | ||
|
|
||
| expect(resetSpy).toHaveBeenCalled(); | ||
| }); | ||
| }); | ||
|
|
||
| describe('getPaymentSyncConfiguration', () => { | ||
| it('should return FYLE_TO_INTACCT when sync_fyle_to_sage_intacct_payments is true', () => { | ||
| expect(component['getPaymentSyncConfiguration'](configurationWithFyleToIntacct)).toBe(PaymentSyncDirection.FYLE_TO_INTACCT); | ||
| }); | ||
|
|
||
| it('should return INTACCT_TO_FYLE when sync_sage_intacct_to_fyle_payments is true', () => { | ||
| expect(component['getPaymentSyncConfiguration'](configurationWithIntacctToFyle)).toBe(PaymentSyncDirection.INTACCT_TO_FYLE); | ||
| }); | ||
|
|
||
| it('should return an empty string when both sync options are false', () => { | ||
| expect(component['getPaymentSyncConfiguration'](configurationWithOutSync)).toBe(''); | ||
| }); | ||
| }); | ||
|
|
||
| describe('compareObjects', () => { | ||
| it('should return true for identical objects', () => { | ||
| const obj1 = { id: 1, name: 'Test' }; | ||
| const obj2 = { id: 1, name: 'Test' }; | ||
| expect(component.compareObjects(obj1, obj2)).toBe(true); | ||
| }); | ||
|
|
||
| it('should return false for different objects', () => { | ||
| const obj1 = { id: 1, name: 'Test' }; | ||
| const obj2 = { id: 2, name: 'Different' }; | ||
| expect(component.compareObjects(obj1, obj2)).toBe(false); | ||
| }); | ||
| }); | ||
|
|
||
| describe('isCCT', () => { | ||
| beforeEach(() => { | ||
| fixture.detectChanges(); | ||
| }); | ||
|
|
||
| it('should return true when autoSyncPayments is FYLE_TO_INTACCT', () => { | ||
| component.advancedSettingsForm.patchValue({ autoSyncPayments: PaymentSyncDirection.FYLE_TO_INTACCT }); | ||
| expect(component.isCCT()).toBe(true); | ||
| }); | ||
|
|
||
| it('should return false when autoSyncPayments is not FYLE_TO_INTACCT', () => { | ||
| component.advancedSettingsForm.patchValue({ autoSyncPayments: PaymentSyncDirection.INTACCT_TO_FYLE }); | ||
| expect(component.isCCT()).toBe(false); | ||
| }); | ||
| }); | ||
|
|
||
| describe('updateForm', () => { | ||
| it('should update skipExportForm with the provided form', () => { | ||
| const newForm = new FormGroup({}); | ||
| component.updateForm(newForm); | ||
| expect(component.skipExportForm).toBe(newForm); | ||
| }); | ||
| }); | ||
| }); | ||
| }); | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.