aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/graph/canvas-zone/zone-container.component.spec.ts
blob: c4320544923175dd10439b03ed6b8cc0f73f4c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import {async, ComponentFixture} from '@angular/core/testing';
import {By} from '@angular/platform-browser';
import {ConfigureFn, configureTests} from '../../../../../../jest/test-config.helper';
import 'jest-dom/extend-expect';
import {ZoneInstanceType} from '../../../../../../app/models/graph/zones/zone-instance';
import {ZoneContainerComponent} from './zone-container.component';


describe('ZoneContainerComponent', () => {
    let fixture: ComponentFixture<ZoneContainerComponent>;

    beforeEach(
        async(() => {
            const configure: ConfigureFn = testBed => {
                testBed.configureTestingModule({
                    declarations: [ZoneContainerComponent]
                });
            };

            configureTests(configure).then(testBed => {
                fixture = testBed.createComponent(ZoneContainerComponent);
            });
        })
    );


    it('should match current snapshot of palette element component', () => {
        expect(fixture).toMatchSnapshot();
    });

    it('should have a group-zone class when the ZoneInstanceType is GROUP',
        () => {
            fixture.componentInstance.type = ZoneInstanceType.GROUP;
            fixture.detectChanges();
            const compiled = fixture.debugElement.query(By.css('.sdc-canvas-zone'));
            expect(compiled.nativeElement).toHaveClass('group-zone');
        });

    it('should have a policy-zone class when the ZoneInstanceType is POLICY',
        () => {
            fixture.componentInstance.type = ZoneInstanceType.POLICY;
            fixture.detectChanges();
            const compiled = fixture.debugElement.query(By.css('.sdc-canvas-zone'));
            expect(compiled.nativeElement).toHaveClass('policy-zone');
        });
});