mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
78 lines
2.5 KiB
TypeScript
78 lines
2.5 KiB
TypeScript
import { Component } from "@angular/core";
|
|
import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing";
|
|
import { By } from "@angular/platform-browser";
|
|
|
|
import { MenuTriggerForDirective } from "./menu-trigger-for.directive";
|
|
|
|
import { MenuModule } from "./index";
|
|
|
|
describe("Menu", () => {
|
|
let fixture: ComponentFixture<TestApp>;
|
|
const getMenuTriggerDirective = () => {
|
|
const buttonDebugElement = fixture.debugElement.query(By.directive(MenuTriggerForDirective));
|
|
return buttonDebugElement.injector.get(MenuTriggerForDirective);
|
|
};
|
|
|
|
// The overlay is created outside the root debugElement, so we need to query its parent
|
|
const getBitMenuPanel = () => document.querySelector(".bit-menu-panel");
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [MenuModule],
|
|
declarations: [TestApp],
|
|
});
|
|
|
|
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
TestBed.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(TestApp);
|
|
fixture.detectChanges();
|
|
}));
|
|
|
|
it("should open when the trigger is clicked", async () => {
|
|
const buttonDebugElement = fixture.debugElement.query(By.directive(MenuTriggerForDirective));
|
|
(buttonDebugElement.nativeElement as HTMLButtonElement).click();
|
|
|
|
expect(getBitMenuPanel()).toBeTruthy();
|
|
});
|
|
|
|
it("should close when the trigger is clicked", () => {
|
|
getMenuTriggerDirective().toggleMenu();
|
|
|
|
const buttonDebugElement = fixture.debugElement.query(By.directive(MenuTriggerForDirective));
|
|
(buttonDebugElement.nativeElement as HTMLButtonElement).click();
|
|
|
|
expect(getBitMenuPanel()).toBeFalsy();
|
|
});
|
|
|
|
it("should close when a menu item is clicked", () => {
|
|
getMenuTriggerDirective().toggleMenu();
|
|
|
|
(document.querySelector("#item1") as HTMLAnchorElement).click();
|
|
|
|
expect(getBitMenuPanel()).toBeFalsy();
|
|
});
|
|
|
|
it("should close when the backdrop is clicked", () => {
|
|
getMenuTriggerDirective().toggleMenu();
|
|
|
|
(document.querySelector(".cdk-overlay-backdrop") as HTMLAnchorElement).click();
|
|
|
|
expect(getBitMenuPanel()).toBeFalsy();
|
|
});
|
|
});
|
|
|
|
@Component({
|
|
selector: "test-app",
|
|
template: `
|
|
<button type="button" [bitMenuTriggerFor]="testMenu" class="testclass">Open menu</button>
|
|
|
|
<bit-menu #testMenu>
|
|
<a id="item1" bitMenuItem>Item 1</a>
|
|
<a id="item2" bitMenuItem>Item 2</a>
|
|
</bit-menu>
|
|
`,
|
|
})
|
|
class TestApp {}
|