@openui5/sap.ui.core 1.126.0 → 1.127.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dtsgenrc +76 -0
- package/THIRDPARTY.txt +1 -1
- package/package.json +1 -1
- package/src/jquery.sap.global.js +1 -1
- package/src/jquery.sap.properties.js +1 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +1 -1
- package/src/jquery.sap.storage.js +3 -3
- package/src/sap/base/Event.js +1 -1
- package/src/sap/base/Eventing.js +1 -1
- package/src/sap/base/config.js +1 -1
- package/src/sap/base/i18n/LanguageTag.js +1 -1
- package/src/sap/base/i18n/date/TimezoneUtils.js +1 -1
- package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
- package/src/sap/base/util/restricted/_castArray.js +1 -1
- package/src/sap/base/util/restricted/_compact.js +1 -1
- package/src/sap/base/util/restricted/_curry.js +1 -1
- package/src/sap/base/util/restricted/_debounce.js +1 -1
- package/src/sap/base/util/restricted/_difference.js +1 -1
- package/src/sap/base/util/restricted/_differenceBy.js +1 -1
- package/src/sap/base/util/restricted/_differenceWith.js +1 -1
- package/src/sap/base/util/restricted/_flatMap.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
- package/src/sap/base/util/restricted/_flatten.js +1 -1
- package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
- package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
- package/src/sap/base/util/restricted/_intersection.js +1 -1
- package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
- package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
- package/src/sap/base/util/restricted/_isEqual.js +1 -1
- package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
- package/src/sap/base/util/restricted/_isNil.js +1 -1
- package/src/sap/base/util/restricted/_max.js +1 -1
- package/src/sap/base/util/restricted/_merge.js +1 -1
- package/src/sap/base/util/restricted/_mergeWith.js +1 -1
- package/src/sap/base/util/restricted/_min.js +1 -1
- package/src/sap/base/util/restricted/_omit.js +1 -1
- package/src/sap/base/util/restricted/_pick.js +1 -1
- package/src/sap/base/util/restricted/_pickBy.js +1 -1
- package/src/sap/base/util/restricted/_throttle.js +1 -1
- package/src/sap/base/util/restricted/_toArray.js +1 -1
- package/src/sap/base/util/restricted/_union.js +1 -1
- package/src/sap/base/util/restricted/_unionBy.js +1 -1
- package/src/sap/base/util/restricted/_unionWith.js +1 -1
- package/src/sap/base/util/restricted/_uniq.js +1 -1
- package/src/sap/base/util/restricted/_uniqBy.js +1 -1
- package/src/sap/base/util/restricted/_uniqWith.js +1 -1
- package/src/sap/base/util/restricted/_without.js +1 -1
- package/src/sap/base/util/restricted/_xor.js +1 -1
- package/src/sap/base/util/restricted/_xorBy.js +1 -1
- package/src/sap/base/util/restricted/_xorWith.js +1 -1
- package/src/sap/base/util/restricted/_zipObject.js +1 -1
- package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
- package/src/sap/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +5 -15
- package/src/sap/ui/base/BindingInfo.js +45 -24
- package/src/sap/ui/base/DataType.js +19 -0
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/Interface.js +31 -1
- package/src/sap/ui/base/ManagedObject.js +3 -4
- package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
- package/src/sap/ui/base/Metadata.js +1 -1
- package/src/sap/ui/base/Object.js +1 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +1 -1
- package/src/sap/ui/core/.theming +8 -0
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/Component.js +1 -1
- package/src/sap/ui/core/ComponentContainer.js +1 -1
- package/src/sap/ui/core/ComponentMetadata.js +1 -1
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +1 -1
- package/src/sap/ui/core/Control.js +2 -2
- package/src/sap/ui/core/Core.js +57 -2
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/Element.js +166 -16
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +17 -31
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/Fragment.js +1 -1
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/IndicationColorSupport.js +1 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +1 -1
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +1 -1
- package/src/sap/ui/core/Item.js +2 -2
- package/src/sap/ui/core/LabelEnablement.js +1 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +1 -1
- package/src/sap/ui/core/LocaleData.js +118 -55
- package/src/sap/ui/core/Manifest.js +1 -1
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Popup.js +8 -0
- package/src/sap/ui/core/RenderManager.js +1 -1
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/ResizeHandler.js +1 -1
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Theming.js +4 -4
- package/src/sap/ui/core/Title.js +2 -2
- package/src/sap/ui/core/TooltipBase.js +2 -2
- package/src/sap/ui/core/UIArea.js +1 -1
- package/src/sap/ui/core/UIComponent.js +1 -1
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +1 -1
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +1 -1
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/cache/CacheManagerNOP.js +3 -0
- package/src/sap/ui/core/cache/LRUPersistentCache.js +13 -4
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
- package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
- package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
- package/src/sap/ui/core/dnd/DragInfo.js +1 -1
- package/src/sap/ui/core/dnd/DropInfo.js +1 -1
- package/src/sap/ui/core/fieldhelp/FieldHelp.js +53 -11
- package/src/sap/ui/core/fieldhelp/FieldHelpUtil.js +4 -0
- package/src/sap/ui/core/format/FormatUtils.js +1 -1
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +1 -1
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +37 -21
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +1 -1
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageParser.js +1 -1
- package/src/sap/ui/core/message/MessageProcessor.js +1 -1
- package/src/sap/ui/core/messagebundle_en_US_sappsd.properties +30 -18
- package/src/sap/ui/core/messagebundle_en_US_saptrc.properties +294 -282
- package/src/sap/ui/core/mvc/ControllerExtension.js +16 -0
- package/src/sap/ui/core/mvc/HTMLView.js +1 -1
- package/src/sap/ui/core/mvc/JSONView.js +1 -1
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +1 -1
- package/src/sap/ui/core/mvc/XMLView.js +4 -4
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/plugin/LessSupport.js +1 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +1 -1
- package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
- package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
- package/src/sap/ui/core/search/SearchProvider.js +1 -1
- package/src/sap/ui/core/service/Service.js +1 -1
- package/src/sap/ui/core/service/ServiceFactory.js +1 -1
- package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/Support.js +1 -1
- package/src/sap/ui/core/support/ToolsAPI.js +5 -5
- package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
- package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +1 -1
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/themes/base/base.less +119 -49
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/themes/base/library.source.less +2 -0
- package/src/sap/ui/core/themes/base/skeleton.less +958 -0
- package/src/sap/ui/core/theming/ThemeManager.js +56 -73
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +1 -1
- package/src/sap/ui/core/util/ExportCell.js +1 -1
- package/src/sap/ui/core/util/ExportColumn.js +1 -1
- package/src/sap/ui/core/util/ExportRow.js +1 -1
- package/src/sap/ui/core/util/ExportType.js +1 -1
- package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- package/src/sap/ui/core/util/MockServer.js +1 -1
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
- package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +1 -1
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/dom/findTabbable.js +244 -0
- package/src/sap/ui/dom/isElementCovered.js +51 -0
- package/src/sap/ui/events/F6Navigation.js +10 -164
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +1 -1
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +1 -1
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/json/JSONModel.js +1 -1
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
- package/src/sap/ui/model/odata/ODataModel.js +1 -1
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +1 -1
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +1 -1
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataModel.js +144 -14
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/Context.js +18 -8
- package/src/sap/ui/model/odata/v4/ODataBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +12 -9
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +30 -14
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +254 -189
- package/src/sap/ui/model/odata/v4/ODataModel.js +51 -13
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +4 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +68 -32
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +9 -6
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +7 -7
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +17 -11
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +11 -3
- package/src/sap/ui/model/odata/v4/lib/_TreeState.js +10 -4
- package/src/sap/ui/model/resource/ResourceModel.js +1 -1
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/performance/trace/FESR.js +3 -0
- package/src/sap/ui/performance/trace/Interaction.js +4 -2
- package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/qunit/utils/nextUIUpdate.js +7 -53
- package/src/sap/ui/qunit/utils/waitForThemeApplied.js +6 -42
- package/src/sap/ui/test/ModuleTracking.js +1 -1
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/generic/Utils.js +3 -7
- package/src/sap/ui/test/opaQunit.js +3 -3
- package/src/sap/ui/test/utils/nextUIUpdate.js +64 -0
- package/src/sap/ui/test/utils/waitForThemeApplied.js +58 -0
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader.js +9 -0
- package/test/sap/ui/core/demokit/sample/Messaging/ODataBackendMessagesComp/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/SandboxModel.js +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/data/SalesOrderList('0500000000')-requestSideEffects.json +14 -14
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +32 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +22 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Component.js +69 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/MIT.ListBindingTemplate.AnnotationChanges.html +63 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +19 -7
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/SandboxModel.js +1 -4
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/data/equipments.json +37 -22
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/data/localAnnotations.xml +10 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +5 -5
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +32 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +30 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +12 -6
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.controller.js +7 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +2 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/SandboxModel.js +14 -14
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/pages/Main.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/package.json +3 -0
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +1 -1
- package/test/sap/ui/core/qunit/BlockLayerUtils.qunit.js +1 -1
- package/test/sap/ui/core/qunit/CalculatedFields.qunit.js +1 -1
- package/test/sap/ui/core/qunit/ContextMenuSupport.qunit.js +1 -1
- package/test/sap/ui/core/qunit/ControlDefinition.qunit.js +2 -2
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Core.qunit.js +1 -1
- package/test/sap/ui/core/qunit/CustomStyleClassSupport.qunit.js +1 -1
- package/test/sap/ui/core/qunit/CustomThemeFallback.qunit.js +1 -1
- package/test/sap/ui/core/qunit/CustomThemeFallback_unavoidablySync.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Element_data.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Element_destroy.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Element_focus.qunit.js +196 -3
- package/test/sap/ui/core/qunit/Element_metadata_selector.qunit.js +1 -1
- package/test/sap/ui/core/qunit/EnabledPropagator.qunit.js +2 -3
- package/test/sap/ui/core/qunit/FastNavigationWithWebComponents.qunit.js +1 -1
- package/test/sap/ui/core/qunit/FieldGroup.qunit.js +1 -1
- package/test/sap/ui/core/qunit/FocusHandler.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Fragment.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Fragment_legacyAPIs.qunit.js +1 -1
- package/test/sap/ui/core/qunit/HTML.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Icon.qunit.js +1 -1
- package/test/sap/ui/core/qunit/InvisibleText.qunit.js +1 -1
- package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +8 -4
- package/test/sap/ui/core/qunit/LocalBusyIndicator.qunit.js +1 -1
- package/test/sap/ui/core/qunit/RenderManager.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Rendering.qunit.js +1 -1
- package/test/sap/ui/core/qunit/ResizeHandler.qunit.js +1 -1
- package/test/sap/ui/core/qunit/ScrollBar.qunit.js +1 -1
- package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +1 -1
- package/test/sap/ui/core/qunit/StashedControlSupport.qunit.js +1 -1
- package/test/sap/ui/core/qunit/StashedControlSupport_unavoidablySync.qunit.js +1 -1
- package/test/sap/ui/core/qunit/ThemeManager.qunit.js +1 -1
- package/test/sap/ui/core/qunit/ThemeParameters.qunit.js +1 -1
- package/test/sap/ui/core/qunit/ThemeParameters_legacyAPIs.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Theming.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Theming_default_and_fallback.qunit.js +1 -1
- package/test/sap/ui/core/qunit/TooltipBase.qunit.js +1 -1
- package/test/sap/ui/core/qunit/UIArea.qunit.js +1 -1
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.qunit.js +1 -1
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +1 -8
- package/test/sap/ui/core/qunit/component/Component.qunit.js +36 -36
- package/test/sap/ui/core/qunit/component/ComponentContainer.qunit.js +2 -10
- package/test/sap/ui/core/qunit/component/ComponentContainer_unavoidablySync.qunit.js +2 -10
- package/test/sap/ui/core/qunit/component/ComponentSupport.qunit.js +5 -5
- package/test/sap/ui/core/qunit/component/Component_containedInLibrary.qunit.js +10 -10
- package/test/sap/ui/core/qunit/component/Component_dependencyLoading.qunit.js +7 -7
- package/test/sap/ui/core/qunit/component/Component_dependencyLoading_unavoidablySync.qunit.js +6 -6
- package/test/sap/ui/core/qunit/component/Component_unavoidablySync.qunit.js +8 -8
- package/test/sap/ui/core/qunit/component/Customizing.qunit.js +1 -1
- package/test/sap/ui/core/qunit/component/Customizing_async.qunit.js +3 -3
- package/test/sap/ui/core/qunit/component/Customizing_disabled.qunit.js +1 -1
- package/test/sap/ui/core/qunit/component/Customizing_legacyAPIs.qunit.js +2 -2
- package/test/sap/ui/core/qunit/component/Customizing_multi.qunit.js +1 -1
- package/test/sap/ui/core/qunit/component/Customizing_unavoidablySync.qunit.js +1 -1
- package/test/sap/ui/core/qunit/component/ExtensionPoint.qunit.js +3 -3
- package/test/sap/ui/core/qunit/component/ExtensionPoint_unavoidablySync.qunit.js +1 -1
- package/test/sap/ui/core/qunit/component/Manifest.qunit.js +10 -10
- package/test/sap/ui/core/qunit/component/Manifest_unavoidablySync.qunit.js +1 -1
- package/test/sap/ui/core/qunit/component/Metadata.qunit.js +47 -47
- package/test/sap/ui/core/qunit/component/Metadata_unavoidablySync.qunit.js +33 -33
- package/test/sap/ui/core/qunit/component/Models.qunit.js +57 -57
- package/test/sap/ui/core/qunit/component/Models_unavoidablySync.qunit.js +12 -12
- package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +2 -2
- package/test/sap/ui/core/qunit/component/UIComponent_unavoidablySync.qunit.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component1/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component1/manifest.json +3 -3
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component2/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component2/manifest.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component3/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component3/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component4/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component4/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component5/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component5/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component6/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/component6/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/dependencyLoading/componentVariant/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/embedded/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/embedded/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inherit/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inherit/component.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/inherit/manifest.json +9 -9
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/component.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/manifest.json +9 -9
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/manifest.json +3 -3
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/parentA/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/parentA/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/parentB/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/parentB/manifest.json +3 -3
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/manifest.json +3 -3
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/parentA/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/parentA/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/parentB/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/parentB/manifest.json +3 -3
- package/test/sap/ui/core/qunit/component/testdata/manifestload/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/minUI5Version/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/minUI5Version/manifest.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/mixed/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/mixed/manifest.json +9 -9
- package/test/sap/ui/core/qunit/component/testdata/mixed_legacyAPIs/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/mixed_legacyAPIs/component.json +8 -8
- package/test/sap/ui/core/qunit/component/testdata/mixed_legacyAPIs/manifest.json +9 -9
- package/test/sap/ui/core/qunit/component/testdata/modelsMisc/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/modelsMisc/manifest.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/other/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/routerClass/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/routerClass/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/routing/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/routing/RouterExtension.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/routing/TestView.js +1 -8
- package/test/sap/ui/core/qunit/component/testdata/routing/targets/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/routing_legacyAPIs/Component.js +5 -5
- package/test/sap/ui/core/qunit/component/testdata/routing_legacyAPIs/targets/Component.js +5 -5
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/Main.controller.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component1/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component1/Main.controller.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component2/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component2/Main.controller.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component3/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component3/Main.controller.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component4/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component4/Main.controller.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component5/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component5/Main.controller.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/reuse/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/terminologies/reuse/Main.controller.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/v1/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v1/component.json +8 -8
- package/test/sap/ui/core/qunit/component/testdata/v1empty/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v1empty/component.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/v1inline/Component.js +10 -10
- package/test/sap/ui/core/qunit/component/testdata/v1missing/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v2/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v2/manifest.json +9 -9
- package/test/sap/ui/core/qunit/component/testdata/v2asyncRootView/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v2asyncRootView/manifest.json +9 -9
- package/test/sap/ui/core/qunit/component/testdata/v2empty/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/v2empty/manifest.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/v2inline/Component.js +10 -10
- package/test/sap/ui/core/qunit/component/testdata/v2missing/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/v2models/empty/Component.js +3 -3
- package/test/sap/ui/core/qunit/component/testdata/v2models/empty/manifest.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/v2models/extension/Component.js +4 -4
- package/test/sap/ui/core/qunit/component/testdata/v2models/parent/Component.js +12 -12
- package/test/sap/ui/core/qunit/component/testdata/v2models/parent/CustomModel.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v2models/parent/ModelNotDefined.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v2models/parentValid/Component.js +11 -11
- package/test/sap/ui/core/qunit/component/testdata/v2models/ui5Urls/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v2models/ui5Urls/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v2version/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v2version/manifest.json +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v4models/Component.js +3 -3
- package/test/sap/ui/core/qunit/component/testdata/v4models/cacheTokens/Component.js +3 -3
- package/test/sap/ui/core/qunit/component/testdata/v4models/sapSystem/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/v4models/sapSystem/manifest.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/v4models/unsupportedVersion/Component.js +3 -3
- package/test/sap/ui/core/qunit/component/testdata/verticalLayout/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/verticalLayout_legacyAPIs/Component.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/view/Main.controller.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/view/Main.view.xml +1 -1
- package/test/sap/ui/core/qunit/component/testdata/view/MainAsync.view.xml +1 -1
- package/test/sap/ui/core/qunit/component/testdata/view/MainAsyncWithWrongNesting.view.xml +1 -1
- package/test/sap/ui/core/qunit/component/testdata/view/Nested.view.xml +1 -1
- package/test/sap/ui/core/qunit/component/testsuite.component.qunit.js +2 -8
- package/test/sap/ui/core/qunit/composite/XMLComposite.qunit.js +1 -1
- package/test/sap/ui/core/qunit/dnd/DragAndDrop.qunit.js +1 -1
- package/test/sap/ui/core/qunit/dnd/DragInfo.qunit.js +1 -1
- package/test/sap/ui/core/qunit/dnd/DropInfo.qunit.js +1 -1
- package/test/sap/ui/core/qunit/fieldhelp/FieldHelp.qunit.js +184 -51
- package/test/sap/ui/core/qunit/fieldhelp/FieldHelpUtil.qunit.js +2 -0
- package/test/sap/ui/core/qunit/generic/ControlMemoryLeaks.qunit.js +1 -1
- package/test/sap/ui/core/qunit/generic/DuplicateIdCheck.qunit.js +1 -1
- package/test/sap/ui/core/qunit/generic/legacy/ControlIterator.qunit.js +1 -1
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +1 -1
- package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +1 -1
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +188 -61
- package/test/sap/ui/core/qunit/isBehindOtherElement.qunit.js +1 -1
- package/test/sap/ui/core/qunit/jquery.sap.events.qunit.js +1 -1
- package/test/sap/ui/core/qunit/jquery.sap.ui.qunit.js +1 -1
- package/test/sap/ui/core/qunit/messages/messagesUsage.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc/AnyView.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc/AnyViewAsync.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync_unavoidablyUsingInlineStyle.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc/XMLView.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing_legacyAPIs.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/AnyViewAsync_legacyAPIs.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/AnyView_legacyAPIs.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/HTMLView_legacyAPIs.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/XMLTemplateProcessorRequireXML_legacyAPIs.qunit.js +1 -1
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/XMLView_legacyAPIs.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +511 -21
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +382 -3
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModel.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelB.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +28 -4
- package/test/sap/ui/core/qunit/odata/v4/ODataContextBinding.qunit.js +34 -20
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +80 -15
- package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +90 -6
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1201 -202
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +34 -0
- package/test/sap/ui/core/qunit/odata/v4/ODataPropertyBinding.qunit.js +38 -0
- package/test/sap/ui/core/qunit/odata/v4/data/annotations_tea_busi.xml +14 -0
- package/test/sap/ui/core/qunit/odata/v4/data/metadata_tea_busi_supplier.xml +36 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +319 -38
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +22 -9
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +2 -2
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +53 -10
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +6 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_TreeState.qunit.js +30 -1
- package/test/sap/ui/core/qunit/opa/Opa5PageObject.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/RecordReplay.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/_ControlFinder.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/actions/Action.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/actions/Press.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +1 -1
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +1 -1
- package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +1 -1
- package/test/sap/ui/core/qunit/opa/autowaiter/_navigationContainerWaiter.js +1 -1
- package/test/sap/ui/core/qunit/opa/autowaiter/_resourceWaiter.js +1 -1
- package/test/sap/ui/core/qunit/opa/fixture/bindingPath.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/Interactable.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/LabelFor.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/Sibling.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/Visible.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/_Busy.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/_Editable.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/_Enabled.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/_Visitor.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/opa5/actions.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/opa5/basics.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/opa5/logging.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/opa5/matchers.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_BindingPath.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_ControlSelectorGenerator.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_ControlSelectorValidator.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_DropdownItem.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_GlobalID.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_LabelFor.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_Properties.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_Selector.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_TableRowItem.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_ViewID.js +1 -1
- package/test/sap/ui/core/qunit/opa/testsuite.opa.qunit.js +448 -426
- package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +8 -4
- package/test/sap/ui/core/qunit/performance/trace/Interaction.qunit.js +1 -1
- package/test/sap/ui/core/qunit/routing/Placeholder.qunit.js +1 -1
- package/test/sap/ui/core/qunit/routing/PlaceholderOptOut.qunit.js +1 -1
- package/test/sap/ui/core/qunit/tmpl/Template.qunit.js +1 -1
- package/test/sap/ui/core/qunit/ui5classes/ManagedObject.qunit.js +62 -1
- package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/LabelEnablement.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/Popup.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/ResponsivePaddingsEnablement.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/jquery.sap.dom.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/reflection/BaseTreeModifier.qunit.js +3 -3
- package/test/sap/ui/core/qunit/util/reflection/JsControlTreeModifier.qunit.js +3 -3
- package/test/sap/ui/core/qunit/util/reflection/XmlTreeModifier.qunit.js +3 -3
- package/test/sap/ui/core/qunit/util/reflection/testdata/comp/Component.js +10 -0
- package/test/sap/ui/core/qunit/util/reflection/testsuite.reflection.qunit.html +14 -0
- package/test/sap/ui/core/qunit/util/reflection/testsuite.reflection.qunit.js +30 -0
- package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +3 -56
- package/test/sap/ui/core/relnotes/changes-1.126.json +1 -1
- package/test/sap/ui/core/relnotes/changes-1.127.json +52 -0
- package/test/sap/ui/core/samples/databinding/UnitTable/ui5.yaml +1 -1
- package/test/sap/ui/qunit/TestRunner.js +721 -521
- package/test/sap/ui/qunit/testrunner.css +123 -20
- package/test/sap/ui/qunit/testrunner.html +57 -287
- /package/test/sap/ui/core/qunit/{component/testdata/other → util/reflection/testdata/comp}/fragment-withTemplating.fragment.xml +0 -0
|
@@ -77,8 +77,7 @@ sap.ui.define(['sap/ui/performance/trace/FESR', 'sap/ui/performance/trace/Intera
|
|
|
77
77
|
//delete startup time as we cannot compare it
|
|
78
78
|
delete oFESRHandle.timeToInteractive;
|
|
79
79
|
assert.deepEqual(oFESRHandle, oHandle, "Passed FESRHandle should be correct.");
|
|
80
|
-
|
|
81
|
-
assert.ok(Object.isFrozen(oInteraction), "Interaction is not editable.");
|
|
80
|
+
|
|
82
81
|
return {
|
|
83
82
|
stepName: "newStepName",
|
|
84
83
|
appNameLong: "newAppNameLong",
|
|
@@ -117,6 +116,9 @@ sap.ui.define(['sap/ui/performance/trace/FESR', 'sap/ui/performance/trace/Intera
|
|
|
117
116
|
}), "Found the optional FESR header field values.");
|
|
118
117
|
|
|
119
118
|
Interaction.end(true);
|
|
119
|
+
const oInteraction = Interaction.getAll()[1];
|
|
120
|
+
assert.throws(function() { oInteraction.component = "badComponent"; }, "Should throw an error after trying to overwrite the interaction object.");
|
|
121
|
+
assert.ok(Object.isFrozen(oInteraction), "Interaction is not editable.");
|
|
120
122
|
Interaction.clear();
|
|
121
123
|
FESR.setActive(false);
|
|
122
124
|
FESR.onBeforeCreated = fnOnBeforeCreated;
|
|
@@ -150,8 +152,7 @@ sap.ui.define(['sap/ui/performance/trace/FESR', 'sap/ui/performance/trace/Intera
|
|
|
150
152
|
//delete startup time as we cannot compare it
|
|
151
153
|
delete oFESRHandle.timeToInteractive;
|
|
152
154
|
assert.deepEqual(oFESRHandle, oHandle, "Passed FESRHandle should be correct.");
|
|
153
|
-
|
|
154
|
-
assert.ok(Object.isFrozen(oInteraction), "Interaction is not editable.");
|
|
155
|
+
|
|
155
156
|
return {
|
|
156
157
|
stepName: "newStepName",
|
|
157
158
|
appNameLong: "newAppNameLong",
|
|
@@ -190,6 +191,9 @@ sap.ui.define(['sap/ui/performance/trace/FESR', 'sap/ui/performance/trace/Intera
|
|
|
190
191
|
}), "Found the optional FESR header field values.");
|
|
191
192
|
|
|
192
193
|
Interaction.end(true);
|
|
194
|
+
const oInteraction = Interaction.getAll()[1];
|
|
195
|
+
assert.throws(function() { oInteraction.component = "badComponent"; }, "Should throw an error after trying to overwrite the interaction object.");
|
|
196
|
+
assert.ok(Object.isFrozen(oInteraction), "Interaction is not editable.");
|
|
193
197
|
Interaction.clear();
|
|
194
198
|
FESR.onBeforeCreated = fnOnBeforeCreated;
|
|
195
199
|
FESR.setActive(false);
|
|
@@ -5,7 +5,7 @@ sap.ui.define([
|
|
|
5
5
|
'sap/ui/performance/trace/FESRHelper',
|
|
6
6
|
"sap/ui/test/actions/Press",
|
|
7
7
|
"sap/m/Button",
|
|
8
|
-
"sap/ui/
|
|
8
|
+
"sap/ui/test/utils/nextUIUpdate"
|
|
9
9
|
], function(Interaction, XMLView, FESRHelper, Press, Button, nextUIUpdate) {
|
|
10
10
|
"use strict";
|
|
11
11
|
|
|
@@ -8,7 +8,7 @@ sap.ui.define([
|
|
|
8
8
|
"sap/m/Page",
|
|
9
9
|
"sap/m/SplitApp",
|
|
10
10
|
"sap/m/routing/TargetHandler",
|
|
11
|
-
"sap/ui/
|
|
11
|
+
"sap/ui/test/utils/nextUIUpdate",
|
|
12
12
|
"sap/m/routing/Router", /* need to require this module to correctly resolve router class in manifest */
|
|
13
13
|
"sap/f/routing/Router" /* need to require this module to correctly resolve router class in manifest */
|
|
14
14
|
], function(
|
|
@@ -5,7 +5,7 @@ sap.ui.define([
|
|
|
5
5
|
"sap/ui/core/Placeholder",
|
|
6
6
|
"sap/m/NavContainer",
|
|
7
7
|
"sap/m/routing/TargetHandler",
|
|
8
|
-
"sap/ui/
|
|
8
|
+
"sap/ui/test/utils/nextUIUpdate",
|
|
9
9
|
"sap/m/routing/Router" /* need to require this module to correctly resolve router class in manifest */
|
|
10
10
|
], function(
|
|
11
11
|
LoaderExtensions,
|
|
@@ -5,7 +5,7 @@ sap.ui.define([
|
|
|
5
5
|
"sap/ui/model/json/JSONModel",
|
|
6
6
|
"sap/ui/thirdparty/jquery",
|
|
7
7
|
"sap/ui/thirdparty/handlebars",
|
|
8
|
-
"sap/ui/
|
|
8
|
+
"sap/ui/test/utils/nextUIUpdate"
|
|
9
9
|
], function(Element, Template, JSONModel, jQuery, Handlebars, nextUIUpdate) {
|
|
10
10
|
"use strict";
|
|
11
11
|
|
|
@@ -1279,7 +1279,13 @@ sap.ui.define([
|
|
|
1279
1279
|
QUnit.test("Bind aggregation", function(assert) {
|
|
1280
1280
|
this.obj.bindAggregation("subObjects", "/list", this.template);
|
|
1281
1281
|
assert.equal(this.obj.isBound("subObjects"), true, "isBound must return true for bound aggregations");
|
|
1282
|
-
|
|
1282
|
+
|
|
1283
|
+
const aInstances = this.obj.getAggregation("subObjects", []);
|
|
1284
|
+
assert.equal(aInstances.length, 3, "Aggregation length should match model list length");
|
|
1285
|
+
|
|
1286
|
+
aInstances.forEach((oInstance) => {
|
|
1287
|
+
assert.strictEqual(oInstance[BindingInfo.OriginalParent], this.obj, "The cloned instance is marked with the object where the aggregation is defined");
|
|
1288
|
+
});
|
|
1283
1289
|
});
|
|
1284
1290
|
|
|
1285
1291
|
QUnit.test("Bind aggregation with Owner", function(assert) {
|
|
@@ -1297,6 +1303,7 @@ sap.ui.define([
|
|
|
1297
1303
|
|
|
1298
1304
|
assert.equal(Component.getOwnerIdFor(oClone), "myOwnerComponent", "Owner Component ID is correctly propagated");
|
|
1299
1305
|
assert.equal(oClone.getId(), "myTemplate-myCloneId", "Clone has correct ID");
|
|
1306
|
+
assert.strictEqual(oClone[BindingInfo.OriginalParent], oObjWithOwner, "The cloned instance is marked with the object where the aggregation is defined");
|
|
1300
1307
|
|
|
1301
1308
|
oClone.destroy();
|
|
1302
1309
|
|
|
@@ -1312,6 +1319,7 @@ sap.ui.define([
|
|
|
1312
1319
|
|
|
1313
1320
|
assert.equal(Component.getOwnerIdFor(oClone), "myOwnerComponent", "Owner Component ID is correctly propagated");
|
|
1314
1321
|
assert.equal(oClone.getId(), "myTemplate-myCloneId", "Clone has correct ID");
|
|
1322
|
+
assert.notOk(oClone.hasOwnProperty(BindingInfo.OriginalParent), "instance created from custom factory isn't marked");
|
|
1315
1323
|
|
|
1316
1324
|
oClone.destroy();
|
|
1317
1325
|
|
|
@@ -1324,6 +1332,7 @@ sap.ui.define([
|
|
|
1324
1332
|
});
|
|
1325
1333
|
oBindingInfo = oObjWithOwner.getBindingInfo("subObjects");
|
|
1326
1334
|
oClone = oBindingInfo.factory("myTemplate-myCloneId");
|
|
1335
|
+
assert.notOk(oClone.hasOwnProperty[BindingInfo.OriginalParent], "instance created from custom factory isn't marked");
|
|
1327
1336
|
|
|
1328
1337
|
assert.equal(Component.getOwnerIdFor(oClone), "myOwnerComponent", "Owner Component ID is correctly propagated");
|
|
1329
1338
|
assert.equal(oClone.getId(), "myTemplate-myCloneId", "Clone has correct ID");
|
|
@@ -1342,6 +1351,7 @@ sap.ui.define([
|
|
|
1342
1351
|
|
|
1343
1352
|
oBindingInfo = oObjWithDifferentOwner.getBindingInfo("subObjects");
|
|
1344
1353
|
oClone = oBindingInfo.factory("myTemplate2-myCloneId");
|
|
1354
|
+
assert.notOk(oClone.hasOwnProperty(BindingInfo.OriginalParent), "instance created from custom factory isn't marked");
|
|
1345
1355
|
|
|
1346
1356
|
assert.equal(Component.getOwnerIdFor(oClone), "myOwnerComponent2", "Owner Component ID is correctly propagated via unwrapping");
|
|
1347
1357
|
assert.equal(oClone.getId(), "myTemplate2-myCloneId", "Clone has correct ID");
|
|
@@ -1360,6 +1370,7 @@ sap.ui.define([
|
|
|
1360
1370
|
|
|
1361
1371
|
oBindingInfo = oObjWithOwner.getBindingInfo("subObjects");
|
|
1362
1372
|
oClone = oBindingInfo.factory("myAppTemplate-myCloneId");
|
|
1373
|
+
assert.notOk(oClone.hasOwnProperty(BindingInfo.OriginalParent), "instance created from custom factory isn't marked");
|
|
1363
1374
|
|
|
1364
1375
|
assert.equal(Component.getOwnerIdFor(oClone), "myAppOwnerComponent", "Original 'myAppOwnerComponent' is propagated to the clone");
|
|
1365
1376
|
assert.equal(oClone.getId(), "myAppTemplate-myCloneId", "Clone has correct ID");
|
|
@@ -1427,7 +1438,12 @@ sap.ui.define([
|
|
|
1427
1438
|
}.bind(this));
|
|
1428
1439
|
assert.equal(this.obj.isBound("subObjects"), true, "isBound must return true for bound aggregations");
|
|
1429
1440
|
assert.equal(this.obj.getAggregation("subObjects", []).length, 3, "Aggregation length should match model list length");
|
|
1441
|
+
|
|
1430
1442
|
aOldObjects = this.obj.getAggregation("subObjects");
|
|
1443
|
+
assert.ok(aOldObjects.every((oInstance) => {
|
|
1444
|
+
return oInstance && !oInstance.hasOwnProperty(BindingInfo.OriginalParent);
|
|
1445
|
+
}), "none of instances cloned from factory is marked");
|
|
1446
|
+
|
|
1431
1447
|
oModel.setProperty("/changingList", [{
|
|
1432
1448
|
value: 4
|
|
1433
1449
|
},
|
|
@@ -1445,7 +1461,12 @@ sap.ui.define([
|
|
|
1445
1461
|
}
|
|
1446
1462
|
]);
|
|
1447
1463
|
assert.equal(this.obj.getAggregation("subObjects", []).length, 5, "Aggregation length should match model list length");
|
|
1464
|
+
|
|
1448
1465
|
aNewObjects = this.obj.getAggregation("subObjects");
|
|
1466
|
+
assert.ok(aNewObjects.every((oInstance) => {
|
|
1467
|
+
return oInstance && !oInstance.hasOwnProperty(BindingInfo.OriginalParent);
|
|
1468
|
+
}), "none of instances cloned from factory is marked");
|
|
1469
|
+
|
|
1449
1470
|
assert.ok(aOldObjects[0] !== aNewObjects[0], "First SubObject is not reused after update");
|
|
1450
1471
|
assert.ok(aOldObjects[1] !== aNewObjects[1], "Second SubObject is not reused after update");
|
|
1451
1472
|
assert.ok(aOldObjects[2] !== aNewObjects[2], "Third SubObject is not reused after update");
|
|
@@ -1467,7 +1488,12 @@ sap.ui.define([
|
|
|
1467
1488
|
this.obj.bindAggregation("subObjects", "/changingList", this.template);
|
|
1468
1489
|
assert.equal(this.obj.isBound("subObjects"), true, "isBound must return true for bound aggregations");
|
|
1469
1490
|
assert.equal(this.obj.getAggregation("subObjects", []).length, 3, "Aggregation length should match model list length");
|
|
1491
|
+
|
|
1470
1492
|
aOldObjects = this.obj.getAggregation("subObjects");
|
|
1493
|
+
aOldObjects.forEach((oInstance) => {
|
|
1494
|
+
assert.strictEqual(oInstance[BindingInfo.OriginalParent], this.obj, "The cloned instance is marked with the object where the aggregation is defined");
|
|
1495
|
+
});
|
|
1496
|
+
|
|
1471
1497
|
oModel.setProperty("/changingList", [{
|
|
1472
1498
|
value: 1
|
|
1473
1499
|
},
|
|
@@ -1485,7 +1511,12 @@ sap.ui.define([
|
|
|
1485
1511
|
}
|
|
1486
1512
|
]);
|
|
1487
1513
|
assert.equal(this.obj.getAggregation("subObjects", []).length, 5, "Aggregation length should match model list length");
|
|
1514
|
+
|
|
1488
1515
|
aNewObjects = this.obj.getAggregation("subObjects");
|
|
1516
|
+
aNewObjects.forEach((oInstance) => {
|
|
1517
|
+
assert.strictEqual(oInstance[BindingInfo.OriginalParent], this.obj, "The cloned instance is marked with the object where the aggregation is defined");
|
|
1518
|
+
});
|
|
1519
|
+
|
|
1489
1520
|
assert.ok(aOldObjects[0] === aNewObjects[0], "First SubObject is reused after update");
|
|
1490
1521
|
assert.ok(aOldObjects[1] === aNewObjects[1], "Second SubObject is reused after update");
|
|
1491
1522
|
assert.ok(aOldObjects[2] === aNewObjects[4], "Third SubObject is reused after update");
|
|
@@ -1510,7 +1541,13 @@ sap.ui.define([
|
|
|
1510
1541
|
}.bind(this));
|
|
1511
1542
|
assert.equal(this.obj.isBound("subObjects"), true, "isBound must return true for bound aggregations");
|
|
1512
1543
|
assert.equal(this.obj.getAggregation("subObjects", []).length, 3, "Aggregation length should match model list length");
|
|
1544
|
+
|
|
1513
1545
|
aOldObjects = this.obj.getAggregation("subObjects");
|
|
1546
|
+
assert.ok(aOldObjects.every((oInstance) => {
|
|
1547
|
+
return oInstance && !oInstance.hasOwnProperty(BindingInfo.OriginalParent);
|
|
1548
|
+
}), "none of instances cloned from factory is marked");
|
|
1549
|
+
|
|
1550
|
+
|
|
1514
1551
|
oModel.setProperty("/changingList", [{
|
|
1515
1552
|
value: 1
|
|
1516
1553
|
},
|
|
@@ -1528,7 +1565,12 @@ sap.ui.define([
|
|
|
1528
1565
|
}
|
|
1529
1566
|
]);
|
|
1530
1567
|
assert.equal(this.obj.getAggregation("subObjects", []).length, 5, "Aggregation length should match model list length");
|
|
1568
|
+
|
|
1531
1569
|
aNewObjects = this.obj.getAggregation("subObjects");
|
|
1570
|
+
assert.ok(aNewObjects.every((oInstance) => {
|
|
1571
|
+
return oInstance && !oInstance.hasOwnProperty(BindingInfo.OriginalParent);
|
|
1572
|
+
}), "none of instances cloned from factory is marked");
|
|
1573
|
+
|
|
1532
1574
|
assert.ok(aOldObjects[0] === aNewObjects[0], "First SubObject is reused after update");
|
|
1533
1575
|
assert.ok(aOldObjects[1] === aNewObjects[1], "Second SubObject is reused after update");
|
|
1534
1576
|
assert.ok(aOldObjects[2] === aNewObjects[4], "Third SubObject is reused after update");
|
|
@@ -2835,6 +2877,25 @@ sap.ui.define([
|
|
|
2835
2877
|
oTestManagedObject.destroy();
|
|
2836
2878
|
});
|
|
2837
2879
|
|
|
2880
|
+
QUnit.test("Create object with pre-existing BindingInfo containing a model name", function(assert) {
|
|
2881
|
+
// Binding string with multiple ">" characters
|
|
2882
|
+
// 1st occurrence denotes the named model, the 2nd occurrence must not be touched as it's part of an expression (">=")
|
|
2883
|
+
const sBindingString = "{= !!${path: 'contact>email/[${type/EnumMember}>=0]/address'} }";
|
|
2884
|
+
|
|
2885
|
+
// initial parsing of binding string will extract the model name
|
|
2886
|
+
const oTestManagedObject = new TestManagedObject("TestObjectWithModelNames", {
|
|
2887
|
+
value: sBindingString
|
|
2888
|
+
});
|
|
2889
|
+
let oBindingInfo = oTestManagedObject.getBindingInfo("value");
|
|
2890
|
+
|
|
2891
|
+
// 2nd time binding a property with an existing (already parsed) BindingInfo
|
|
2892
|
+
oTestManagedObject.bindProperty("value", oBindingInfo);
|
|
2893
|
+
oBindingInfo = oTestManagedObject.getBindingInfo("value");
|
|
2894
|
+
|
|
2895
|
+
// the 2nd pass must not again try to extract a named model if one is already present
|
|
2896
|
+
assert.equal(oBindingInfo.parts[0].model, "contact", "Model name is correct");
|
|
2897
|
+
});
|
|
2898
|
+
|
|
2838
2899
|
QUnit.test("ObjectBindings Elementcontext should be removed if model is not available anymore", function(assert){
|
|
2839
2900
|
var oTestManagedObjectParent = new TestManagedObject("ParentObject", {
|
|
2840
2901
|
models: {
|
|
@@ -6,7 +6,7 @@ sap.ui.define([
|
|
|
6
6
|
"sap/ui/core/StaticArea",
|
|
7
7
|
"sap/base/Log",
|
|
8
8
|
"sap/ui/thirdparty/sinon",
|
|
9
|
-
"sap/ui/
|
|
9
|
+
"sap/ui/test/utils/nextUIUpdate",
|
|
10
10
|
"sap/ui/thirdparty/sinon-qunit"
|
|
11
11
|
], function (coreLibrary, InvisibleMessage, StaticArea, Log, sinon, nextUIUpdate) {
|
|
12
12
|
"use strict";
|
|
@@ -4204,7 +4204,7 @@ sap.ui.define([
|
|
|
4204
4204
|
});
|
|
4205
4205
|
|
|
4206
4206
|
//*********************************************************************************************
|
|
4207
|
-
QUnit.test(`plugIn, async getResult
|
|
4207
|
+
QUnit.test(`plugIn, async getResult rejected promise`, function (assert) {
|
|
4208
4208
|
return this.checkTracing(assert, true, [
|
|
4209
4209
|
{m : `[ 0] Start processing qux`},
|
|
4210
4210
|
{m : `[ 1] Calling visitor`, d : 1},
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
sap.ui.define([
|
|
3
3
|
"sap/base/util/LoaderExtensions",
|
|
4
4
|
"jquery.sap.dom",
|
|
5
|
-
"sap/ui/
|
|
5
|
+
"sap/ui/test/utils/nextUIUpdate",
|
|
6
6
|
"sap/ui/qunit/QUnitUtils" // implicit dependency, implements jQuery#_sapTest_dataEvents
|
|
7
7
|
], function (LoaderExtensions, jQuery, nextUIUpdate /*, qutils */) {
|
|
8
8
|
"use strict";
|
|
@@ -67,7 +67,7 @@ sap.ui.define([
|
|
|
67
67
|
QUnit.module("While handling xml views, the BaseTreeModifier", {
|
|
68
68
|
beforeEach: function () {
|
|
69
69
|
return Component.create({
|
|
70
|
-
name: "
|
|
70
|
+
name: "testdata.comp",
|
|
71
71
|
id: "testComponent"
|
|
72
72
|
}).then(function(oComponent) {
|
|
73
73
|
this.oComponent = oComponent;
|
|
@@ -162,7 +162,7 @@ sap.ui.define([
|
|
|
162
162
|
QUnit.module("While handling js views the BaseTreeModifier", {
|
|
163
163
|
beforeEach: function () {
|
|
164
164
|
return Component.create({
|
|
165
|
-
name: "
|
|
165
|
+
name: "testdata.comp",
|
|
166
166
|
id: "testComponent"
|
|
167
167
|
}).then(function(oComponent) {
|
|
168
168
|
this.oComponent = oComponent;
|
|
@@ -226,7 +226,7 @@ sap.ui.define([
|
|
|
226
226
|
QUnit.module("While handling js views (with extension points) the BaseTreeModifier", {
|
|
227
227
|
beforeEach: function () {
|
|
228
228
|
return Component.create({
|
|
229
|
-
name: "
|
|
229
|
+
name: "testdata.comp",
|
|
230
230
|
id: "testComponent"
|
|
231
231
|
}).then(function(oComponent) {
|
|
232
232
|
this.oComponent = oComponent;
|
|
@@ -64,7 +64,7 @@ sap.ui.define([
|
|
|
64
64
|
'</mvc:View>';
|
|
65
65
|
|
|
66
66
|
return Component.create({
|
|
67
|
-
name: "
|
|
67
|
+
name: "testdata.comp",
|
|
68
68
|
id: "testComponent"
|
|
69
69
|
}).then(function(oComponent) {
|
|
70
70
|
this.oComponent = oComponent;
|
|
@@ -511,7 +511,7 @@ sap.ui.define([
|
|
|
511
511
|
QUnit.module("Given the JsControlTreeModifier...", {
|
|
512
512
|
beforeEach: function () {
|
|
513
513
|
return Component.create({
|
|
514
|
-
name: "
|
|
514
|
+
name: "testdata.comp",
|
|
515
515
|
id: "testComponent"
|
|
516
516
|
}).then(function(oComponent) {
|
|
517
517
|
this.oComponent = oComponent;
|
|
@@ -765,7 +765,7 @@ sap.ui.define([
|
|
|
765
765
|
};
|
|
766
766
|
|
|
767
767
|
return JsControlTreeModifier.templateControlFragment(
|
|
768
|
-
"
|
|
768
|
+
"testdata.comp.fragment-withTemplating",
|
|
769
769
|
mPreprocessorSettings,
|
|
770
770
|
undefined
|
|
771
771
|
).then(function(aControls) {
|
|
@@ -134,7 +134,7 @@ sap.ui.define([
|
|
|
134
134
|
this.oXmlView2 = XMLHelper.parse(this.oXmlString2, "application/xml").documentElement;
|
|
135
135
|
|
|
136
136
|
return Component.create({
|
|
137
|
-
name: "
|
|
137
|
+
name: "testdata.comp",
|
|
138
138
|
id: "testComponent"
|
|
139
139
|
}).then(function(oComponent) {
|
|
140
140
|
this.oComponent = oComponent;
|
|
@@ -986,7 +986,7 @@ sap.ui.define([
|
|
|
986
986
|
};
|
|
987
987
|
|
|
988
988
|
return XmlTreeModifier.templateControlFragment(
|
|
989
|
-
"
|
|
989
|
+
"testdata.comp.fragment-withTemplating",
|
|
990
990
|
mPreprocessorSettings,
|
|
991
991
|
undefined
|
|
992
992
|
).then(function(aControls) {
|
|
@@ -1140,7 +1140,7 @@ sap.ui.define([
|
|
|
1140
1140
|
},
|
|
1141
1141
|
beforeEach: function () {
|
|
1142
1142
|
this.pComponent = Component.create({
|
|
1143
|
-
name: "
|
|
1143
|
+
name: "testdata.comp",
|
|
1144
1144
|
id: "testComponent"
|
|
1145
1145
|
}).then(function(oComponent) {
|
|
1146
1146
|
this.oComponent = oComponent;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<base href="../../../../../../../">
|
|
7
|
+
<title>TestSuite for sap.ui.core: GTP testcase CORE/UTILS/REFLECTION</title>
|
|
8
|
+
<script src="resources/sap/ui/test/starter/createSuite.js"></script>
|
|
9
|
+
</head>
|
|
10
|
+
|
|
11
|
+
<body>
|
|
12
|
+
</body>
|
|
13
|
+
|
|
14
|
+
</html>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
sap.ui.define(["sap/ui/Device"], function (Device) {
|
|
2
|
+
|
|
3
|
+
"use strict";
|
|
4
|
+
return {
|
|
5
|
+
name: "TestSuite for sap.ui.core: GTP testcase CORE/UTILS/REFLECTION",
|
|
6
|
+
defaults: {
|
|
7
|
+
qunit: {
|
|
8
|
+
version: 2
|
|
9
|
+
},
|
|
10
|
+
sinon: {
|
|
11
|
+
version: 4,
|
|
12
|
+
qunitBridge: false,
|
|
13
|
+
useFakeTimers: false
|
|
14
|
+
},
|
|
15
|
+
coverage: {
|
|
16
|
+
only: "[sap/ui/core/util/reflection]"
|
|
17
|
+
},
|
|
18
|
+
loader: {
|
|
19
|
+
paths: {
|
|
20
|
+
"testdata": "test-resources/sap/ui/core/qunit/util/reflection/testdata"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
tests: {
|
|
25
|
+
BaseTreeModifier: {},
|
|
26
|
+
JsControlTreeModifier: {},
|
|
27
|
+
XmlTreeModifier: {}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
});
|
|
@@ -90,15 +90,7 @@ sap.ui.define(["sap/ui/Device"], function (Device) {
|
|
|
90
90
|
}
|
|
91
91
|
},
|
|
92
92
|
Serializer: {},
|
|
93
|
-
"support/SupportTool": {
|
|
94
|
-
loader: {
|
|
95
|
-
paths: {
|
|
96
|
-
"sap/ui/test": "../",
|
|
97
|
-
"sap/ui/test/qunitPause": "resources/sap/ui/test/qunitPause",
|
|
98
|
-
"sap/ui/test/RecorderHotkeyListener": "resources/sap/ui/test/RecorderHotkeyListener"
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
},
|
|
93
|
+
"support/SupportTool": {},
|
|
102
94
|
"support/TechnicalInfo": {},
|
|
103
95
|
"support/TechnicalInfo.opa": {
|
|
104
96
|
loader: {
|
|
@@ -138,53 +130,8 @@ sap.ui.define(["sap/ui/Device"], function (Device) {
|
|
|
138
130
|
ExportTypeCSV: {},
|
|
139
131
|
PasteHelper: {},
|
|
140
132
|
ResponsivePaddingsEnablement: {},
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
version: 4,
|
|
144
|
-
qunitBridge: false
|
|
145
|
-
},
|
|
146
|
-
coverage: {
|
|
147
|
-
only: "[sap/ui/core/util/reflection]"
|
|
148
|
-
},
|
|
149
|
-
loader: {
|
|
150
|
-
paths: {
|
|
151
|
-
"sap/ui/test": "test-resources/sap/ui/core/qunit/component/testdata",
|
|
152
|
-
"sap/ui/test/qunitPause": "resources/sap/ui/test/qunitPause",
|
|
153
|
-
"sap/ui/test/RecorderHotkeyListener": "resources/sap/ui/test/RecorderHotkeyListener"
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
},
|
|
157
|
-
"reflection/JsControlTreeModifier": {
|
|
158
|
-
sinon: {
|
|
159
|
-
version: 4,
|
|
160
|
-
qunitBridge: false
|
|
161
|
-
},
|
|
162
|
-
coverage: {
|
|
163
|
-
only: "[sap/ui/core/util/reflection]"
|
|
164
|
-
},
|
|
165
|
-
loader: {
|
|
166
|
-
paths: {
|
|
167
|
-
"sap/ui/test": "test-resources/sap/ui/core/qunit/component/testdata",
|
|
168
|
-
"sap/ui/test/qunitPause": "resources/sap/ui/test/qunitPause",
|
|
169
|
-
"sap/ui/test/RecorderHotkeyListener": "resources/sap/ui/test/RecorderHotkeyListener"
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
},
|
|
173
|
-
"reflection/XmlTreeModifier": {
|
|
174
|
-
sinon: {
|
|
175
|
-
version: 4,
|
|
176
|
-
qunitBridge: false
|
|
177
|
-
},
|
|
178
|
-
coverage: {
|
|
179
|
-
only: "[sap/ui/core/util/reflection]"
|
|
180
|
-
},
|
|
181
|
-
loader: {
|
|
182
|
-
paths: {
|
|
183
|
-
"sap/ui/test": "test-resources/sap/ui/core/qunit/component/testdata",
|
|
184
|
-
"sap/ui/test/qunitPause": "resources/sap/ui/test/qunitPause",
|
|
185
|
-
"sap/ui/test/RecorderHotkeyListener": "resources/sap/ui/test/RecorderHotkeyListener"
|
|
186
|
-
}
|
|
187
|
-
}
|
|
133
|
+
reflection: {
|
|
134
|
+
page: "test-resources/sap/ui/core/qunit/util/reflection/testsuite.reflection.qunit.html"
|
|
188
135
|
},
|
|
189
136
|
ViewSerializer: {
|
|
190
137
|
ui5: {
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"1.127.0": {
|
|
3
|
+
"date": "August 2024",
|
|
4
|
+
"notes": [
|
|
5
|
+
{
|
|
6
|
+
"id": "7eb17a6be9d1f0ee6b3047ebd59f3cf7bc7ddf30",
|
|
7
|
+
"type": "FEATURE",
|
|
8
|
+
"text": " sap.m.Menu, sap.ui.unified.Menu: add menu item selection functionality"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"id": "7f04bc3333aac8e5de99f217c87d24ed53ebc4fc",
|
|
12
|
+
"type": "FIX",
|
|
13
|
+
"text": " sap.ui.core.LocaleData#requestInstance: Enable synchronous instance creation"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"id": "becce31d29382136c869622d9acc13ae7bac5b64",
|
|
17
|
+
"type": "FIX",
|
|
18
|
+
"text": " core/Element: avoid 'focusfail' when the control still has focus"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "8963a855f10a017f234057f4828de65bc13fbb0d",
|
|
22
|
+
"type": "FIX",
|
|
23
|
+
"text": " BindingInfo: Ensure that named models are only parsed once"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": "3ec59bb8c31f748fac1e65dcbe9589850a7d6933",
|
|
27
|
+
"type": "FIX",
|
|
28
|
+
"text": " sap/ui/dom/findTabbable: replace recursion with iteration"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "b7c8ba23137aba2bc5c97b26283db1fec9b063db",
|
|
32
|
+
"type": "FIX",
|
|
33
|
+
"text": " ControllerExtension support for TypeScript"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "8d03afad2afa683b2dc737c253c64c84639f80d4",
|
|
37
|
+
"type": "FEATURE",
|
|
38
|
+
"text": " Provide base variables as custom CSS properties"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "aabfde0b1e9f97cdf76baa382cf55d0ed7b923b4",
|
|
42
|
+
"type": "FEATURE",
|
|
43
|
+
"text": " Make sap/ui/test/nextUIUpdate publically available"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "255ca3fcc46d6ae39b91460a33000b34c1453e58",
|
|
47
|
+
"type": "FIX",
|
|
48
|
+
"text": " sap.m.Popover: close the popover if the opener is not visible"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
}
|