@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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*global QUnit sinon */
|
|
2
2
|
sap.ui.define([
|
|
3
3
|
'sap/ui/qunit/QUnitUtils',
|
|
4
|
-
"sap/ui/
|
|
4
|
+
"sap/ui/test/utils/nextUIUpdate",
|
|
5
5
|
'sap/ui/core/Component',
|
|
6
6
|
'sap/ui/core/ComponentContainer',
|
|
7
7
|
'sap/ui/core/XMLTemplateProcessor',
|
|
@@ -37,7 +37,7 @@ sap.ui.define([
|
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
QUnit.test("ExtensionPoint contains async View/Fragment", function(assert) {
|
|
40
|
-
var sManifestUrl = sap.ui.require.toUrl("
|
|
40
|
+
var sManifestUrl = sap.ui.require.toUrl("testdata/customizing/async/noInterface/customer/manifest.json");
|
|
41
41
|
var oRootComponent;
|
|
42
42
|
|
|
43
43
|
return Component.create({
|
|
@@ -200,7 +200,7 @@ sap.ui.define([
|
|
|
200
200
|
|
|
201
201
|
QUnit.test("ExtensionPoint contains async View/Fragment", function(assert) {
|
|
202
202
|
// Create component with manifest containing viewExtensions
|
|
203
|
-
var sManifestUrl = sap.ui.require.toUrl("
|
|
203
|
+
var sManifestUrl = sap.ui.require.toUrl("testdata/customizing/async/viewExtensions/customer/manifest.json");
|
|
204
204
|
|
|
205
205
|
return Component.create({
|
|
206
206
|
id: "myCustomerComponent",
|
|
@@ -5,7 +5,7 @@ sap.ui.define([
|
|
|
5
5
|
"sap/ui/core/Element",
|
|
6
6
|
"sap/ui/core/mvc/Controller",
|
|
7
7
|
"sap/ui/qunit/utils/createAndAppendDiv",
|
|
8
|
-
"sap/ui/
|
|
8
|
+
"sap/ui/test/utils/nextUIUpdate"
|
|
9
9
|
], function(Event, Component, ComponentContainer, Element, Controller, createAndAppendDiv, nextUIUpdate) {
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
@@ -6,7 +6,7 @@ sap.ui.define([
|
|
|
6
6
|
"sap/ui/core/mvc/Controller",
|
|
7
7
|
"sap/ui/core/mvc/View",
|
|
8
8
|
"sap/ui/qunit/utils/createAndAppendDiv",
|
|
9
|
-
"sap/ui/
|
|
9
|
+
"sap/ui/test/utils/nextUIUpdate",
|
|
10
10
|
'sap/ui/core/XMLTemplateProcessor',
|
|
11
11
|
'sap/ui/core/mvc/XMLProcessingMode'
|
|
12
12
|
], function (Event, Component, ComponentContainer, Element, Controller, View, createAndAppendDiv, nextUIUpdate, XMLTemplateProcessor, XMLProcessingMode) {
|
|
@@ -358,7 +358,7 @@ sap.ui.define([
|
|
|
358
358
|
});
|
|
359
359
|
|
|
360
360
|
QUnit.test("SequentialLegacy - ExtensionPoint contains async View/Fragment", function (assert) {
|
|
361
|
-
// var sManifestUrl = sap.ui.require.toUrl("
|
|
361
|
+
// var sManifestUrl = sap.ui.require.toUrl("testdata/customizing/async/noInterface/customer/manifest.json");
|
|
362
362
|
var oRootComponent, oManualCreatedView;
|
|
363
363
|
|
|
364
364
|
return Component.create({
|
|
@@ -5,7 +5,7 @@ sap.ui.define([
|
|
|
5
5
|
"sap/ui/core/Element",
|
|
6
6
|
'sap/ui/core/mvc/XMLView',
|
|
7
7
|
"sap/ui/qunit/utils/createAndAppendDiv",
|
|
8
|
-
"sap/ui/
|
|
8
|
+
"sap/ui/test/utils/nextUIUpdate",
|
|
9
9
|
'sap/ui/qunit/QUnitUtils'
|
|
10
10
|
], function(Event, Component, ComponentContainer, Element, XMLView, createAndAppendDiv, nextUIUpdate, qutils) {
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@ sap.ui.define([
|
|
|
5
5
|
"sap/ui/core/Element",
|
|
6
6
|
"sap/ui/core/mvc/Controller",
|
|
7
7
|
"sap/ui/qunit/utils/createAndAppendDiv",
|
|
8
|
-
"sap/ui/
|
|
8
|
+
"sap/ui/test/utils/nextUIUpdate"
|
|
9
9
|
], function (Event, Component, ComponentContainer, Element, Controller, createAndAppendDiv, nextUIUpdate) {
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
@@ -5,7 +5,7 @@ sap.ui.define([
|
|
|
5
5
|
'sap/ui/core/ExtensionPoint',
|
|
6
6
|
'sap/ui/core/mvc/XMLView',
|
|
7
7
|
'sap/ui/core/Fragment',
|
|
8
|
-
"sap/ui/
|
|
8
|
+
"sap/ui/test/utils/nextUIUpdate"
|
|
9
9
|
], function(Component, ComponentContainer, XMLTemplateProcessor, ExtensionPoint, XMLView, Fragment, nextUIUpdate) {
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
@@ -757,7 +757,7 @@ sap.ui.define([
|
|
|
757
757
|
|
|
758
758
|
|
|
759
759
|
QUnit.test("Default content contains Async View/Fragment", function(assert) {
|
|
760
|
-
var sManifestUrl = sap.ui.require.toUrl("
|
|
760
|
+
var sManifestUrl = sap.ui.require.toUrl("testdata/extensionPoints/defaultContent/manifest.json");
|
|
761
761
|
|
|
762
762
|
return Component.create({
|
|
763
763
|
name: "testdata.extensionPoints",
|
|
@@ -793,7 +793,7 @@ sap.ui.define([
|
|
|
793
793
|
});
|
|
794
794
|
|
|
795
795
|
QUnit.test("ExtensionPoint contains Async View/Fragment", function(assert) {
|
|
796
|
-
var sManifestUrl = sap.ui.require.toUrl("
|
|
796
|
+
var sManifestUrl = sap.ui.require.toUrl("testdata/extensionPoints/viewExtensions/manifest.json");
|
|
797
797
|
|
|
798
798
|
return Component.create({
|
|
799
799
|
name: "testdata.extensionPoints",
|
|
@@ -2,7 +2,7 @@ sap.ui.define([
|
|
|
2
2
|
'sap/ui/core/Component',
|
|
3
3
|
'sap/ui/core/ComponentContainer',
|
|
4
4
|
'sap/ui/core/ExtensionPoint',
|
|
5
|
-
"sap/ui/
|
|
5
|
+
"sap/ui/test/utils/nextUIUpdate",
|
|
6
6
|
// Load ExtensionPointProvider in advance because Controller expects some extensions to be processed sync
|
|
7
7
|
'testdata/customizing/customer/ext/ExtensionPointProvider'
|
|
8
8
|
], function(Component, ComponentContainer, ExtensionPoint, nextUIUpdate, ExtensionPointProvider) {
|
|
@@ -34,7 +34,7 @@ sap.ui.define([
|
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
QUnit.test("Component Name in manifest", function(assert) {
|
|
37
|
-
this.sComponentName = "
|
|
37
|
+
this.sComponentName = "testdata.foo.bar";
|
|
38
38
|
this.oManifestJson = {
|
|
39
39
|
"sap.app": {
|
|
40
40
|
"id": this.sComponentName
|
|
@@ -46,7 +46,7 @@ sap.ui.define([
|
|
|
46
46
|
});
|
|
47
47
|
|
|
48
48
|
QUnit.test("Component Name as config option", function(assert) {
|
|
49
|
-
this.sComponentName = "
|
|
49
|
+
this.sComponentName = "testdata.foo.bar";
|
|
50
50
|
this.oManifestJson = {
|
|
51
51
|
"sap.app": {}
|
|
52
52
|
};
|
|
@@ -62,7 +62,7 @@ sap.ui.define([
|
|
|
62
62
|
*/
|
|
63
63
|
QUnit.test("getEntry (future=false)", function(assert) {
|
|
64
64
|
future.active = false;
|
|
65
|
-
this.sComponentName = "
|
|
65
|
+
this.sComponentName = "testdata.foo.bar";
|
|
66
66
|
this.oManifestJson = {
|
|
67
67
|
"sap.app": {
|
|
68
68
|
"id": this.sComponentName,
|
|
@@ -109,7 +109,7 @@ sap.ui.define([
|
|
|
109
109
|
|
|
110
110
|
QUnit.test("getEntry (future=true)", function(assert) {
|
|
111
111
|
future.active = true;
|
|
112
|
-
this.sComponentName = "
|
|
112
|
+
this.sComponentName = "testdata.foo.bar";
|
|
113
113
|
this.oManifestJson = {
|
|
114
114
|
"sap.app": {
|
|
115
115
|
"id": this.sComponentName,
|
|
@@ -159,7 +159,7 @@ sap.ui.define([
|
|
|
159
159
|
this.oManifest = new Manifest({
|
|
160
160
|
"sap.app": {}
|
|
161
161
|
}, {
|
|
162
|
-
componentName: "
|
|
162
|
+
componentName: "testdata.foo.bar",
|
|
163
163
|
url: "manifest/uri/manifest.json"
|
|
164
164
|
});
|
|
165
165
|
|
|
@@ -173,7 +173,7 @@ sap.ui.define([
|
|
|
173
173
|
var that = this;
|
|
174
174
|
var done = assert.async();
|
|
175
175
|
Manifest.load({
|
|
176
|
-
componentName: "
|
|
176
|
+
componentName: "testdata.manifestload",
|
|
177
177
|
manifestUrl: "test-resources/sap/ui/core/qunit/component/testdata/manifestload/manifest.json",
|
|
178
178
|
async: true
|
|
179
179
|
}).then(function(oManifest) {
|
|
@@ -191,7 +191,7 @@ sap.ui.define([
|
|
|
191
191
|
QUnit.test("Manifest from Object", function(assert) {
|
|
192
192
|
this.oManifest = new Manifest({
|
|
193
193
|
"sap.app": {
|
|
194
|
-
"id": "
|
|
194
|
+
"id": "testdata.manifestload"
|
|
195
195
|
},
|
|
196
196
|
"sap.ui5": {
|
|
197
197
|
"someValue": "someValue456",
|
|
@@ -199,7 +199,7 @@ sap.ui.define([
|
|
|
199
199
|
"libs": {
|
|
200
200
|
},
|
|
201
201
|
"components": {
|
|
202
|
-
"
|
|
202
|
+
"testdata.manifestload": {}
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
205
|
}
|
|
@@ -219,7 +219,7 @@ sap.ui.define([
|
|
|
219
219
|
QUnit.test("Replace text placeholders in Manifest", function (assert) {
|
|
220
220
|
this.oManifest = new Manifest({
|
|
221
221
|
"sap.app": {
|
|
222
|
-
"id": "
|
|
222
|
+
"id": "testdata.terminologies",
|
|
223
223
|
"type": "application",
|
|
224
224
|
"i18n": "i18n.properties",
|
|
225
225
|
"title": "{{appTitle}}",
|
|
@@ -244,7 +244,7 @@ sap.ui.define([
|
|
|
244
244
|
|
|
245
245
|
this.oManifest = new Manifest({
|
|
246
246
|
"sap.app": {
|
|
247
|
-
"id": "
|
|
247
|
+
"id": "testdata.terminologies",
|
|
248
248
|
"type": "application",
|
|
249
249
|
"i18n": {
|
|
250
250
|
"bundleUrl": "i18n.properties",
|
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
|
|
27
27
|
QUnit.test("Manifest.load SYNC", function(assert) {
|
|
28
28
|
this.oManifest = Manifest.load({
|
|
29
|
-
componentName: "
|
|
29
|
+
componentName: "testdata.manifestload",
|
|
30
30
|
manifestUrl: "test-resources/sap/ui/core/qunit/component/testdata/manifestload/manifest.json",
|
|
31
31
|
async: false
|
|
32
32
|
});
|
|
@@ -32,12 +32,12 @@ sap.ui.define([
|
|
|
32
32
|
var oConfig;
|
|
33
33
|
if (bManifestFirst) {
|
|
34
34
|
oConfig = {
|
|
35
|
-
name: bDefineComponentName ? "
|
|
36
|
-
manifest: getModulePath("
|
|
35
|
+
name: bDefineComponentName ? "testdata." + sComponentName : undefined,
|
|
36
|
+
manifest: getModulePath("testdata." + sComponentName) + "/manifest.json"
|
|
37
37
|
};
|
|
38
38
|
} else {
|
|
39
39
|
oConfig = {
|
|
40
|
-
name: "
|
|
40
|
+
name: "testdata." + sComponentName,
|
|
41
41
|
manifest: false
|
|
42
42
|
};
|
|
43
43
|
}
|
|
@@ -49,12 +49,12 @@ sap.ui.define([
|
|
|
49
49
|
|
|
50
50
|
this.oExpectedMetadata = {
|
|
51
51
|
|
|
52
|
-
"name": "
|
|
52
|
+
"name": "testdata." + sComponentName + ".Component",
|
|
53
53
|
"version": "1.0.0",
|
|
54
54
|
"includes" : ["style.css", "script.js"],
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"libs": ["sap.ui.layout"],
|
|
57
|
-
"components" : ["
|
|
57
|
+
"components" : ["testdata.other"],
|
|
58
58
|
"ui5version" : "1.22.5"
|
|
59
59
|
},
|
|
60
60
|
"config": {
|
|
@@ -83,20 +83,20 @@ sap.ui.define([
|
|
|
83
83
|
},
|
|
84
84
|
"rootView": {
|
|
85
85
|
"type": "XML",
|
|
86
|
-
"viewName": "
|
|
86
|
+
"viewName": "testdata.view.Main"
|
|
87
87
|
},
|
|
88
88
|
"customizing": {
|
|
89
89
|
"sap.ui.viewReplacements": {
|
|
90
|
-
"
|
|
91
|
-
"viewName": "
|
|
90
|
+
"testdata.view.Main": {
|
|
91
|
+
"viewName": "testdata.view.Main",
|
|
92
92
|
"type": "XML"
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"sap.ui.controllerReplacements": {
|
|
96
|
-
"
|
|
96
|
+
"testdata.view.Main": "testdata.view.Main"
|
|
97
97
|
},
|
|
98
98
|
"sap.ui.viewExtensions": {
|
|
99
|
-
"
|
|
99
|
+
"testdata.view.Main": {
|
|
100
100
|
"extension": {
|
|
101
101
|
"name": "sap.xx.new.Fragment",
|
|
102
102
|
"type": "sap.ui.core.XMLFragment"
|
|
@@ -104,7 +104,7 @@ sap.ui.define([
|
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
106
|
"sap.ui.viewModification": {
|
|
107
|
-
"
|
|
107
|
+
"testdata.view.Main": {
|
|
108
108
|
"myControlId": {
|
|
109
109
|
"text": "This is my text"
|
|
110
110
|
}
|
|
@@ -141,9 +141,9 @@ sap.ui.define([
|
|
|
141
141
|
};
|
|
142
142
|
|
|
143
143
|
this.oExpectedManifest = {
|
|
144
|
-
"name": "
|
|
144
|
+
"name": "testdata." + sComponentName + ".Component",
|
|
145
145
|
"sap.app": {
|
|
146
|
-
"id": "
|
|
146
|
+
"id": "testdata." + sComponentName,
|
|
147
147
|
"applicationVersion": {
|
|
148
148
|
"version": "1.0.0"
|
|
149
149
|
},
|
|
@@ -172,7 +172,7 @@ sap.ui.define([
|
|
|
172
172
|
},
|
|
173
173
|
"dependencies": {
|
|
174
174
|
"components": {
|
|
175
|
-
"
|
|
175
|
+
"testdata.other": {
|
|
176
176
|
"optional": true,
|
|
177
177
|
"minVersion": "1.0.1"
|
|
178
178
|
}
|
|
@@ -196,7 +196,7 @@ sap.ui.define([
|
|
|
196
196
|
},
|
|
197
197
|
"rootView": {
|
|
198
198
|
"type": "XML",
|
|
199
|
-
"viewName": "
|
|
199
|
+
"viewName": "testdata.view.Main"
|
|
200
200
|
},
|
|
201
201
|
"config": {
|
|
202
202
|
"any1": {
|
|
@@ -215,10 +215,10 @@ sap.ui.define([
|
|
|
215
215
|
"extends": {
|
|
216
216
|
"extensions": {
|
|
217
217
|
"sap.ui.controllerReplacements": {
|
|
218
|
-
"
|
|
218
|
+
"testdata.view.Main": "testdata.view.Main"
|
|
219
219
|
},
|
|
220
220
|
"sap.ui.viewExtensions": {
|
|
221
|
-
"
|
|
221
|
+
"testdata.view.Main": {
|
|
222
222
|
"extension": {
|
|
223
223
|
"name": "sap.xx.new.Fragment",
|
|
224
224
|
"type": "sap.ui.core.XMLFragment"
|
|
@@ -226,16 +226,16 @@ sap.ui.define([
|
|
|
226
226
|
}
|
|
227
227
|
},
|
|
228
228
|
"sap.ui.viewModification": {
|
|
229
|
-
"
|
|
229
|
+
"testdata.view.Main": {
|
|
230
230
|
"myControlId": {
|
|
231
231
|
"text": "This is my text"
|
|
232
232
|
}
|
|
233
233
|
}
|
|
234
234
|
},
|
|
235
235
|
"sap.ui.viewReplacements": {
|
|
236
|
-
"
|
|
236
|
+
"testdata.view.Main": {
|
|
237
237
|
"type": "XML",
|
|
238
|
-
"viewName": "
|
|
238
|
+
"viewName": "testdata.view.Main"
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
241
|
}
|
|
@@ -266,7 +266,7 @@ sap.ui.define([
|
|
|
266
266
|
this.oExpectedRawManifest["sap.app"]["title"] = "{{title}}";
|
|
267
267
|
this.oExpectedRawManifest["sap.app"]["description"] = "{{description}}";
|
|
268
268
|
this.oExpectedRawManifest["sap.ui5"]["extends"]["extensions"]["sap.ui.viewModification"]
|
|
269
|
-
["
|
|
269
|
+
["testdata.view.Main"]["myControlId"]["text"] = "{{mytext}}";
|
|
270
270
|
|
|
271
271
|
}.bind(this));
|
|
272
272
|
|
|
@@ -462,7 +462,7 @@ sap.ui.define([
|
|
|
462
462
|
|
|
463
463
|
QUnit.test("Manifest Validation", function(assert) {
|
|
464
464
|
|
|
465
|
-
assert.equal(this.oMetadata.getName(), "
|
|
465
|
+
assert.equal(this.oMetadata.getName(), "testdata.v2empty.Component", "Name is correct!");
|
|
466
466
|
assert.equal(this.oMetadata.getMetadataVersion(), 2, "MetadataVersion is correct!");
|
|
467
467
|
|
|
468
468
|
});
|
|
@@ -482,7 +482,7 @@ sap.ui.define([
|
|
|
482
482
|
|
|
483
483
|
QUnit.test("Manifest Validation", function(assert) {
|
|
484
484
|
|
|
485
|
-
assert.equal(this.oMetadata.getName(), "
|
|
485
|
+
assert.equal(this.oMetadata.getName(), "testdata.v2missing.Component", "Name is correct!");
|
|
486
486
|
assert.equal(this.oMetadata.getMetadataVersion(), 2, "MetadataVersion is correct!");
|
|
487
487
|
|
|
488
488
|
});
|
|
@@ -555,7 +555,7 @@ sap.ui.define([
|
|
|
555
555
|
var aCalls = Log.warning.getCalls();
|
|
556
556
|
var bFound = false;
|
|
557
557
|
for (var i = 0, l = aCalls.length; i < l; i++) {
|
|
558
|
-
if (aCalls[i].args[0] == "Component \"
|
|
558
|
+
if (aCalls[i].args[0] == "Component \"testdata.v2version\" requires at least version \"1.22.5\" but running on \"1.20.0\"!") {
|
|
559
559
|
bFound = true;
|
|
560
560
|
}
|
|
561
561
|
}
|
|
@@ -567,7 +567,7 @@ sap.ui.define([
|
|
|
567
567
|
assert.ok(!bFound, "Warning has not been reported!");
|
|
568
568
|
}
|
|
569
569
|
moduleTeardown.call(that);
|
|
570
|
-
sap.ui.require("
|
|
570
|
+
sap.ui.require("testdata/v2version/Component").getMetadata()._bInitialized = false;
|
|
571
571
|
oDone();
|
|
572
572
|
}, 200);
|
|
573
573
|
});
|
|
@@ -581,13 +581,13 @@ sap.ui.define([
|
|
|
581
581
|
var aCalls = Log.warning.getCalls();
|
|
582
582
|
var bFound = false;
|
|
583
583
|
for (var i = 0, l = aCalls.length; i < l; i++) {
|
|
584
|
-
if (aCalls[i].args[0] == "Component \"
|
|
584
|
+
if (aCalls[i].args[0] == "Component \"testdata.v2version\" requires at least version \"1.22.5\" but running on \"1.22.5\"!") {
|
|
585
585
|
bFound = true;
|
|
586
586
|
}
|
|
587
587
|
}
|
|
588
588
|
assert.ok(!bFound, "Warning has not been reported!");
|
|
589
589
|
moduleTeardown.call(that);
|
|
590
|
-
sap.ui.require("
|
|
590
|
+
sap.ui.require("testdata/v2version/Component").getMetadata()._bInitialized = false;
|
|
591
591
|
oDone();
|
|
592
592
|
}, 200);
|
|
593
593
|
});
|
|
@@ -601,13 +601,13 @@ sap.ui.define([
|
|
|
601
601
|
var aCalls = Log.warning.getCalls();
|
|
602
602
|
var bFound = false;
|
|
603
603
|
for (var i = 0, l = aCalls.length; i < l; i++) {
|
|
604
|
-
if (aCalls[i].args[0] == "Component \"
|
|
604
|
+
if (aCalls[i].args[0] == "Component \"testdata.v2version\" requires at least version \"1.22.5\" but running on \"1.31.0\"!") {
|
|
605
605
|
bFound = true;
|
|
606
606
|
}
|
|
607
607
|
}
|
|
608
608
|
assert.ok(!bFound, "Warning has not been reported!");
|
|
609
609
|
moduleTeardown.call(that);
|
|
610
|
-
sap.ui.require("
|
|
610
|
+
sap.ui.require("testdata/v2version/Component").getMetadata()._bInitialized = false;
|
|
611
611
|
oDone();
|
|
612
612
|
}, 200);
|
|
613
613
|
});
|
|
@@ -632,17 +632,17 @@ sap.ui.define([
|
|
|
632
632
|
* @deprecated
|
|
633
633
|
*/
|
|
634
634
|
QUnit.test("Async loading of manifests with component.json", function(assert) {
|
|
635
|
-
return fnComponentFactory("./testdata/inherit/manifest.json", "
|
|
635
|
+
return fnComponentFactory("./testdata/inherit/manifest.json", "testdata.inherit").then(function(oComponent) {
|
|
636
636
|
assert.ok(oComponent instanceof Component, "Component has been created.");
|
|
637
637
|
|
|
638
638
|
assert.equal(
|
|
639
639
|
oComponent.getManifest().name,
|
|
640
|
-
"
|
|
640
|
+
"testdata.inherit.Component",
|
|
641
641
|
"Check name of the the main component"
|
|
642
642
|
);
|
|
643
643
|
assert.equal(
|
|
644
644
|
oComponent.getMetadata().getParent().getName(),
|
|
645
|
-
"
|
|
645
|
+
"testdata.inherit.parent.Component",
|
|
646
646
|
"Check name of the inherited parent component"
|
|
647
647
|
);
|
|
648
648
|
oComponent.destroy();
|
|
@@ -650,22 +650,22 @@ sap.ui.define([
|
|
|
650
650
|
});
|
|
651
651
|
|
|
652
652
|
QUnit.test("Async loading of manifests", function(assert) {
|
|
653
|
-
return fnComponentFactory("./testdata/inheritAsync/manifest.json", "
|
|
653
|
+
return fnComponentFactory("./testdata/inheritAsync/manifest.json", "testdata.inheritAsync").then(function(oComponent) {
|
|
654
654
|
assert.ok(oComponent instanceof Component, "Component has been created.");
|
|
655
655
|
|
|
656
656
|
assert.equal(
|
|
657
657
|
oComponent.getManifest().name,
|
|
658
|
-
"
|
|
658
|
+
"testdata.inheritAsync.Component",
|
|
659
659
|
"Check name of the the main component"
|
|
660
660
|
);
|
|
661
661
|
assert.equal(
|
|
662
662
|
oComponent.getMetadata().getParent().getName(),
|
|
663
|
-
"
|
|
663
|
+
"testdata.inheritAsync.parentB.Component",
|
|
664
664
|
"Check name of the inherited parent component B"
|
|
665
665
|
);
|
|
666
666
|
assert.equal(
|
|
667
667
|
oComponent.getMetadata().getParent().getParent().getName(),
|
|
668
|
-
"
|
|
668
|
+
"testdata.inheritAsync.parentA.Component",
|
|
669
669
|
"Check name of the inherited parent component A"
|
|
670
670
|
);
|
|
671
671
|
destroyComponent(oComponent);
|
|
@@ -673,7 +673,7 @@ sap.ui.define([
|
|
|
673
673
|
});
|
|
674
674
|
|
|
675
675
|
QUnit.test("Async loading of manifests with missing manifest of parent metadata", function(assert) {
|
|
676
|
-
return fnComponentFactory("./testdata/inheritAsyncError/manifest.json", "
|
|
676
|
+
return fnComponentFactory("./testdata/inheritAsyncError/manifest.json", "testdata.inheritAsyncError").then(function(oComponent) {
|
|
677
677
|
assert.ok(oComponent instanceof Component, "Component has been created.");
|
|
678
678
|
|
|
679
679
|
var aLogEntries = Log.getLogEntries();
|
|
@@ -686,17 +686,17 @@ sap.ui.define([
|
|
|
686
686
|
|
|
687
687
|
assert.equal(
|
|
688
688
|
oComponent.getManifest().name,
|
|
689
|
-
"
|
|
689
|
+
"testdata.inheritAsyncError.Component",
|
|
690
690
|
"Check name of the the main component"
|
|
691
691
|
);
|
|
692
692
|
assert.equal(
|
|
693
693
|
oComponent.getMetadata().getParent().getName(),
|
|
694
|
-
"
|
|
694
|
+
"testdata.inheritAsyncError.parentB.Component",
|
|
695
695
|
"Check name of the inherited parent component B"
|
|
696
696
|
);
|
|
697
697
|
assert.equal(
|
|
698
698
|
oComponent.getMetadata().getParent().getParent().getName(),
|
|
699
|
-
"
|
|
699
|
+
"testdata.inheritAsyncError.parentFAIL.Component",
|
|
700
700
|
"Check name of the inherited parent component A"
|
|
701
701
|
);
|
|
702
702
|
destroyComponent(oComponent);
|
|
@@ -754,10 +754,10 @@ sap.ui.define([
|
|
|
754
754
|
|
|
755
755
|
QUnit.test("Async loading of manifests", function(assert) {
|
|
756
756
|
var oManifest = {
|
|
757
|
-
"name": "
|
|
757
|
+
"name": "testdata.inheritAsync.Component",
|
|
758
758
|
|
|
759
759
|
"sap.app": {
|
|
760
|
-
"id": "
|
|
760
|
+
"id": "testdata.inheritAsync",
|
|
761
761
|
"applicationVersion": {
|
|
762
762
|
"version": "1.0.0"
|
|
763
763
|
}
|
|
@@ -771,7 +771,7 @@ sap.ui.define([
|
|
|
771
771
|
},
|
|
772
772
|
|
|
773
773
|
"extends": {
|
|
774
|
-
"component": "
|
|
774
|
+
"component": "testdata.inheritAsync.parentB"
|
|
775
775
|
}
|
|
776
776
|
}
|
|
777
777
|
};
|
|
@@ -783,7 +783,7 @@ sap.ui.define([
|
|
|
783
783
|
|
|
784
784
|
assert.equal(
|
|
785
785
|
oComponent.getManifest().name,
|
|
786
|
-
"
|
|
786
|
+
"testdata.inheritAsync.Component",
|
|
787
787
|
"Check name of the the main component"
|
|
788
788
|
);
|
|
789
789
|
assert.equal(
|
|
@@ -792,7 +792,7 @@ sap.ui.define([
|
|
|
792
792
|
"Instance specific manifest entry should be available through component instance"
|
|
793
793
|
);
|
|
794
794
|
// the component's original manifest should also be loaded even if a manifest object is given
|
|
795
|
-
var InheritAsyncComponent = sap.ui.require("
|
|
795
|
+
var InheritAsyncComponent = sap.ui.require("testdata/inheritAsync/Component");
|
|
796
796
|
var oInheritAsyncComponent = new InheritAsyncComponent();
|
|
797
797
|
assert.equal(
|
|
798
798
|
oInheritAsyncComponent.getManifestEntry("/sap.ui5/config/any/entry1"),
|
|
@@ -801,12 +801,12 @@ sap.ui.define([
|
|
|
801
801
|
);
|
|
802
802
|
assert.equal(
|
|
803
803
|
oComponent.getMetadata().getParent().getName(),
|
|
804
|
-
"
|
|
804
|
+
"testdata.inheritAsync.parentB.Component",
|
|
805
805
|
"Check name of the inherited parent component B"
|
|
806
806
|
);
|
|
807
807
|
assert.equal(
|
|
808
808
|
oComponent.getMetadata().getParent().getParent().getName(),
|
|
809
|
-
"
|
|
809
|
+
"testdata.inheritAsync.parentA.Component",
|
|
810
810
|
"Check name of the inherited parent component A"
|
|
811
811
|
);
|
|
812
812
|
destroyComponent(oComponent);
|