mseemann/angular2-mdl

View on GitHub
projects/core/src/lib/menu/mdl-menu-item.component.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { TestBed } from "@angular/core/testing";
import { By } from "@angular/platform-browser";
import { Component } from "@angular/core";
import {
  MdlMenuComponent,
  MdlMenuItemComponent,
  MdlMenuModule,
} from "./mdl-menu.module";
import { MdlMenuRegisty } from "./mdl-menu.component";

@Component({
  // eslint-disable-next-line
  selector: "test-menu",
  template: "replaced by the test",
})
class MdlTestMenuItemComponent {}

describe("Component: MdlMenuItem", () => {
  beforeEach(() => {
    TestBed.configureTestingModule({
      imports: [MdlMenuModule],
      providers: [MdlMenuRegisty],
      declarations: [MdlTestMenuItemComponent],
    });
  });

  it("should add the css class mdl-menu__item to the host element", () => {
    TestBed.overrideComponent(MdlTestMenuItemComponent, {
      set: {
        template: "<mdl-menu><mdl-menu-item>x</mdl-menu-item></mdl-menu>",
      },
    });
    const fixture = TestBed.createComponent(MdlTestMenuItemComponent);
    fixture.detectChanges();

    const menuItemEl: HTMLElement = fixture.debugElement.query(
      By.directive(MdlMenuItemComponent)
    ).nativeElement;
    expect(menuItemEl.classList.contains("mdl-menu__item")).toBe(true);
  });

  it("should call hideOnItemClicked on menu if the item is clicked", () => {
    TestBed.overrideComponent(MdlTestMenuItemComponent, {
      set: {
        template: "<mdl-menu><mdl-menu-item>x</mdl-menu-item></mdl-menu>",
      },
    });
    const fixture = TestBed.createComponent(MdlTestMenuItemComponent);
    fixture.detectChanges();

    const menu = fixture.debugElement.query(
      By.directive(MdlMenuComponent)
    ).componentInstance;

    const menuItemEl: HTMLElement = fixture.debugElement.query(
      By.directive(MdlMenuItemComponent)
    ).nativeElement;

    spyOn(menu, "hideOnItemClicked").and.callThrough();
    expect(menu.hideOnItemClicked).not.toHaveBeenCalled();

    menuItemEl.click();

    expect(menu.hideOnItemClicked).toHaveBeenCalled();
  });

  it("should call hideOnItemClicked on menu if the item is touched", () => {
    TestBed.overrideComponent(MdlTestMenuItemComponent, {
      set: {
        template: "<mdl-menu><mdl-menu-item>x</mdl-menu-item></mdl-menu>",
      },
    });
    const fixture = TestBed.createComponent(MdlTestMenuItemComponent);
    fixture.detectChanges();

    const menu = fixture.debugElement.query(
      By.directive(MdlMenuComponent)
    ).componentInstance;

    const menuItemEl: HTMLElement = fixture.debugElement.query(
      By.directive(MdlMenuItemComponent)
    ).nativeElement;

    spyOn(menu, "hideOnItemClicked").and.callThrough();
    expect(menu.hideOnItemClicked).not.toHaveBeenCalled();

    const event = new Event("touchstart", {});
    menuItemEl.dispatchEvent(event);

    expect(menu.hideOnItemClicked).toHaveBeenCalled();
  });

  it("should not call hideOnItemClicked on menu if the item is disbaled", () => {
    TestBed.overrideComponent(MdlTestMenuItemComponent, {
      set: {
        template:
          "<mdl-menu><mdl-menu-item disabled>x</mdl-menu-item></mdl-menu>",
      },
    });
    const fixture = TestBed.createComponent(MdlTestMenuItemComponent);
    fixture.detectChanges();

    const menu = fixture.debugElement.query(
      By.directive(MdlMenuComponent)
    ).componentInstance;

    const menuItemEl: HTMLElement = fixture.debugElement.query(
      By.directive(MdlMenuItemComponent)
    ).nativeElement;

    spyOn(menu, "hideOnItemClicked").and.callThrough();
    expect(menu.hideOnItemClicked).not.toHaveBeenCalled();

    menuItemEl.click();

    expect(menu.hideOnItemClicked).not.toHaveBeenCalled();
  });
});