44 lines
1.7 KiB
TypeScript
44 lines
1.7 KiB
TypeScript
|
|
/**
|
||
|
|
* @license
|
||
|
|
* Copyright Google LLC All Rights Reserved.
|
||
|
|
*
|
||
|
|
* Use of this source code is governed by an MIT-style license that can be
|
||
|
|
* found in the LICENSE file at https://angular.dev/license
|
||
|
|
*/
|
||
|
|
|
||
|
|
import {ContentContainerComponentHarness, HarnessPredicate} from '@angular/cdk/testing';
|
||
|
|
import {DrawerContainerHarnessFilters, DrawerHarnessFilters} from './drawer-harness-filters';
|
||
|
|
import {MatDrawerContentHarness} from './drawer-content-harness';
|
||
|
|
import {MatDrawerHarness} from './drawer-harness';
|
||
|
|
|
||
|
|
/** Harness for interacting with a standard mat-drawer-container in tests. */
|
||
|
|
export class MatDrawerContainerHarness extends ContentContainerComponentHarness<string> {
|
||
|
|
/** The selector for the host element of a `MatDrawerContainer` instance. */
|
||
|
|
static hostSelector = '.mat-drawer-container';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Gets a `HarnessPredicate` that can be used to search for a `MatDrawerContainerHarness` that
|
||
|
|
* meets certain criteria.
|
||
|
|
* @param options Options for filtering which container instances are considered a match.
|
||
|
|
* @return a `HarnessPredicate` configured with the given options.
|
||
|
|
*/
|
||
|
|
static with(
|
||
|
|
options: DrawerContainerHarnessFilters = {},
|
||
|
|
): HarnessPredicate<MatDrawerContainerHarness> {
|
||
|
|
return new HarnessPredicate(MatDrawerContainerHarness, options);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Gets drawers that match particular criteria within the container.
|
||
|
|
* @param filter Optionally filters which chips are included.
|
||
|
|
*/
|
||
|
|
async getDrawers(filter: DrawerHarnessFilters = {}): Promise<MatDrawerHarness[]> {
|
||
|
|
return this.locatorForAll(MatDrawerHarness.with(filter))();
|
||
|
|
}
|
||
|
|
|
||
|
|
/** Gets the element that has the container's content. */
|
||
|
|
async getContent(): Promise<MatDrawerContentHarness> {
|
||
|
|
return this.locatorFor(MatDrawerContentHarness)();
|
||
|
|
}
|
||
|
|
}
|