-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad40d8e
commit 3f81de5
Showing
3 changed files
with
165 additions
and
6 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
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 |
---|---|---|
@@ -0,0 +1,159 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { ReleasePreviewComponent } from './release-preview.component'; | ||
import { ReleasePreviewService } from './release-preview.service'; | ||
import { of, throwError } from 'rxjs'; | ||
import { TranslateService } from '@ngx-translate/core'; | ||
import { LanguageService } from '../../core/services/language/language.service'; | ||
import { ThemeService } from '../../core/services/theme/theme.service'; | ||
import { CommonUtils } from '../../shared/utils/common.utils'; | ||
import { FormsModule } from '@angular/forms'; | ||
import { CommonModule } from '@angular/common'; | ||
import { TranslateModule } from '@ngx-translate/core'; | ||
import { MarkdownModule } from 'ngx-markdown'; | ||
import { | ||
provideHttpClient, | ||
withInterceptorsFromDi | ||
} from '@angular/common/http'; | ||
import { provideHttpClientTesting } from '@angular/common/http/testing'; | ||
|
||
class MockReleasePreviewService { | ||
extractZipDetails(file: File) { | ||
return of({ | ||
description: { | ||
en: 'Description in English', | ||
de: 'Beschreibung auf Deutsch' | ||
}, | ||
setup: { en: 'Setup in English', de: 'Setup auf Deutsch' }, | ||
demo: { en: 'Demo in English', de: 'Demo auf Deutsch' } | ||
}); | ||
} | ||
} | ||
|
||
describe('ReleasePreviewComponent', () => { | ||
let component: ReleasePreviewComponent; | ||
let fixture: ComponentFixture<ReleasePreviewComponent>; | ||
let releasePreviewService: ReleasePreviewService; | ||
let languageService: jasmine.SpyObj<LanguageService>; | ||
|
||
beforeEach(async () => { | ||
const routingQueryParamServiceSpy = jasmine.createSpyObj( | ||
'RoutingQueryParamService', | ||
['getDesignerVersionFromSessionStorage', 'isDesignerEnv'] | ||
); | ||
|
||
const languageServiceSpy = jasmine.createSpyObj('LanguageService', [ | ||
'selectedLanguage' | ||
]); | ||
|
||
await TestBed.configureTestingModule({ | ||
imports: [ | ||
ReleasePreviewComponent, | ||
TranslateModule.forRoot(), | ||
MarkdownModule.forRoot() | ||
], | ||
providers: [ | ||
provideHttpClient(withInterceptorsFromDi()), | ||
provideHttpClientTesting(), | ||
{ | ||
provide: LanguageService, | ||
useValue: languageServiceSpy | ||
} | ||
] | ||
}).compileComponents(); | ||
languageService = TestBed.inject( | ||
LanguageService | ||
) as jasmine.SpyObj<LanguageService>; | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(ReleasePreviewComponent); | ||
component = fixture.componentInstance; | ||
releasePreviewService = TestBed.inject(ReleasePreviewService); | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
|
||
it('should set selected file on file selection', () => { | ||
const mockFile = new File(['content'], 'test.zip', { | ||
type: 'application/zip' | ||
}); | ||
const event = { | ||
target: { | ||
files: [mockFile] | ||
} | ||
} as unknown as Event; | ||
|
||
component.onFileSelected(event); | ||
|
||
expect(component.selectedFile).toEqual(mockFile); | ||
expect(component.isZipFile).toBeTrue(); | ||
expect(component.errorMessage).toBe(''); | ||
}); | ||
|
||
it('should display error for non-zip file', () => { | ||
const mockFile = new File(['content'], 'test.txt', { type: 'text/plain' }); | ||
const event = { | ||
target: { | ||
files: [mockFile] | ||
} | ||
} as unknown as Event; | ||
|
||
component.onFileSelected(event); | ||
|
||
expect(component.selectedFile).toEqual(mockFile); | ||
expect(component.isZipFile).toBeFalse(); | ||
expect(component.errorMessage).toBe('Please upload a valid ZIP file.'); | ||
}); | ||
|
||
it('should update tabs on valid response', () => { | ||
const mockResponse = { | ||
description: { | ||
en: 'Description in English', | ||
de: 'Beschreibung auf Deutsch' | ||
}, | ||
setup: { en: 'Setup in English', de: 'Setup auf Deutsch' }, | ||
demo: { en: 'Demo in English', de: 'Demo auf Deutsch' } | ||
}; | ||
|
||
component.updateTabs(mockResponse); | ||
|
||
expect(component.tabs.length).toBe(3); | ||
expect(component.tabs[0].label).toBe('Description'); | ||
expect(component.tabs[0].content).toBe('Description in English'); | ||
}); | ||
|
||
it('should handle file upload and call service', () => { | ||
spyOn(releasePreviewService, 'extractZipDetails').and.callThrough(); | ||
|
||
const mockFile = new File(['content'], 'test.zip', { | ||
type: 'application/zip' | ||
}); | ||
component.selectedFile = mockFile; | ||
component.isZipFile = true; | ||
|
||
component.onSubmit(); | ||
|
||
expect(releasePreviewService.extractZipDetails).toHaveBeenCalledWith( | ||
mockFile | ||
); | ||
}); | ||
|
||
it('should display error message on service error', () => { | ||
spyOn(releasePreviewService, 'extractZipDetails').and.returnValue( | ||
throwError(() => new Error('Service error')) | ||
); | ||
|
||
const mockFile = new File(['content'], 'test.zip', { | ||
type: 'application/zip' | ||
}); | ||
component.selectedFile = mockFile; | ||
component.isZipFile = true; | ||
|
||
component.onSubmit(); | ||
|
||
expect(component.errorMessage).toBe('Service error'); | ||
}); | ||
}); |
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