-
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 f4042d8
Showing
4 changed files
with
236 additions
and
50 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 { LanguageService } from '../../core/services/language/language.service'; | ||
import { Language } from '../../shared/enums/language.enum'; | ||
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'; | ||
|
||
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(); | ||
}); | ||
|
||
it('should check 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(); | ||
}); | ||
|
||
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 filter tabs based on available content', () => { | ||
spyOn(component, 'getContent').and.callFake(tab => tab === 'description'); | ||
|
||
const displayedTabs = component.getDisplayedTabsSignal(); | ||
|
||
expect(displayedTabs.length).toBe(1); | ||
expect(displayedTabs[0].value).toBe('description'); | ||
}); | ||
|
||
it('should return true for description when in DE language it is not null and not undefined and not empty', () => { | ||
component.readmeContent.set({ | ||
description: { en: 'Description content' }, | ||
setup: {}, | ||
demo: {} | ||
}); | ||
|
||
const selectedLanguage = Language.DE; | ||
|
||
languageService.selectedLanguage.and.returnValue(selectedLanguage); | ||
|
||
expect(component.getContent('description')).toBeTrue(); | ||
expect(component.getContent('setup')).toBeFalse(); | ||
expect(component.getContent('demo')).toBeFalse(); | ||
}); | ||
|
||
it('should handle successful file upload', () => { | ||
const mockResponse = { | ||
description: { en: 'Description content' }, | ||
setup: { en: 'Setup content' }, | ||
demo: { en: 'Demo content' } | ||
}; | ||
spyOn(releasePreviewService, 'extractZipDetails').and.returnValue( | ||
of(mockResponse) | ||
); | ||
|
||
component.selectedFile = new File(['content'], 'test.zip', { | ||
type: 'application/zip' | ||
}); | ||
component.isZipFile = true; | ||
component.handlePreviewPage(); | ||
|
||
expect(releasePreviewService.extractZipDetails).toHaveBeenCalledWith( | ||
component.selectedFile | ||
); | ||
expect(component.readmeContent()).toEqual(mockResponse); | ||
}); | ||
|
||
it('should set activeTab when setActiveTab is called', () => { | ||
component.setActiveTab('setup'); | ||
expect(component.activeTab).toBe('setup'); | ||
}); | ||
}); |
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,67 @@ | ||
import { TestBed } from '@angular/core/testing'; | ||
import { HttpTestingController, provideHttpClientTesting } from '@angular/common/http/testing'; | ||
import { ReleasePreviewService } from './release-preview.service'; | ||
import { environment } from '../../../environments/environment'; | ||
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http'; | ||
import { ReleasePreviewData } from '../../shared/models/release-preview-data.model'; | ||
|
||
describe('SecurityMonitorService', () => { | ||
let service: ReleasePreviewService; | ||
let httpMock: HttpTestingController; | ||
|
||
const mockApiUrl = environment.apiUrl + '/api/release-preview'; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
providers: [ | ||
ReleasePreviewService, | ||
provideHttpClient(withInterceptorsFromDi()), | ||
provideHttpClientTesting() | ||
] | ||
}); | ||
service = TestBed.inject(ReleasePreviewService); | ||
httpMock = TestBed.inject(HttpTestingController); | ||
}); | ||
|
||
afterEach(() => { | ||
httpMock.verify(); | ||
}); | ||
|
||
it('should be created', () => { | ||
expect(service).toBeTruthy(); | ||
}); | ||
|
||
it('should call API and return Readme data', () => { | ||
const mockFile = new File(['content'], 'test.zip', { | ||
type: 'application/zip' | ||
}); | ||
const mockResponse: ReleasePreviewData = { | ||
description: { | ||
English: 'This is a description in English.', | ||
Spanish: 'Esta es una descripción en español.', | ||
French: 'Ceci est une description en français.' | ||
}, | ||
setup: { | ||
English: 'To set up the application, follow these steps...', | ||
Spanish: 'Para configurar la aplicación, siga estos pasos...', | ||
French: "Pour configurer l'application, suivez ces étapes..." | ||
}, | ||
demo: { | ||
English: 'To demo the app, use the following commands...', | ||
Spanish: | ||
'Para mostrar la aplicación, use los siguientes comandos...', | ||
French: | ||
"Pour démontrer l'application, utilisez les commandes suivantes..." | ||
} | ||
}; | ||
|
||
service.extractZipDetails(mockFile).subscribe(data => { | ||
expect(data).toEqual(mockResponse); | ||
}); | ||
|
||
const req = httpMock.expectOne(mockApiUrl); | ||
expect(req.request.method).toBe('POST'); | ||
|
||
req.flush(mockResponse); | ||
}); | ||
}); |