@schukai/monster 3.65.0 → 3.65.20
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +82 -327
- package/README.md +44 -40
- package/package.json +1 -48
- package/source/components/constants.mjs +10 -3
- package/source/components/datatable/change-button.mjs +12 -5
- package/source/components/datatable/columnbar.mjs +10 -1
- package/source/components/datatable/constants.mjs +11 -4
- package/source/components/datatable/dataset.mjs +10 -1
- package/source/components/datatable/datasource/dom.mjs +14 -1
- package/source/components/datatable/datasource/rest.mjs +10 -1
- package/source/components/datatable/datasource.mjs +10 -1
- package/source/components/datatable/datatable/header.mjs +220 -218
- package/source/components/datatable/datatable.mjs +757 -752
- package/source/components/datatable/embedded-pagination.mjs +10 -1
- package/source/components/datatable/filter/abstract-base.mjs +10 -1
- package/source/components/datatable/filter/date-range.mjs +10 -1
- package/source/components/datatable/filter/input.mjs +10 -1
- package/source/components/datatable/filter/range.mjs +10 -1
- package/source/components/datatable/filter/select.mjs +11 -4
- package/source/components/datatable/filter/settings.mjs +14 -0
- package/source/components/datatable/filter/util.mjs +14 -0
- package/source/components/datatable/filter-button.mjs +10 -1
- package/source/components/datatable/filter.mjs +11 -3
- package/source/components/datatable/pagination.mjs +14 -5
- package/source/components/datatable/save-button.mjs +279 -270
- package/source/components/datatable/status.mjs +10 -1
- package/source/components/datatable/stylesheet/change-button.mjs +16 -7
- package/source/components/datatable/stylesheet/column-bar.mjs +16 -7
- package/source/components/datatable/stylesheet/dataset.mjs +16 -7
- package/source/components/datatable/stylesheet/datasource.mjs +16 -7
- package/source/components/datatable/stylesheet/datatable.mjs +16 -7
- package/source/components/datatable/stylesheet/embedded-pagination.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-button.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-controls-defaults.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-date-range.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-range.mjs +16 -7
- package/source/components/datatable/stylesheet/filter.mjs +16 -7
- package/source/components/datatable/stylesheet/pagination.mjs +16 -7
- package/source/components/datatable/stylesheet/save-button.mjs +16 -7
- package/source/components/datatable/stylesheet/select-filter.mjs +16 -7
- package/source/components/datatable/stylesheet/status.mjs +16 -7
- package/source/components/datatable/util.mjs +16 -8
- package/source/components/form/action-button.mjs +11 -3
- package/source/components/form/api-button.mjs +11 -3
- package/source/components/form/button-bar.mjs +11 -3
- package/source/components/form/button.mjs +254 -249
- package/source/components/form/confirm-button.mjs +11 -3
- package/source/components/form/constants.mjs +10 -3
- package/source/components/form/context-error.mjs +69 -52
- package/source/components/form/context-help.mjs +11 -3
- package/source/components/form/field-set.mjs +10 -15
- package/source/components/form/form.mjs +12 -4
- package/source/components/form/message-state-button.mjs +11 -3
- package/source/components/form/popper-button.mjs +11 -3
- package/source/components/form/popper.mjs +6 -6
- package/source/components/form/reload.mjs +12 -4
- package/source/components/form/select.mjs +44 -33
- package/source/components/form/shadow-reload.mjs +11 -3
- package/source/components/form/state-button.mjs +11 -3
- package/source/components/form/stylesheet/action-button.mjs +16 -7
- package/source/components/form/stylesheet/api-button.mjs +16 -7
- package/source/components/form/stylesheet/button-bar.mjs +16 -7
- package/source/components/form/stylesheet/button.mjs +16 -7
- package/source/components/form/stylesheet/confirm-button.mjs +16 -7
- package/source/components/form/stylesheet/context-error.mjs +16 -7
- package/source/components/form/stylesheet/context-help.mjs +16 -7
- package/source/components/form/stylesheet/field-set.mjs +16 -7
- package/source/components/form/stylesheet/form.mjs +16 -7
- package/source/components/form/stylesheet/message-state-button.mjs +16 -7
- package/source/components/form/stylesheet/popper-button.mjs +16 -7
- package/source/components/form/stylesheet/select.mjs +16 -7
- package/source/components/form/stylesheet/state-button.mjs +16 -7
- package/source/components/form/stylesheet/toggle-switch.mjs +16 -7
- package/source/components/form/stylesheet/tree-select.mjs +16 -7
- package/source/components/form/tabs.mjs +12 -8
- package/source/components/form/template.mjs +11 -3
- package/source/components/form/toggle-switch.mjs +12 -8
- package/source/components/form/tree-select.mjs +10 -3
- package/source/components/form/types/state.mjs +10 -3
- package/source/components/form/util/fetch.mjs +10 -3
- package/source/components/form/util/floating-ui.mjs +10 -3
- package/source/components/form/util/popper.mjs +10 -3
- package/source/components/host/call-button.mjs +10 -1
- package/source/components/host/collapse.mjs +4 -6
- package/source/components/host/config-manager.mjs +2 -0
- package/source/components/host/constants.mjs +2 -0
- package/source/components/host/details.mjs +5 -8
- package/source/components/host/host.mjs +10 -1
- package/source/components/host/overlay.mjs +10 -1
- package/source/components/host/stylesheet/call-button.mjs +16 -7
- package/source/components/host/stylesheet/config-manager.mjs +16 -7
- package/source/components/host/stylesheet/host.mjs +16 -7
- package/source/components/host/stylesheet/overlay.mjs +16 -7
- package/source/components/host/stylesheet/toggle-button.mjs +16 -7
- package/source/components/host/stylesheet/viewer.mjs +16 -7
- package/source/components/host/toggle-button.mjs +10 -1
- package/source/components/host/util.mjs +14 -0
- package/source/components/host/viewer.mjs +10 -1
- package/source/components/layout/collapse.mjs +4 -3
- package/source/components/layout/details.mjs +2 -0
- package/source/components/layout/panel.mjs +179 -169
- package/source/components/layout/popper.mjs +324 -320
- package/source/components/layout/split-panel.mjs +329 -303
- package/source/components/layout/stylesheet/collapse.mjs +16 -7
- package/source/components/layout/stylesheet/details.mjs +16 -7
- package/source/components/layout/stylesheet/panel.mjs +16 -7
- package/source/components/layout/stylesheet/popper.mjs +16 -7
- package/source/components/layout/stylesheet/split-panel.mjs +16 -7
- package/source/components/layout/stylesheet/tabs.mjs +16 -7
- package/source/components/layout/stylesheet/width-toggle.mjs +16 -7
- package/source/components/layout/tabs.mjs +39 -24
- package/source/components/layout/width-toggle.mjs +148 -138
- package/source/components/navigation/style/table-of-content.pcss +20 -5
- package/source/components/navigation/stylesheet/table-of-content.mjs +17 -8
- package/source/components/navigation/table-of-content.mjs +394 -266
- package/source/components/notify/constants.mjs +10 -3
- package/source/components/notify/message.mjs +16 -9
- package/source/components/notify/notify.mjs +11 -4
- package/source/components/notify/stylesheet/message.mjs +16 -7
- package/source/components/notify/stylesheet/notify.mjs +16 -7
- package/source/components/state/log/entry.mjs +10 -1
- package/source/components/state/log.mjs +10 -1
- package/source/components/state/state.mjs +10 -1
- package/source/components/state/stylesheet/log.mjs +16 -7
- package/source/components/state/stylesheet/state.mjs +16 -7
- package/source/components/style/mixin/form.pcss +0 -1
- package/source/components/stylesheet/badge.mjs +16 -7
- package/source/components/stylesheet/border.mjs +16 -7
- package/source/components/stylesheet/button.mjs +16 -7
- package/source/components/stylesheet/card.mjs +16 -7
- package/source/components/stylesheet/color.mjs +16 -7
- package/source/components/stylesheet/common.mjs +16 -7
- package/source/components/stylesheet/control.mjs +16 -7
- package/source/components/stylesheet/data-grid.mjs +16 -7
- package/source/components/stylesheet/display.mjs +16 -7
- package/source/components/stylesheet/floating-ui.mjs +16 -7
- package/source/components/stylesheet/form.mjs +16 -7
- package/source/components/stylesheet/host.mjs +16 -7
- package/source/components/stylesheet/icons.mjs +16 -7
- package/source/components/stylesheet/link.mjs +16 -7
- package/source/components/stylesheet/mixin/badge.mjs +16 -7
- package/source/components/stylesheet/mixin/button.mjs +16 -7
- package/source/components/stylesheet/mixin/form.mjs +16 -7
- package/source/components/stylesheet/mixin/hover.mjs +16 -7
- package/source/components/stylesheet/mixin/icon.mjs +16 -7
- package/source/components/stylesheet/mixin/media.mjs +16 -7
- package/source/components/stylesheet/mixin/property.mjs +16 -7
- package/source/components/stylesheet/mixin/skeleton.mjs +16 -7
- package/source/components/stylesheet/mixin/spinner.mjs +16 -7
- package/source/components/stylesheet/mixin/typography.mjs +16 -7
- package/source/components/stylesheet/normalize.mjs +16 -7
- package/source/components/stylesheet/popper.mjs +16 -7
- package/source/components/stylesheet/property.mjs +16 -7
- package/source/components/stylesheet/ripple.mjs +16 -7
- package/source/components/stylesheet/skeleton.mjs +16 -7
- package/source/components/stylesheet/space.mjs +16 -7
- package/source/components/stylesheet/spinner.mjs +16 -7
- package/source/components/stylesheet/table.mjs +16 -7
- package/source/components/stylesheet/theme.mjs +16 -7
- package/source/components/stylesheet/tree-menu.mjs +10 -3
- package/source/components/stylesheet/typography.mjs +16 -7
- package/source/components/tree-menu/stylesheet/tree-menu.mjs +16 -7
- package/source/components/tree-menu/tree-menu.mjs +19 -8
- package/source/constants.mjs +10 -6
- package/source/constraints/abstract.mjs +10 -3
- package/source/constraints/abstractoperator.mjs +10 -3
- package/source/constraints/andoperator.mjs +10 -3
- package/source/constraints/invalid.mjs +10 -3
- package/source/constraints/isarray.mjs +10 -3
- package/source/constraints/isobject.mjs +10 -3
- package/source/constraints/oroperator.mjs +10 -3
- package/source/constraints/valid.mjs +10 -3
- package/source/data/buildmap.mjs +10 -3
- package/source/data/buildtree.mjs +10 -3
- package/source/data/datasource/dom.mjs +10 -3
- package/source/data/datasource/server/restapi/data-fetch-error.mjs +10 -3
- package/source/data/datasource/server/restapi/writeerror.mjs +10 -3
- package/source/data/datasource/server/restapi.mjs +10 -3
- package/source/data/datasource/server/webconnect.mjs +10 -3
- package/source/data/datasource/server.mjs +10 -3
- package/source/data/datasource/storage/localstorage.mjs +10 -3
- package/source/data/datasource/storage/sessionstorage.mjs +10 -3
- package/source/data/datasource/storage.mjs +10 -3
- package/source/data/datasource.mjs +10 -3
- package/source/data/diff.mjs +10 -3
- package/source/data/extend.mjs +10 -3
- package/source/data/pathfinder.mjs +10 -3
- package/source/data/pipe.mjs +10 -3
- package/source/data/transformer.mjs +34 -10
- package/source/dom/assembler.mjs +10 -3
- package/source/dom/attributes.mjs +10 -3
- package/source/dom/constants.mjs +10 -3
- package/source/dom/customcontrol.mjs +11 -4
- package/source/dom/customelement.mjs +31 -17
- package/source/dom/dimension.mjs +10 -3
- package/source/dom/events.mjs +10 -3
- package/source/dom/focusmanager.mjs +10 -3
- package/source/dom/locale.mjs +10 -3
- package/source/dom/ready.mjs +2 -1
- package/source/dom/resource/data.mjs +10 -3
- package/source/dom/resource/link/stylesheet.mjs +10 -3
- package/source/dom/resource/link.mjs +10 -3
- package/source/dom/resource/script.mjs +10 -3
- package/source/dom/resource.mjs +10 -3
- package/source/dom/resourcemanager.mjs +10 -3
- package/source/dom/slotted.mjs +14 -0
- package/source/dom/template.mjs +124 -136
- package/source/dom/theme.mjs +10 -3
- package/source/dom/updater.mjs +10 -3
- package/source/dom/util/extract-keys.mjs +10 -3
- package/source/dom/util/init-options-from-attributes.mjs +68 -61
- package/source/dom/util/set-option-from-attribute.mjs +10 -3
- package/source/dom/util.mjs +11 -4
- package/source/dom/worker/factory.mjs +10 -3
- package/source/i18n/formatter.mjs +10 -3
- package/source/i18n/locale.mjs +10 -3
- package/source/i18n/provider.mjs +10 -3
- package/source/i18n/providers/embed.mjs +10 -3
- package/source/i18n/providers/fetch.mjs +10 -3
- package/source/i18n/translations.mjs +10 -3
- package/source/logging/handler/console.mjs +10 -3
- package/source/logging/handler.mjs +10 -3
- package/source/logging/logentry.mjs +10 -3
- package/source/logging/logger.mjs +10 -3
- package/source/math/random.mjs +10 -3
- package/source/monster.mjs +3 -9
- package/source/net/webconnect/message.mjs +10 -3
- package/source/net/webconnect.mjs +20 -5
- package/source/text/bracketed-key-value-hash.mjs +10 -3
- package/source/text/formatter.mjs +10 -3
- package/source/text/generate-range-comparison-expression.mjs +10 -3
- package/source/text/util.mjs +14 -0
- package/source/types/base.mjs +10 -3
- package/source/types/basewithoptions.mjs +10 -3
- package/source/types/binary.mjs +10 -3
- package/source/types/dataurl.mjs +10 -3
- package/source/types/global.mjs +14 -7
- package/source/types/id.mjs +10 -3
- package/source/types/internal.mjs +11 -3
- package/source/types/is.mjs +10 -3
- package/source/types/mediatype.mjs +10 -3
- package/source/types/node.mjs +10 -3
- package/source/types/nodelist.mjs +10 -3
- package/source/types/noderecursiveiterator.mjs +10 -3
- package/source/types/observablequeue.mjs +10 -3
- package/source/types/observer.mjs +10 -3
- package/source/types/observerlist.mjs +10 -3
- package/source/types/proxyobserver.mjs +10 -3
- package/source/types/queue.mjs +10 -3
- package/source/types/randomid.mjs +10 -3
- package/source/types/regex.mjs +10 -3
- package/source/types/stack.mjs +10 -3
- package/source/types/tokenlist.mjs +10 -3
- package/source/types/typeof.mjs +10 -3
- package/source/types/uniquequeue.mjs +10 -3
- package/source/types/uuid.mjs +10 -3
- package/source/types/validate.mjs +10 -3
- package/source/types/version.mjs +10 -3
- package/source/util/clone.mjs +10 -3
- package/source/util/comparator.mjs +10 -3
- package/source/util/deadmansswitch.mjs +10 -3
- package/source/util/freeze.mjs +10 -3
- package/source/util/processing.mjs +10 -3
- package/source/util/runtime.mjs +10 -7
- package/source/util/sleep.mjs +10 -10
- package/source/util/trimspaces.mjs +10 -3
- package/test/cases/data/datasource/server/websocket.mjs +7 -9
- package/test/cases/data/transformer.mjs +47 -15
- package/test/cases/dom/customcontrol.mjs +0 -1
- package/test/cases/dom/customelement.mjs +1 -3
- package/test/cases/dom/template.mjs +3 -1
- package/test/util/jsdom.mjs +8 -7
- package/test/util/websocket.mjs +5 -1
- package/test/web/import.js +2 -1
- package/test/web/puppeteer.mjs +111 -0
- package/test/web/test.html +2 -2
- package/test/web/tests.js +2036 -1189
- package/example/components/form/button.mjs +0 -10
- package/example/components/form/field-set.mjs +0 -4
- package/example/components/form/select.mjs +0 -25
- package/example/components/form/toggle-switch.mjs +0 -7
- package/example/components/form/tree-select.mjs +0 -27
- package/example/components/host/host.mjs +0 -0
- package/example/components/notify/message.mjs +0 -4
- package/example/components/notify/notify.mjs +0 -4
- package/example/components/state/log.mjs +0 -0
- package/example/components/state/state.mjs +0 -0
- package/example/constraints/andoperator.mjs +0 -17
- package/example/constraints/invalid.mjs +0 -6
- package/example/constraints/isarray.mjs +0 -11
- package/example/constraints/isobject.mjs +0 -12
- package/example/constraints/oroperator.mjs +0 -15
- package/example/constraints/valid.mjs +0 -6
- package/example/data/buildmap.mjs +0 -67
- package/example/data/datasource/server/restapi.mjs +0 -20
- package/example/data/datasource/server/webconnect.mjs +0 -9
- package/example/data/datasource.mjs +0 -7
- package/example/data/diff.mjs +0 -39
- package/example/data/pathfinder-1.mjs +0 -23
- package/example/data/pathfinder-2.mjs +0 -19
- package/example/data/pipe.mjs +0 -14
- package/example/data/transformer.mjs +0 -9
- package/example/dom/customelement.mjs +0 -14
- package/example/dom/theme.mjs +0 -5
- package/example/dom/updater.mjs +0 -23
- package/example/i18n/formatter.mjs +0 -10
- package/example/i18n/providers/embed.mjs +0 -5
- package/example/i18n/providers/fetch.mjs +0 -5
- package/example/i18n/translations.mjs +0 -20
- package/example/net/webconnect.mjs +0 -16
- package/example/types/basewithoptions.mjs +0 -10
- package/example/types/is-1.mjs +0 -5
- package/example/types/is-10.mjs +0 -6
- package/example/types/is-2.mjs +0 -4
- package/example/types/is-3.mjs +0 -4
- package/example/types/is-4.mjs +0 -5
- package/example/types/is-5.mjs +0 -4
- package/example/types/is-6.mjs +0 -4
- package/example/types/is-7.mjs +0 -4
- package/example/types/is-8.mjs +0 -4
- package/example/types/is-9.mjs +0 -6
- package/example/types/noderecursiveiterator.mjs +0 -32
- package/example/types/observer.mjs +0 -9
- package/example/types/proxyobserver.mjs +0 -25
- package/example/types/queue.mjs +0 -20
- package/example/types/tokenlist-1.mjs +0 -4
- package/example/types/tokenlist-2.mjs +0 -7
- package/example/types/tokenlist-3.mjs +0 -5
- package/example/types/tokenlist-4.mjs +0 -5
- package/example/types/tokenlist-5.mjs +0 -5
- package/example/types/typeof.mjs +0 -9
- package/example/types/version-1.mjs +0 -6
- package/example/types/version-2.mjs +0 -3
- package/example/util/comparator.mjs +0 -10
- package/example/util/deadmansswitch.mjs +0 -9
- package/example/util/processing.mjs +0 -17
- package/source/components/datatable/datasource/namespace.mjs +0 -13
- package/source/components/datatable/datatable/namespace.mjs +0 -13
- package/source/components/datatable/events.mjs +0 -24
- package/source/components/datatable/filter/namespace.mjs +0 -13
- package/source/components/datatable/namespace.mjs +0 -11
- package/source/components/datatable/stylesheet/namespace.mjs +0 -13
- package/source/components/events.mjs +0 -17
- package/source/components/form/events.mjs +0 -108
- package/source/components/form/namespace.mjs +0 -13
- package/source/components/form/stylesheet/namespace.mjs +0 -13
- package/source/components/form/types/namespace.mjs +0 -13
- package/source/components/form/util/namespace.mjs +0 -13
- package/source/components/host/events.mjs +0 -131
- package/source/components/host/namespace.mjs +0 -13
- package/source/components/host/stylesheet/namespace.mjs +0 -13
- package/source/components/layout/events.mjs +0 -30
- package/source/components/layout/namespace.mjs +0 -13
- package/source/components/namespace.mjs +0 -14
- package/source/components/notify/events.mjs +0 -15
- package/source/components/notify/namespace.mjs +0 -15
- package/source/components/notify/stylesheet/namespace.mjs +0 -15
- package/source/components/state/log/namespace.mjs +0 -13
- package/source/components/state/namespace.mjs +0 -13
- package/source/components/stylesheet/namespace.mjs +0 -13
- package/source/components/tree-menu/namespace.mjs +0 -13
- package/source/components/tree-menu/stylesheet/namespace.mjs +0 -13
- package/source/constraints/namespace.mjs +0 -13
- package/source/data/datasource/namespace.mjs +0 -13
- package/source/data/datasource/server/namespace.mjs +0 -13
- package/source/data/datasource/server/restapi/namespace.mjs +0 -13
- package/source/data/datasource/storage/namespace.mjs +0 -13
- package/source/data/namespace.mjs +0 -13
- package/source/dom/namespace.mjs +0 -13
- package/source/dom/resource/link/namespace.mjs +0 -13
- package/source/dom/resource/namespace.mjs +0 -13
- package/source/dom/util/namespace.mjs +0 -13
- package/source/dom/worker/namespace.mjs +0 -13
- package/source/i18n/namespace.mjs +0 -13
- package/source/i18n/providers/namespace.mjs +0 -13
- package/source/logging/handler/namespace.mjs +0 -11
- package/source/logging/namespace.mjs +0 -13
- package/source/math/namespace.mjs +0 -13
- package/source/net/namespace.mjs +0 -13
- package/source/net/webconnect/namespace.mjs +0 -13
- package/source/text/namespace.mjs +0 -13
- package/source/types/namespace.mjs +0 -13
- package/source/util/namespace.mjs +0 -13
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
import {expect} from "chai"
|
4
4
|
import {Transformer} from "../../../source/data/transformer.mjs";
|
5
|
+
import {getLocaleOfDocument} from "../../../source/dom/locale.mjs";
|
5
6
|
import {Embed} from "../../../source/i18n/providers/embed.mjs";
|
6
7
|
import {initJSDOM} from "../../util/jsdom.mjs";
|
7
8
|
|
@@ -24,13 +25,49 @@ describe('Transformer', function () {
|
|
24
25
|
|
25
26
|
});
|
26
27
|
|
28
|
+
describe('Transformer.run() localize commands', function () {
|
29
|
+
|
30
|
+
|
31
|
+
const isNode = typeof global === 'object' && '[object global]' === global.toString.call(global);
|
32
|
+
|
33
|
+
|
34
|
+
[
|
35
|
+
['datetimeformat', "2023-02-04 08:02:01", "Feb 4, 2023, 08:02:01", "4 Feb 2023, 08:02:01"],
|
36
|
+
['datetimeformat:long:short', "2023-02-04 08:02:01", "February 4, 2023 at 08:02", "4 February 2023 at 08:02"],
|
37
|
+
['datetimeformat:short:short', "2023-02-04 08:02:01", "2/4/23, 08:02", "04/02/2023, 08:02"],
|
38
|
+
['currency', "EUR0", "€0.00", "€0.00"],
|
39
|
+
// ['currency:1:2', "EUR14.25", "€14.3", "€14.2"],
|
40
|
+
['currency', "EUR14.25", "€14.25", "€14.25"],
|
41
|
+
['datetime', "2023-02-14 14:12:10", "2/14/2023, 14:12:10","14/02/2023, 14:12:10"],
|
42
|
+
['datetime', "2023-02-14 08:02:01", "2/14/2023, 08:02:01","14/02/2023, 08:02:01"],
|
43
|
+
['date', "2023-02-14", "02/14/2023","14/02/2023"],
|
44
|
+
|
45
|
+
|
46
|
+
].forEach(function (data) {
|
47
|
+
|
48
|
+
// https://gitlab.schukai.com/oss/libraries/javascript/monster/-/issues/124
|
49
|
+
|
50
|
+
|
51
|
+
let a = data.shift() // command
|
52
|
+
let b = data.shift() // value
|
53
|
+
let c = data.shift() // expected result node
|
54
|
+
let d = data.shift() // expected result browser
|
55
|
+
|
56
|
+
const expected = isNode ? c : d
|
57
|
+
|
58
|
+
it('Transformer.run(' + JSON.stringify(a) + ').run(' + JSON.stringify(b) + ') should return ' + JSON.stringify(expected), function () {
|
59
|
+
let t = new Transformer(a);
|
60
|
+
const r = t.run(b);
|
61
|
+
expect(expected).to.be.eql(r, "Transformer.run(" + JSON.stringify(a) + ").run(" + JSON.stringify(b) + ") should return " + JSON.stringify(c));
|
62
|
+
});
|
63
|
+
});
|
64
|
+
|
65
|
+
});
|
66
|
+
|
27
67
|
|
28
68
|
describe('Transformer.run()', function () {
|
29
69
|
|
30
70
|
[
|
31
|
-
['datetimeformat', "2023-02-04 08:02:01", "04.02.2023, 08:02:01"],
|
32
|
-
['datetimeformat:long:short', "2023-02-04 08:02:01","4. Februar 2023 um 08:02"],
|
33
|
-
['datetimeformat:short:short', "2023-02-04 08:02:01", "04.02.23, 08:02"],
|
34
71
|
['equals:a', "a", true],
|
35
72
|
['equals:a', "b", false],
|
36
73
|
['equals:3', 3, true],
|
@@ -50,23 +87,18 @@ describe('Transformer', function () {
|
|
50
87
|
['equals:null', null, true],
|
51
88
|
['equals:null', 3, false],
|
52
89
|
['equals:3', 6, false],
|
53
|
-
['currency', "EUR0", "0,00 €"],
|
54
|
-
// ['currency:1:2', "EUR14.25", "14,2 €"], nodejs and browser have different results (https://gitlab.schukai.com/oss/libraries/javascript/monster/-/issues/124)
|
55
|
-
['currency', "EUR14.25", "14,25 €"],
|
56
|
-
['datetime', "2023-02-14 14:12:10", "14.2.2023, 14:12:10"],
|
57
|
-
['datetime', "2023-02-14 08:02:01", "14.2.2023, 08:02:01"],
|
58
90
|
['has-entries', {}, false],
|
59
|
-
['has-entries', {a:4}, true],
|
91
|
+
['has-entries', {a: 4}, true],
|
60
92
|
['has-entries', [], false],
|
61
93
|
['has-entries', "", false],
|
62
|
-
['has-entries', [1,2,3], true],
|
94
|
+
['has-entries', [1, 2, 3], true],
|
63
95
|
['has-entries', [1], true],
|
64
96
|
['has-entries', ["1"], true],
|
65
97
|
['has-entries', [true], true],
|
66
98
|
['contains:x', "asd wxd sdf", true],
|
67
99
|
['contains:x', "asd wd sdf", false],
|
68
|
-
['contains:b', ["a","b","c"], true],
|
69
|
-
['contains:x', ["a","b","c"], false],
|
100
|
+
['contains:b', ["a", "b", "c"], true],
|
101
|
+
['contains:x', ["a", "b", "c"], false],
|
70
102
|
['isundefined', "a", false],
|
71
103
|
['isundefined', null, false],
|
72
104
|
['isundefined', undefined, true],
|
@@ -89,7 +121,6 @@ describe('Transformer', function () {
|
|
89
121
|
['not', true, false],
|
90
122
|
['not', false, true],
|
91
123
|
['map:a=4:b=5:c=6', "a", "4"],
|
92
|
-
['date', "2023-02-14", "14.2.2023"],
|
93
124
|
['year', "2023-02-14", 2023],
|
94
125
|
['month', "2023-02-14", 2],
|
95
126
|
['day', "2023-02-14", 14],
|
@@ -194,6 +225,7 @@ describe('Transformer', function () {
|
|
194
225
|
|
195
226
|
].forEach(function (data) {
|
196
227
|
|
228
|
+
|
197
229
|
let a = data.shift()
|
198
230
|
let b = data.shift()
|
199
231
|
let c = data.shift()
|
@@ -206,7 +238,7 @@ describe('Transformer', function () {
|
|
206
238
|
});
|
207
239
|
|
208
240
|
const r = t.run(b);
|
209
|
-
expect(
|
241
|
+
expect(c).to.be.eql(r, "Transformer.run(" + JSON.stringify(a) + ").run(" + JSON.stringify(b) + ") should return " + JSON.stringify(c));
|
210
242
|
});
|
211
243
|
});
|
212
244
|
|
@@ -348,4 +380,4 @@ describe('Transformer', function () {
|
|
348
380
|
})
|
349
381
|
|
350
382
|
|
351
|
-
});
|
383
|
+
});
|
@@ -43,8 +43,6 @@ describe('DOM', function () {
|
|
43
43
|
assignUpdaterToElement = function (elements, object) {
|
44
44
|
return addObjectWithUpdaterToElement.call(this, elements, updaterSymbolSymbol, object);
|
45
45
|
}
|
46
|
-
|
47
|
-
|
48
46
|
document = getDocument();
|
49
47
|
|
50
48
|
done()
|
@@ -139,7 +137,7 @@ describe('DOM', function () {
|
|
139
137
|
expect(JSON.stringify(ap.getRealSubject())).to.equal('{"a":3}');
|
140
138
|
expect(JSON.stringify(bp.getRealSubject())).to.equal('{"b":4}');
|
141
139
|
done()
|
142
|
-
},
|
140
|
+
}, 50)
|
143
141
|
|
144
142
|
})
|
145
143
|
|
@@ -75,6 +75,8 @@ describe('Template', function () {
|
|
75
75
|
it('should find template over ownerDocument', function () {
|
76
76
|
const div = document.createElement('div');
|
77
77
|
div.remove();
|
78
|
+
const a = document.documentElement.outerHTML;
|
79
|
+
|
78
80
|
let t = findDocumentTemplate("mytemplate", div);
|
79
81
|
expect(t).is.instanceof(Template);
|
80
82
|
|
@@ -143,4 +145,4 @@ describe('Template', function () {
|
|
143
145
|
|
144
146
|
|
145
147
|
});
|
146
|
-
});
|
148
|
+
});
|
package/test/util/jsdom.mjs
CHANGED
@@ -29,12 +29,7 @@ function initJSDOM(options) {
|
|
29
29
|
|
30
30
|
return import("jsdom").then(({JSDOM}) => {
|
31
31
|
JSDOMExport = JSDOM;
|
32
|
-
const {window} = new JSDOM(
|
33
|
-
<head>
|
34
|
-
</head>
|
35
|
-
<body>
|
36
|
-
<div id="mocks"></div>
|
37
|
-
</body>`, options);
|
32
|
+
const {window} = new JSDOM(`<!DOCTYPE html><html lang="en"><head><title>Test</title></head><body><div id="mocks"></div></body></html>`, options);
|
38
33
|
|
39
34
|
g['window'] = window;
|
40
35
|
|
@@ -77,7 +72,13 @@ function initJSDOM(options) {
|
|
77
72
|
'ShadowRoot',
|
78
73
|
'XMLSerializer',
|
79
74
|
].forEach(key => {
|
80
|
-
|
75
|
+
try {
|
76
|
+
g[key] = window[key]
|
77
|
+
} catch(e) {
|
78
|
+
console.error("Error setting key", key, e);
|
79
|
+
}
|
80
|
+
|
81
|
+
|
81
82
|
});
|
82
83
|
|
83
84
|
import("dom-storage").then(({default: Storage}) => {
|
package/test/util/websocket.mjs
CHANGED
@@ -2,7 +2,11 @@ import {getGlobal} from "../../source/types/global.mjs";
|
|
2
2
|
|
3
3
|
function initWebSocket() {
|
4
4
|
|
5
|
-
|
5
|
+
// const isBrowser = typeof window === 'object' && '[object Window]' === window.toString.call(window)
|
6
|
+
const isNode = typeof global === 'object' && '[object global]' === global.toString.call(global)
|
7
|
+
|
8
|
+
|
9
|
+
if (!isNode) {
|
6
10
|
return Promise.resolve();
|
7
11
|
}
|
8
12
|
|
package/test/web/import.js
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
/** this file was created automatically by the run-web-tests script */
|
2
2
|
import "./prepare.js";
|
3
3
|
import "../cases/components/layout/tabs.mjs";
|
4
|
-
import "../cases/components/layout/slit-
|
4
|
+
import "../cases/components/layout/slit-panel.mjs";
|
5
|
+
import "../cases/components/layout/panel.mjs";
|
5
6
|
import "../cases/components/form/reload.mjs";
|
6
7
|
import "../cases/components/form/state-button.mjs";
|
7
8
|
import "../cases/components/form/select.mjs";
|
@@ -0,0 +1,111 @@
|
|
1
|
+
import puppeteer from 'puppeteer';
|
2
|
+
import {unlinkSync} from 'fs';
|
3
|
+
import {existsSync} from 'fs';
|
4
|
+
|
5
|
+
|
6
|
+
// args auswerten mit --path und --browser, get from args
|
7
|
+
const args = process.argv;
|
8
|
+
|
9
|
+
const config = {};
|
10
|
+
|
11
|
+
|
12
|
+
for (let i = 0; i < args.length; i++) {
|
13
|
+
if (args[i] === '--path') {
|
14
|
+
config.path = args[i + 1];
|
15
|
+
}
|
16
|
+
if (args[i] === '--browser') {
|
17
|
+
config.browser = args[i + 1];
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
if (!config.path) {
|
22
|
+
console.error('Path is required, please provide --path');
|
23
|
+
process.exit(1);
|
24
|
+
}
|
25
|
+
|
26
|
+
if (!config.browser) {
|
27
|
+
console.error('Browser is required, please provide --browser');
|
28
|
+
process.exit(1);
|
29
|
+
}
|
30
|
+
|
31
|
+
|
32
|
+
(async () => {
|
33
|
+
const browser = await puppeteer.launch({
|
34
|
+
headless: 'new', // if you want to see the browser, set this to false
|
35
|
+
executablePath: config.browser,
|
36
|
+
//args: ['--no-sandbox',"--window-size=1440,1000", "--no-sandbox", "--disable-setuid-sandbox", "--disable-gpu"],
|
37
|
+
args: ["--disable-gpu",
|
38
|
+
'--no-sandbox',
|
39
|
+
'--disable-setuid-sandbox',
|
40
|
+
'--user-data-dir=/tmp',
|
41
|
+
'--enable-logging=stderr',
|
42
|
+
'--disable-web-security',
|
43
|
+
'--disable-features=IsolateOrigins',
|
44
|
+
'--disable-site-isolation-trials'
|
45
|
+
],
|
46
|
+
|
47
|
+
userAgent: 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',
|
48
|
+
waitUntil: 'load',
|
49
|
+
timeout: 0,
|
50
|
+
protocolTimeout: 0,
|
51
|
+
dumpio: true
|
52
|
+
});
|
53
|
+
|
54
|
+
const page = await browser.newPage();
|
55
|
+
const fileUrl = 'file://' + config.path;
|
56
|
+
|
57
|
+
console.log('Loading page... '+fileUrl);
|
58
|
+
|
59
|
+
await page.goto(fileUrl, {waitUntil: 'load', timeout: 0});
|
60
|
+
|
61
|
+
const title = await page.title();
|
62
|
+
console.log('Page title:', title);
|
63
|
+
|
64
|
+
// page.on('console', async e => {
|
65
|
+
// const args = await Promise.all(e.args().map(a => a.jsonValue()));
|
66
|
+
// console[e.type() === 'warning' ? 'warn' : e.type()](...args);
|
67
|
+
// });
|
68
|
+
//
|
69
|
+
//
|
70
|
+
//
|
71
|
+
console.log('Running tests...');
|
72
|
+
await page.waitForFunction('document.getElementById("mocha-done").textContent.length > 0',
|
73
|
+
{
|
74
|
+
timeout: 1000000,
|
75
|
+
polling: 1000
|
76
|
+
}
|
77
|
+
) ;
|
78
|
+
|
79
|
+
const passes = await page.evaluate(() => document.getElementById('mocha-stats').querySelector('li.passes em').textContent);
|
80
|
+
const failures = await page.evaluate(() => document.getElementById('mocha-stats').querySelector('li.failures em').textContent);
|
81
|
+
const duration = await page.evaluate(() => document.getElementById('mocha-stats').querySelector('li.duration em').textContent);
|
82
|
+
|
83
|
+
console.log('Tests passed:', passes);
|
84
|
+
console.log('Tests failed:', failures);
|
85
|
+
console.log('Duration:', duration);
|
86
|
+
|
87
|
+
if (existsSync('screenshot.png')) {
|
88
|
+
unlinkSync('screenshot.png');
|
89
|
+
}
|
90
|
+
|
91
|
+
await page.screenshot({ path: 'screenshot.png' });
|
92
|
+
|
93
|
+
const failuresAsInt = parseInt(failures);
|
94
|
+
if (failuresAsInt > 0) {
|
95
|
+
console.error('Tests failed');
|
96
|
+
|
97
|
+
await page.evaluate(() => {
|
98
|
+
document.querySelectorAll('.test.fail').forEach((node) => {
|
99
|
+
console.error(node.textContent);
|
100
|
+
});
|
101
|
+
});
|
102
|
+
|
103
|
+
await browser.close();
|
104
|
+
process.exit(1);
|
105
|
+
} else {
|
106
|
+
await browser.close();
|
107
|
+
console.log('Tests passed');
|
108
|
+
}
|
109
|
+
|
110
|
+
|
111
|
+
})();
|
package/test/web/test.html
CHANGED
@@ -15,8 +15,8 @@
|
|
15
15
|
</head>
|
16
16
|
<body>
|
17
17
|
<div id="headline" style="display: flex;align-items: center;justify-content: center;flex-direction: column;">
|
18
|
-
<h1 style='margin-bottom: 0.1em;'>Monster 3.
|
19
|
-
<div id="lastupdate" style='font-size:0.7em'>last update
|
18
|
+
<h1 style='margin-bottom: 0.1em;'>Monster 3.65.0</h1>
|
19
|
+
<div id="lastupdate" style='font-size:0.7em'>last update Di 18. Jun 22:58:11 CEST 2024</div>
|
20
20
|
</div>
|
21
21
|
<div id="mocha-errors"
|
22
22
|
style="color: red;font-weight: bold;display: flex;align-items: center;justify-content: center;flex-direction: column;margin:20px;"></div>
|