You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
5.3 KiB
111 lines
5.3 KiB
/**
|
|
* @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.io/license
|
|
*/
|
|
import { AsyncFactoryFn, BaseHarnessFilters, ComponentHarness, ComponentHarnessConstructor, HarnessPredicate, TestElement } from '@angular/cdk/testing';
|
|
import { RadioButtonHarnessFilters, RadioGroupHarnessFilters } from './radio-harness-filters';
|
|
export declare abstract class _MatRadioGroupHarnessBase<ButtonType extends (ComponentHarnessConstructor<Button> & {
|
|
with: (options?: ButtonFilters) => HarnessPredicate<Button>;
|
|
}), Button extends ComponentHarness & {
|
|
isChecked(): Promise<boolean>;
|
|
getValue(): Promise<string | null>;
|
|
getName(): Promise<string | null>;
|
|
check(): Promise<void>;
|
|
}, ButtonFilters extends BaseHarnessFilters> extends ComponentHarness {
|
|
protected abstract _buttonClass: ButtonType;
|
|
/** Gets the name of the radio-group. */
|
|
getName(): Promise<string | null>;
|
|
/** Gets the id of the radio-group. */
|
|
getId(): Promise<string | null>;
|
|
/** Gets the checked radio-button in a radio-group. */
|
|
getCheckedRadioButton(): Promise<Button | null>;
|
|
/** Gets the checked value of the radio-group. */
|
|
getCheckedValue(): Promise<string | null>;
|
|
/**
|
|
* Gets a list of radio buttons which are part of the radio-group.
|
|
* @param filter Optionally filters which radio buttons are included.
|
|
*/
|
|
getRadioButtons(filter?: ButtonFilters): Promise<Button[]>;
|
|
/**
|
|
* Checks a radio button in this group.
|
|
* @param filter An optional filter to apply to the child radio buttons. The first tab matching
|
|
* the filter will be selected.
|
|
*/
|
|
checkRadioButton(filter?: ButtonFilters): Promise<void>;
|
|
/** Gets the name attribute of the host element. */
|
|
private _getGroupNameFromHost;
|
|
/** Gets a list of the name attributes of all child radio buttons. */
|
|
private _getNamesFromRadioButtons;
|
|
/** Checks if the specified radio names are all equal. */
|
|
private _checkRadioNamesInGroupEqual;
|
|
/**
|
|
* Checks if a radio-group harness has the given name. Throws if a radio-group with
|
|
* matching name could be found but has mismatching radio-button names.
|
|
*/
|
|
protected static _checkRadioGroupName(harness: _MatRadioGroupHarnessBase<any, any, any>, name: string): Promise<boolean>;
|
|
}
|
|
/** Harness for interacting with a standard mat-radio-group in tests. */
|
|
export declare class MatRadioGroupHarness extends _MatRadioGroupHarnessBase<typeof MatRadioButtonHarness, MatRadioButtonHarness, RadioButtonHarnessFilters> {
|
|
/** The selector for the host element of a `MatRadioGroup` instance. */
|
|
static hostSelector: string;
|
|
protected _buttonClass: typeof MatRadioButtonHarness;
|
|
/**
|
|
* Gets a `HarnessPredicate` that can be used to search for a `MatRadioGroupHarness` that meets
|
|
* certain criteria.
|
|
* @param options Options for filtering which radio group instances are considered a match.
|
|
* @return a `HarnessPredicate` configured with the given options.
|
|
*/
|
|
static with(options?: RadioGroupHarnessFilters): HarnessPredicate<MatRadioGroupHarness>;
|
|
}
|
|
export declare abstract class _MatRadioButtonHarnessBase extends ComponentHarness {
|
|
protected abstract _textLabel: AsyncFactoryFn<TestElement>;
|
|
protected abstract _clickLabel: AsyncFactoryFn<TestElement>;
|
|
private _input;
|
|
/** Whether the radio-button is checked. */
|
|
isChecked(): Promise<boolean>;
|
|
/** Whether the radio-button is disabled. */
|
|
isDisabled(): Promise<boolean>;
|
|
/** Whether the radio-button is required. */
|
|
isRequired(): Promise<boolean>;
|
|
/** Gets the radio-button's name. */
|
|
getName(): Promise<string | null>;
|
|
/** Gets the radio-button's id. */
|
|
getId(): Promise<string | null>;
|
|
/**
|
|
* Gets the value of the radio-button. The radio-button value will be converted to a string.
|
|
*
|
|
* Note: This means that for radio-button's with an object as a value `[object Object]` is
|
|
* intentionally returned.
|
|
*/
|
|
getValue(): Promise<string | null>;
|
|
/** Gets the radio-button's label text. */
|
|
getLabelText(): Promise<string>;
|
|
/** Focuses the radio-button. */
|
|
focus(): Promise<void>;
|
|
/** Blurs the radio-button. */
|
|
blur(): Promise<void>;
|
|
/** Whether the radio-button is focused. */
|
|
isFocused(): Promise<boolean>;
|
|
/**
|
|
* Puts the radio-button in a checked state by clicking it if it is currently unchecked,
|
|
* or doing nothing if it is already checked.
|
|
*/
|
|
check(): Promise<void>;
|
|
}
|
|
/** Harness for interacting with a standard mat-radio-button in tests. */
|
|
export declare class MatRadioButtonHarness extends _MatRadioButtonHarnessBase {
|
|
/** The selector for the host element of a `MatRadioButton` instance. */
|
|
static hostSelector: string;
|
|
/**
|
|
* Gets a `HarnessPredicate` that can be used to search for a `MatRadioButtonHarness` that meets
|
|
* certain criteria.
|
|
* @param options Options for filtering which radio button instances are considered a match.
|
|
* @return a `HarnessPredicate` configured with the given options.
|
|
*/
|
|
static with(options?: RadioButtonHarnessFilters): HarnessPredicate<MatRadioButtonHarness>;
|
|
protected _textLabel: AsyncFactoryFn<TestElement>;
|
|
protected _clickLabel: AsyncFactoryFn<TestElement>;
|
|
}
|