-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(Button): Implementa i test di unità per i bottoni
ref #44
- Loading branch information
Mario Traetta
committed
Jul 30, 2018
1 parent
d4f407b
commit 8d00e44
Showing
1 changed file
with
108 additions
and
14 deletions.
There are no files selected for viewing
122 changes: 108 additions & 14 deletions
122
projects/design-angular-kit/src/lib/button/button.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,25 +1,119 @@ | ||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { Component, DebugElement, ViewChild } from '@angular/core'; | ||
import { async, ComponentFixture, TestBed, flush, fakeAsync } from '@angular/core/testing'; | ||
import { By } from '@angular/platform-browser'; | ||
import { FormsModule, NgModel } from '@angular/forms'; | ||
|
||
import { ButtonComponent } from './button.component'; | ||
|
||
/** Componente per testare una singola button. */ | ||
@Component({ | ||
template: ` | ||
<div> | ||
<it-button [disabled]="disabled" [color]="color" [outline]="outline" | ||
(click)="onClick()"> | ||
{{label}} | ||
</it-button> | ||
</div>` | ||
}) | ||
class SingleButtonComponent { | ||
disabled = false; | ||
color = 'primary'; | ||
outline = false; | ||
count = 0; | ||
label = 'Test Button'; | ||
|
||
onClick = () => { | ||
this.count++; | ||
} | ||
} | ||
|
||
describe('ButtonComponent', () => { | ||
let component: ButtonComponent; | ||
let fixture: ComponentFixture<ButtonComponent>; | ||
|
||
beforeEach(async(() => { | ||
beforeEach(fakeAsync(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [ ButtonComponent ] | ||
}) | ||
.compileComponents(); | ||
imports: [FormsModule], | ||
declarations: [ | ||
ButtonComponent, | ||
SingleButtonComponent, | ||
] | ||
}); | ||
|
||
TestBed.compileComponents(); | ||
})); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(ButtonComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
describe('comportamenti base', () => { | ||
let fixture: ComponentFixture<SingleButtonComponent>; | ||
let buttonDebugElement: DebugElement; | ||
let buttonNativeElement: HTMLElement; | ||
let buttonInstance: ButtonComponent; | ||
let testComponent: SingleButtonComponent; | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(SingleButtonComponent); | ||
fixture.detectChanges(); | ||
|
||
buttonDebugElement = fixture.debugElement.query(By.directive(ButtonComponent)); | ||
buttonNativeElement = buttonDebugElement.nativeElement; | ||
buttonInstance = buttonDebugElement.componentInstance; | ||
testComponent = fixture.debugElement.componentInstance; | ||
}); | ||
|
||
it('dovrebbe poter essere abilitato e disabilitato', () => { | ||
expect(buttonInstance.disabled).toBe(false); | ||
|
||
testComponent.disabled = true; | ||
fixture.detectChanges(); | ||
|
||
expect(buttonInstance.disabled).toBe(true); | ||
|
||
testComponent.disabled = false; | ||
fixture.detectChanges(); | ||
|
||
expect(buttonInstance.disabled).toBe(false); | ||
}); | ||
|
||
it('dovrebbe ricevere l\'evento di click', () => { | ||
expect(testComponent.count).toBe(0); | ||
fixture.detectChanges(); | ||
|
||
buttonNativeElement.click(); | ||
fixture.detectChanges(); | ||
|
||
expect(testComponent.count).toBe(1); | ||
|
||
buttonNativeElement.click(); | ||
fixture.detectChanges(); | ||
|
||
expect(testComponent.count).toBe(2); | ||
}); | ||
|
||
it('dovrebbe poter cambiare colore', () => { | ||
expect(testComponent.color).toBe('primary'); | ||
expect(buttonInstance.color).toBe('primary'); | ||
|
||
testComponent.color = 'secondary'; | ||
fixture.detectChanges(); | ||
expect(buttonInstance.color).toBe('secondary'); | ||
}); | ||
|
||
it('dovrebbe poter cambiare da colorato senza contorno a colorato con contorno', () => { | ||
expect(testComponent.outline).toBe(false); | ||
expect(buttonInstance.outline).toBe(false); | ||
|
||
testComponent.outline = true; | ||
fixture.detectChanges(); | ||
expect(buttonInstance.outline).toBe(true); | ||
}); | ||
|
||
it('dovrebbe generare un id univoco per bottone', () => { | ||
expect(buttonInstance.id).toMatch(/button-\d+/); | ||
}); | ||
|
||
it('dovrebbe generare un id univoco per bottone', () => { | ||
expect(buttonNativeElement.textContent.trim()).toBe('Test Button'); | ||
}); | ||
|
||
}); | ||
|
||
}); |