@openui5/sap.ui.core
Version:
OpenUI5 Core Library sap.ui.core
57 lines (53 loc) • 1.44 kB
JavaScript
/*!
* OpenUI5
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
sap.ui.define([
"sap/base/util/extend",
"sap/base/util/isEmptyObject",
"sap/ui/base/Object",
"sap/ui/test/_OpaLogger",
"sap/ui/test/_ParameterValidator",
"sap/ui/thirdparty/jquery"
], function (extend, isEmptyObject, UI5Object, _OpaLogger, _ParameterValidator) {
"use strict";
var WaiterBase = UI5Object.extend("sap.ui.test.autowaiter.WaiterBase", {
constructor: function () {
UI5Object.call(this);
this._mConfig = this._getDefaultConfig();
this._sName = this.getMetadata().getName();
this._oLogger = _OpaLogger.getLogger(this._sName);
this._oHasPendingLogger = _OpaLogger.getLogger(this._sName + "#hasPending");
this._oConfigValidator = new _ParameterValidator({
errorPrefix: this._sName + "#extendConfig"
});
},
hasPending: function () {
return false;
},
isEnabled: function () {
return this._mConfig.enabled;
},
extendConfig: function (oConfig) {
if (!isEmptyObject(oConfig)) {
this._oConfigValidator.validate({
inputToValidate: oConfig,
validationInfo: this._getValidationInfo()
});
extend(this._mConfig, oConfig);
}
},
_getDefaultConfig: function () {
return {
enabled: true
};
},
_getValidationInfo: function () {
return {
enabled: "bool"
};
}
});
return WaiterBase;
});