@aj-shadow/actorjs-app 0.0.0-aj-beta.221
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/.gitattributes +29 -0
- package/.vscode/launch.json +18 -0
- package/CHANGELOG.md +79 -0
- package/LICENSE.txt +96 -0
- package/README.md +86 -0
- package/contributors.txt +3 -0
- package/main.js +14 -0
- package/npm-post-install.js +618 -0
- package/npm-shrinkwrap.json +14 -0
- package/package.json +16 -0
- package/project/actorjs-project.tree +466 -0
- package/project/client/actions/action-actor-editor/action-actor-editor-file.js +101 -0
- package/project/client/actions/action-actor-editor/action-actor-editor-folder.js +41 -0
- package/project/client/actions/action-actor-editor/action-actor-editor-persistent-data.js +23 -0
- package/project/client/actions/action-actor-editor/action-actor-editor-project.js +23 -0
- package/project/client/actions/action-actor-editor/data-action-actor-editor-file.js +70 -0
- package/project/client/actions/action-actor-editor/data-action-actor-editor-folder.js +26 -0
- package/project/client/actions/action-actor-editor/data-action-actor-editor-project.js +27 -0
- package/project/client/actions/action-actor-editor/realtime-action-actors-editor.js +14 -0
- package/project/client/actions/action-addresses/action-addresses.js +180 -0
- package/project/client/actions/action-addresses/data-action-addresses.js +174 -0
- package/project/client/actions/action-console/action-console.js +11 -0
- package/project/client/actions/action-console/data-action-console.js +12 -0
- package/project/client/actions/action-content/action-content.js +101 -0
- package/project/client/actions/action-content/data-action-content.js +90 -0
- package/project/client/actions/action-function-under-test.js +45 -0
- package/project/client/actions/action-load/action-load.js +29 -0
- package/project/client/actions/action-load/data-action-load.js +4 -0
- package/project/client/actions/action-login/action-login.js +95 -0
- package/project/client/actions/action-login/data-action-login.js +83 -0
- package/project/client/actions/action-plugins/action-plugins.js +17 -0
- package/project/client/actions/action-plugins/data-action-plugins.js +20 -0
- package/project/client/actions/action-plus-services/action-plus-services.js +17 -0
- package/project/client/actions/action-plus-services/data-action-plus-services.js +20 -0
- package/project/client/actions/action-repos/action-repos.js +35 -0
- package/project/client/actions/action-repos/data-action-repos.js +42 -0
- package/project/client/actions/action-stack-editor/action-stack-editor-file.js +84 -0
- package/project/client/actions/action-stack-editor/action-stack-editor-folder.js +41 -0
- package/project/client/actions/action-stack-editor/action-stack-editor-persistent-data.js +23 -0
- package/project/client/actions/action-stack-editor/action-stack-editor-project.js +29 -0
- package/project/client/actions/action-stack-editor/data-action-stack-editor-file.js +49 -0
- package/project/client/actions/action-stack-editor/data-action-stack-editor-folder.js +26 -0
- package/project/client/actions/action-stack-editor/data-action-stack-editor-project.js +34 -0
- package/project/client/actions/action-sut-fut-filter.js +23 -0
- package/project/client/actions/action-system-under-test/action-system-under-test.js +164 -0
- package/project/client/actions/action-system-under-test/data-action-system-under-test.js +70 -0
- package/project/client/actions/action-test-case/action-test-case.js +323 -0
- package/project/client/actions/action-test-case/data-action-test-case.js +133 -0
- package/project/client/actions/action-test-case/realtime-action-test-case.js +69 -0
- package/project/client/actions/action-test-cases.js +49 -0
- package/project/client/actions/action-test-data/action-test-data.js +77 -0
- package/project/client/actions/action-test-data/data-action-test-data.js +62 -0
- package/project/client/actions/action-test-suite/action-test-suite.js +122 -0
- package/project/client/actions/action-test-suite/data-action-test-suite.js +76 -0
- package/project/client/actions/action-test-suite/realtime-action-test-suite.js +20 -0
- package/project/client/actions/action-test-suites.js +47 -0
- package/project/client/actor-default.js +18 -0
- package/project/client/communication/messages/messages-c-to-c/message-new-actor-index.js +15 -0
- package/project/client/communication/messages/messages-c-to-c/message-test-case-clear.js +15 -0
- package/project/client/communication/messages/messages-c-to-c/message-test-case-not-started.js +15 -0
- package/project/client/communication/messages/messages-c-to-c/message-test-suite-clear.js +15 -0
- package/project/client/components/footer/footer.jsx +94 -0
- package/project/client/components/header/header-status-login.jsx +78 -0
- package/project/client/components/header/header-status-staging-environment.jsx +132 -0
- package/project/client/components/header/header.jsx +27 -0
- package/project/client/components/header/header_icon.jsx +37 -0
- package/project/client/components/header/header_status.jsx +33 -0
- package/project/client/components/middle/abbreviation/middle-abbreviation-toolbar.jsx +126 -0
- package/project/client/components/middle/abbreviation/middle-abbreviation.jsx +27 -0
- package/project/client/components/middle/actor-editor/middle-actor-editor-sidebar.jsx +101 -0
- package/project/client/components/middle/actor-editor/middle-actor-editor-toolbar.jsx +612 -0
- package/project/client/components/middle/actor-editor/middle-actor-editor-view.jsx +157 -0
- package/project/client/components/middle/actor-editor/middle-actor-editor.jsx +38 -0
- package/project/client/components/middle/addresses/helpers/stage-filter.js +32 -0
- package/project/client/components/middle/addresses/middle-addresses-toolbar.jsx +183 -0
- package/project/client/components/middle/addresses/middle-addresses-view-client-address.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-client-interface.jsx +68 -0
- package/project/client/components/middle/addresses/middle-addresses-view-dns.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-dst.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-network-interface.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-ports.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-server-address.jsx +68 -0
- package/project/client/components/middle/addresses/middle-addresses-view-server-interface.jsx +68 -0
- package/project/client/components/middle/addresses/middle-addresses-view-src.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-srv.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-sut-address.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-sut-interface.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view.jsx +155 -0
- package/project/client/components/middle/addresses/middle-addresses.jsx +39 -0
- package/project/client/components/middle/content/middle-content-toolbar.jsx +135 -0
- package/project/client/components/middle/content/middle-content-view-audio.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view-documents.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view-image.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view-other.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view-text.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view-video.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view.jsx +111 -0
- package/project/client/components/middle/content/middle-content.jsx +39 -0
- package/project/client/components/middle/middle-not-found.jsx +24 -0
- package/project/client/components/middle/middle-sut-fut-filter.jsx +90 -0
- package/project/client/components/middle/middle.jsx +90 -0
- package/project/client/components/middle/middle_sidebar.jsx +256 -0
- package/project/client/components/middle/plugins/middle-plugins.jsx +64 -0
- package/project/client/components/middle/plus-services/middle-plus-services.jsx +63 -0
- package/project/client/components/middle/repos/middle-repos-toolbar.jsx +137 -0
- package/project/client/components/middle/repos/middle-repos-view.jsx +47 -0
- package/project/client/components/middle/repos/middle-repos.jsx +36 -0
- package/project/client/components/middle/stack-editor/middle-stack-editor-sidebar.jsx +101 -0
- package/project/client/components/middle/stack-editor/middle-stack-editor-toolbar.jsx +525 -0
- package/project/client/components/middle/stack-editor/middle-stack-editor-view.jsx +156 -0
- package/project/client/components/middle/stack-editor/middle-stack-editor.jsx +38 -0
- package/project/client/components/middle/staging/helper.js +58 -0
- package/project/client/components/middle/staging/middle-staging-modal-interface-create.jsx +244 -0
- package/project/client/components/middle/staging/middle-staging-modal-interface-delete.jsx +186 -0
- package/project/client/components/middle/staging/middle-staging-toolbar.jsx +267 -0
- package/project/client/components/middle/staging/middle-staging-view.jsx +67 -0
- package/project/client/components/middle/staging/middle-staging.jsx +40 -0
- package/project/client/components/middle/staging/tabs/middle-staging-tab-logical.jsx +27 -0
- package/project/client/components/middle/staging/tabs/middle-staging-tab-report.jsx +62 -0
- package/project/client/components/middle/staging/tabs/middle-staging-tab-repos.jsx +96 -0
- package/project/client/components/middle/staging/tabs/middle-staging-tab-setup.jsx +73 -0
- package/project/client/components/middle/start/middle-start-toolbar.jsx +134 -0
- package/project/client/components/middle/start/middle-start-view.jsx +335 -0
- package/project/client/components/middle/start/middle-start.jsx +36 -0
- package/project/client/components/middle/system-under-test/middle-system-under-test-toolbar.jsx +171 -0
- package/project/client/components/middle/system-under-test/middle-system-under-test-view-multi.jsx +119 -0
- package/project/client/components/middle/system-under-test/middle-system-under-test-view-single.jsx +85 -0
- package/project/client/components/middle/system-under-test/middle-system-under-test.jsx +40 -0
- package/project/client/components/middle/system-under-test/tabs/middle-system-under-test-tab-instances.jsx +164 -0
- package/project/client/components/middle/system-under-test/tabs/middle-system-under-test-tab-nodes.jsx +160 -0
- package/project/client/components/middle/system-under-test/tabs/middle-system-under-test-tab-specification.jsx +463 -0
- package/project/client/components/middle/test-cases/general-helpers/actors-sorting.js +52 -0
- package/project/client/components/middle/test-cases/middle-test-cases-not-found.jsx +51 -0
- package/project/client/components/middle/test-cases/middle-test-cases-toolbar.jsx +804 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-columns.jsx +222 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-fut.jsx +105 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-recent.jsx +74 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-sut.jsx +98 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-tc.jsx +108 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-test-case.jsx +104 -0
- package/project/client/components/middle/test-cases/middle-test-cases.jsx +59 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-analyze.jsx +289 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-debug.jsx +699 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-definition.jsx +103 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-execution.jsx +321 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-log.jsx +150 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-sequence-diagram.jsx +160 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-specification.jsx +472 -0
- package/project/client/components/middle/test-data/middle-test-data-toolbar.jsx +135 -0
- package/project/client/components/middle/test-data/middle-test-data-view-environment.jsx +64 -0
- package/project/client/components/middle/test-data/middle-test-data-view-general.jsx +61 -0
- package/project/client/components/middle/test-data/middle-test-data-view-output.jsx +60 -0
- package/project/client/components/middle/test-data/middle-test-data-view-system.jsx +61 -0
- package/project/client/components/middle/test-data/middle-test-data-view.jsx +98 -0
- package/project/client/components/middle/test-data/middle-test-data.jsx +39 -0
- package/project/client/components/middle/test-suites/middle-test-suites-toolbar.jsx +524 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-columns.jsx +222 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-fut.jsx +105 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-recent.jsx +74 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-sut.jsx +96 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-test-suite.jsx +593 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-ts.jsx +109 -0
- package/project/client/components/middle/test-suites/middle-test-suites.jsx +55 -0
- package/project/client/components/middle/test-suites/tabs/middle-test-suites-tab-definition.jsx +74 -0
- package/project/client/components/middle/test-suites/tabs/middle-test-suites-tab-execution.jsx +544 -0
- package/project/client/components/middle/test-suites/tabs/middle-test-suites-tab-log.jsx +118 -0
- package/project/client/components/middle/test-suites/tabs/middle-test-suites-tab-sequence-diagram.jsx +155 -0
- package/project/client/components/middle/user/middle-user-toolbar.jsx +32 -0
- package/project/client/components/middle/user/middle-user-view.jsx +32 -0
- package/project/client/components/middle/user/middle-user.jsx +39 -0
- package/project/client/components/middle/videos/middle-videos-view.jsx +135 -0
- package/project/client/components/middle/videos/middle-videos.jsx +32 -0
- package/project/client/css/components/component-video.css +15 -0
- package/project/client/css/components/modal-dialog-file.css +4 -0
- package/project/client/css/footer/footer-info.css +18 -0
- package/project/client/css/footer/footer-logo.css +39 -0
- package/project/client/css/from-code-editor/sidebar-dark.css +20 -0
- package/project/client/css/from-code-editor/sidebar-light.css +18 -0
- package/project/client/css/from-code-editor/tab.css +19 -0
- package/project/client/css/from-code-editor/tab_dark.css +9 -0
- package/project/client/css/from-code-editor/tab_light.css +9 -0
- package/project/client/css/from-code-editor/view-dark.css +11 -0
- package/project/client/css/from-code-editor/view-light.css +10 -0
- package/project/client/css/header/header-status.css +114 -0
- package/project/client/css/header/header.css +16 -0
- package/project/client/css/log-inner.css +46 -0
- package/project/client/css/main.css +4 -0
- package/project/client/css/middle/actor-editor.css +30 -0
- package/project/client/css/middle/address.css +57 -0
- package/project/client/css/middle/content.css +41 -0
- package/project/client/css/middle/login.css +118 -0
- package/project/client/css/middle/middle-start.css +5 -0
- package/project/client/css/middle/middle.css +13 -0
- package/project/client/css/middle/middle_sidebar.css +44 -0
- package/project/client/css/middle/middle_view.css +41 -0
- package/project/client/css/middle/stack-editor.css +30 -0
- package/project/client/css/middle/start/middle_start.css +94 -0
- package/project/client/css/middle/systems-under-test/systems-under-test-specification.css +48 -0
- package/project/client/css/middle/systems-under-test/systems-under-test.css +49 -0
- package/project/client/css/middle/test-case-and-test-suite/analyze.css +5 -0
- package/project/client/css/middle/test-case-and-test-suite/debug.css +281 -0
- package/project/client/css/middle/test-case-and-test-suite/execution.css +7 -0
- package/project/client/css/middle/test-case-and-test-suite/log.css +13 -0
- package/project/client/css/middle/test-case-and-test-suite/seq-dia.css +13 -0
- package/project/client/css/middle/test-cases/test-cases-analyze.css +9 -0
- package/project/client/css/middle/test-cases/test-cases-debug.css +61 -0
- package/project/client/css/middle/test-cases/test-cases-execution.css +4 -0
- package/project/client/css/middle/test-cases/test-cases-specification.css +82 -0
- package/project/client/css/middle/test-cases/test-cases.css +189 -0
- package/project/client/css/middle/test-data.css +52 -0
- package/project/client/css/middle/test-suites.css +525 -0
- package/project/client/css/middle/videos/videos.css +37 -0
- package/project/client/css/middle_test_cases_screen.css +8 -0
- package/project/client/css/middle_toolbar.css +10 -0
- package/project/client/css/repos.css +15 -0
- package/project/client/css/same_size_as_parent.css +6 -0
- package/project/client/css/test.css +116 -0
- package/project/client/html/index.html +61 -0
- package/project/client/main.jsx +59 -0
- package/project/client/stores/abbreviation-store.js +57 -0
- package/project/client/stores/actor-editor-store.js +758 -0
- package/project/client/stores/addresses-store.js +419 -0
- package/project/client/stores/console-store.js +27 -0
- package/project/client/stores/content-store.js +237 -0
- package/project/client/stores/documentation-store.js +14 -0
- package/project/client/stores/education-store.js +14 -0
- package/project/client/stores/filter-store.js +30 -0
- package/project/client/stores/function-under-test-store.js +58 -0
- package/project/client/stores/load-store.js +92 -0
- package/project/client/stores/login-store.js +232 -0
- package/project/client/stores/plugins-store.js +255 -0
- package/project/client/stores/plus-services-store.js +267 -0
- package/project/client/stores/repos-store.js +160 -0
- package/project/client/stores/stack-editor-store.js +691 -0
- package/project/client/stores/system-under-test-store.js +340 -0
- package/project/client/stores/test-case-store.js +1118 -0
- package/project/client/stores/test-cases-store.js +106 -0
- package/project/client/stores/test-data-store.js +181 -0
- package/project/client/stores/test-suite-store.js +438 -0
- package/project/client/stores/test-suites-store.js +86 -0
- package/project/client/stores/workshop-store.js +15 -0
- package/project/server/os/os-hardware.js +83 -0
- package/project/server/os/os-networks.js +50 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorBuild.js +185 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileDelete.js +21 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileGet.js +18 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileInlineGet.js +60 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileInlineUpdate.js +69 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileNew.js +396 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileRename.js +28 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileUpdate.js +18 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFolderDelete.js +21 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFolderNew.js +19 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFolderUpdate.js +19 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorProjectGet.js +77 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorProjectToggle.js +18 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorProjectUpdate.js +22 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorStacksGet.js +54 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesClientAddressGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesClientAddressUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesClientInterfaceGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesClientInterfaceUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesDnsGet.js +20 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesDnsUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesDstGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesDstUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesNetworkInterfaceGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesNetworkInterfaceUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesPortsGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesPortsUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesServerAddressGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesServerAddressUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesServerInterfaceGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesServerInterfaceUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSrcGet.js +38 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSrcUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSrvGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSrvUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSutAddressGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSutAddressUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSutInterfaceGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSutInterfaceUpdate.js +19 -0
- package/project/server/plugin-data/console/plugin_data_ConsoleClear.js +20 -0
- package/project/server/plugin-data/content/plugin_data_ContentAudioGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentAudioUpdate.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentDocumentsGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentDocumentsUpdate.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentImageGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentImageUpdate.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentOtherGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentOtherUpdate.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentTextGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentTextUpdate.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentVideoGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentVideoUpdate.js +19 -0
- package/project/server/plugin-data/function-under-test/plugin_data_FunctionUnderTestAdd.js +60 -0
- package/project/server/plugin-data/function-under-test/plugin_data_FunctionUnderTestDelete.js +20 -0
- package/project/server/plugin-data/function-under-test/plugin_data_FunctionUnderTestGet.js +92 -0
- package/project/server/plugin-data/login/plugin_data_LoginButtonsAdd.js +18 -0
- package/project/server/plugin-data/login/plugin_data_LoginButtonsGet.js +18 -0
- package/project/server/plugin-data/login/plugin_data_LoginButtonsUpdate.js +18 -0
- package/project/server/plugin-data/login/plugin_data_LoginCreateInterfaces.js +73 -0
- package/project/server/plugin-data/login/plugin_data_LoginDataGet.js +88 -0
- package/project/server/plugin-data/login/plugin_data_LoginDeleteInterfaces.js +38 -0
- package/project/server/plugin-data/login/plugin_data_LoginGet.js +22 -0
- package/project/server/plugin-data/login/plugin_data_LoginPing.js +72 -0
- package/project/server/plugin-data/login/plugin_data_LoginReposGet.js +18 -0
- package/project/server/plugin-data/login/plugin_data_LoginUpdate.js +44 -0
- package/project/server/plugin-data/login/plugin_data_LoginWsGet.js +39 -0
- package/project/server/plugin-data/plugins/plugin_data_PluginsBundleGet.js +34 -0
- package/project/server/plugin-data/plugins/plugin_data_PluginsGet.js +26 -0
- package/project/server/plugin-data/plus-services/plugin_data_PlusServicesBundleGet.js +34 -0
- package/project/server/plugin-data/plus-services/plugin_data_PlusServicesGet.js +78 -0
- package/project/server/plugin-data/repos/plugin_data_ReposAnalyzeLocalReposGet.js +142 -0
- package/project/server/plugin-data/repos/plugin_data_ReposClone.js +154 -0
- package/project/server/plugin-data/repos/plugin_data_ReposGet.js +18 -0
- package/project/server/plugin-data/repos/plugin_data_ReposVerifyGit.js +79 -0
- package/project/server/plugin-data/repos/repos.js +94 -0
- package/project/server/plugin-data/stack-editor/helpers/template.js +351 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorBuild.js +185 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFileDelete.js +21 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFileGet.js +18 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFileNew.js +24 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFileRename.js +27 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFileUpdate.js +18 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFolderDelete.js +21 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFolderNew.js +19 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFolderUpdate.js +19 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorProjectGet.js +77 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorProjectToggle.js +18 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorProjectUpdate.js +22 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorWizard.js +43 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestAdd.js +72 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestDelete.js +20 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestGet.js +138 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestInstancesUpdate.js +21 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestNodesUpdate.js +21 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestRepoAdd.js +46 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestRepoGet.js +57 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestSpecificationUpdate.js +21 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestUpdate.js +24 -0
- package/project/server/plugin-data/test-case/debug.js +39 -0
- package/project/server/plugin-data/test-case/debugger-api.js +398 -0
- package/project/server/plugin-data/test-case/debugger.js +129 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseActorsFileGet.js +26 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseAdd.js +74 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseAnalyze.js +451 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseButtonsAdd.js +19 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseButtonsGet.js +19 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseButtonsUpdate.js +19 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugBreakpointClear.js +56 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugBreakpointClearAll.js +23 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugBreakpointSet.js +118 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugBreakpointUpdate.js +84 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugGet.js +40 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugGetMembers.js +40 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugGetProperty.js +47 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugGetSource.js +29 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugLoad.js +35 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugRun.js +52 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugStart.js +217 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugStop.js +23 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDelete.js +20 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseExecutionStart.js +73 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseGet.js +118 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseRecentDelete.js +57 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseRecentGet.js +20 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseRecentUpdate.js +62 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseRename.js +43 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseSpecificationUpdate.js +21 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseStacksGet.js +54 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseUpdate.js +42 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataEnvironmentGet.js +72 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataEnvironmentUpdate.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataGeneralGet.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataGeneralUpdate.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataOutputGet.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataOutputUpdate.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataSystemGet.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataSystemUpdate.js +19 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteAdd.js +51 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteButtonsAdd.js +19 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteButtonsGet.js +18 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteButtonsUpdate.js +18 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteDelete.js +20 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteExecutionStart.js +401 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteGet.js +110 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteRecentDelete.js +54 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteRecentGet.js +18 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteRecentUpdate.js +59 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteUpdate.js +42 -0
- package/project/server/plugin-service/platform-fs/plugin_service_Platform-Fs.js +65 -0
- package/project/server/plugin-service/platform-fs/verify-or-create-files.js +57 -0
- package/repos.json +19 -0
- package/server-test-case.js +50 -0
- package/settings - Copy (2).json +77 -0
- package/settings.json +63 -0
- package/workspace/Bundle-AppLayer-client.bld +77 -0
- package/workspace/Bundle-AppLayer-cs.bld +37 -0
- package/workspace/Client-AppLayer-client-jsx.bld +10 -0
- package/workspace/Client-AppLayer-client.bld +10 -0
- package/workspace/Client-AppLayer-cs.bld +10 -0
- package/workspace/Server-AppLayer-cs.bld +12 -0
- package/workspace/Server-AppLayer-server.bld +12 -0
- package/workspace/actorjs.wrk +336 -0
- package/workspace/clean-all.tsk +11 -0
- package/workspace/clean-build.tsk +8 -0
- package/workspace/clean-compiled.tsk +9 -0
- package/workspace/clean-dist.tsk +7 -0
- package/workspace/clean-generated.tsk +7 -0
- package/workspace/clean-node.tsk +7 -0
- package/workspace/clean-temp.tsk +7 -0
- package/workspace/client-css-actorjs-bundle.bld +10 -0
- package/workspace/list-debug.tsk +4 -0
- package/workspace/list-default.tsk +4 -0
- package/workspace/list-redebug.tsk +4 -0
- package/workspace/list-release.tsk +4 -0
- package/workspace/list-rerelease.tsk +4 -0
- package/workspace/list-start.tsk +4 -0
- package/workspace/server-html-rc.bld +10 -0
- package/workspace/server-image-actorjs-rc.bld +9 -0
- package/workspace/simple-help.tsk +5 -0
- package/workspace/simple-help.txt +39 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import Action from 'z-abs-corelayer-client/client/communication/action';
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export class ActionTestSuiteMounted extends Action {
|
|
8
|
+
constructor() {
|
|
9
|
+
super();
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export class ActionTestSuiteGet extends Action {
|
|
14
|
+
constructor(repo, sut, fut, ts, key, commentOut, pendings) {
|
|
15
|
+
super(repo, sut, fut, ts, key, commentOut, pendings ? pendings : {
|
|
16
|
+
pendings: 0,
|
|
17
|
+
testSuite: new Map()
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export class ActionTestSuiteAdd extends Action {
|
|
23
|
+
constructor(repo, sut, fut, ts, description) {
|
|
24
|
+
super(repo, sut, fut, ts, description);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export class ActionTestSuiteDelete extends Action {
|
|
29
|
+
constructor(repo, sut, fut, tses) {
|
|
30
|
+
super(repo, sut, fut, tses);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export class ActionTestSuiteUpdate extends Action {
|
|
35
|
+
constructor(repo, sut, fut, ts, description, dataTs) {
|
|
36
|
+
super(repo, sut, fut, ts, description, dataTs);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export class ActionTestSuiteButtonsAdd extends Action {
|
|
41
|
+
constructor() {
|
|
42
|
+
super();
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export class ActionTestSuiteButtonsGet extends Action {
|
|
47
|
+
constructor() {
|
|
48
|
+
super();
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export class ActionTestSuiteButtonsUpdate extends Action {
|
|
53
|
+
constructor(tab, button, value) {
|
|
54
|
+
super(tab, button, value);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export class ActionTestSuiteMarkupChange extends Action {
|
|
59
|
+
constructor(markup) {
|
|
60
|
+
super(markup);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export class ActionTestSuiteMarkup extends Action {
|
|
65
|
+
constructor() {
|
|
66
|
+
super();
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export class ActionTestSuiteMarkupCancel extends Action {
|
|
71
|
+
constructor() {
|
|
72
|
+
super();
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export class ActionTestSuiteMarkupSave extends Action {
|
|
77
|
+
constructor(repo, sut, fut, ts) {
|
|
78
|
+
super(repo, sut, fut, ts);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export class ActionTestSuiteExecutionStart extends Action {
|
|
83
|
+
constructor(repoName, sutName, futName, tsName, stagedSut, stagedSutInstance, stagedSutNodes, config) {
|
|
84
|
+
super(repoName, sutName, futName, tsName, stagedSut, stagedSutInstance, stagedSutNodes, config);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export class ActionTestSuiteExecutionStop extends Action {
|
|
89
|
+
constructor(repoName, sutName, futName, tsName) {
|
|
90
|
+
super(repoName, sutName, futName, tsName);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export class ActionTestSuiteClear extends Action {
|
|
95
|
+
constructor(tab) {
|
|
96
|
+
super(tab);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export class ActionTestSuiteRecentGet extends Action {
|
|
101
|
+
constructor() {
|
|
102
|
+
super();
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export class ActionTestSuiteRecentUpdate extends Action {
|
|
107
|
+
constructor(repoName, sutName, futName, tsName) {
|
|
108
|
+
super(repoName, sutName, futName, tsName);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export class ActionTestSuiteRecentDelete extends Action {
|
|
113
|
+
constructor(repo, sut, fut, tses) {
|
|
114
|
+
super(repo, sut, fut, tses);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export class ActionTestSuiteIterations extends Action {
|
|
119
|
+
constructor(iterationsTs) {
|
|
120
|
+
super(iterationsTs);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import DataAction from 'z-abs-corelayer-client/client/communication/data-action';
|
|
5
|
+
import { ActionTestSuiteGet, ActionTestSuiteAdd, ActionTestSuiteDelete, ActionTestSuiteUpdate, ActionTestSuiteRecentGet, ActionTestSuiteRecentUpdate, ActionTestSuiteRecentDelete, ActionTestSuiteButtonsAdd, ActionTestSuiteButtonsGet } from './action-test-suite';
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
export class DataActionTestSuiteGet extends DataAction {
|
|
9
|
+
constructor(repo, sut, fut, ts, key, commentOut, pendings) {
|
|
10
|
+
super();
|
|
11
|
+
this.addRequest(new ActionTestSuiteGet(repo, sut, fut, ts, key, commentOut, pendings), repo, sut, fut, ts);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export class DataActionTestSuiteAdd extends DataAction {
|
|
16
|
+
constructor(repo, sut, fut, ts, description, dataTestSuite) {
|
|
17
|
+
super();
|
|
18
|
+
this.addRequest(new ActionTestSuiteAdd(repo, sut, fut, ts, description), repo, sut, fut, ts, description, dataTestSuite);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export class DataActionTestSuiteDelete extends DataAction {
|
|
23
|
+
constructor(repo, sut, fut, tses) {
|
|
24
|
+
super();
|
|
25
|
+
this.addRequest(new ActionTestSuiteDelete(repo, sut, fut, tses), repo, sut, fut, tses);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export class DataActionTestSuiteUpdate extends DataAction {
|
|
30
|
+
constructor(repo, sut, fut, ts, description, dataTs) {
|
|
31
|
+
super();
|
|
32
|
+
this.addRequest(new ActionTestSuiteUpdate(repo, sut, fut, ts, description, dataTs), repo, sut, fut, ts, description, dataTs);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export class DataActionTestSuiteRecentGet extends DataAction {
|
|
37
|
+
constructor() {
|
|
38
|
+
super();
|
|
39
|
+
this.addRequest(new ActionTestSuiteRecentGet());
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export class DataActionTestSuiteRecentUpdate extends DataAction {
|
|
44
|
+
constructor(repo, sut, fut, ts) {
|
|
45
|
+
super();
|
|
46
|
+
this.addRequest(new ActionTestSuiteRecentUpdate(repo, sut, fut, ts), repo, sut, fut, ts);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export class DataActionTestSuiteRecentDelete extends DataAction {
|
|
51
|
+
constructor(repo, sut, fut, tses) {
|
|
52
|
+
super();
|
|
53
|
+
this.addRequest(new ActionTestSuiteRecentDelete(repo, sut, fut, tses), repo, sut, fut, tses);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export class DataActionTestSuiteButtonsAdd extends DataAction {
|
|
58
|
+
constructor(key, valueObject) {
|
|
59
|
+
super();
|
|
60
|
+
this.addRequest(new ActionTestSuiteButtonsAdd(), key, valueObject);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export class DataActionTestSuiteButtonsGet extends DataAction {
|
|
65
|
+
constructor(key) {
|
|
66
|
+
super();
|
|
67
|
+
this.addRequest(new ActionTestSuiteButtonsGet(), key);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export class DataActionTestSuiteButtonsUpdate extends DataAction {
|
|
72
|
+
constructor(action, key, valueObject) {
|
|
73
|
+
super();
|
|
74
|
+
this.addRequest(action, key, valueObject);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import RealtimeAction from 'z-abs-corelayer-client/client/communication/realtime-action';
|
|
5
|
+
import { ActionTestSuiteExecutionStart, ActionTestSuiteExecutionStop } from './action-test-suite';
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
export class RealtimeActionTestSuiteExecutionStart extends RealtimeAction {
|
|
9
|
+
constructor(repoName, sutName, futName, tsName, stagedSut, stagedSutInstance, stagedSutNodes, systemsUnderTestNames, systemsUnderTestNodes, config, iterationsTs) {
|
|
10
|
+
super();
|
|
11
|
+
this.addRequest(new ActionTestSuiteExecutionStart(repoName, sutName, futName, tsName, stagedSut, stagedSutInstance, stagedSutNodes, config), repoName, sutName, futName, tsName, stagedSut, stagedSutInstance, stagedSutNodes, systemsUnderTestNames, systemsUnderTestNodes, config, iterationsTs);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export class RealtimeActionTestSuiteExecutionStop extends RealtimeAction {
|
|
16
|
+
constructor(repoName, sutName, futName, tsName) {
|
|
17
|
+
super();
|
|
18
|
+
this.addRequest(new ActionTestSuiteExecutionStop(repoName, sutName, futName, tsName), repoName, sutName, futName, tsName);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import Action from 'z-abs-corelayer-client/client/communication/action';
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export class ActionTestSuitesSutChecked extends Action {
|
|
8
|
+
constructor(sut, checked) {
|
|
9
|
+
super(sut, checked);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export class ActionTestSuitesFutChecked extends Action {
|
|
14
|
+
constructor(repoName, sutName, futName, checked) {
|
|
15
|
+
super(repoName, sutName, futName, checked);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export class ActionTestSuitesTsChecked extends Action {
|
|
20
|
+
constructor(tsName, checked) {
|
|
21
|
+
super(tsName, checked);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export class ActionTestSuitesSetView extends Action {
|
|
26
|
+
constructor(currentView) {
|
|
27
|
+
super(currentView);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export class ActionTestSuitesSutClear extends Action {
|
|
32
|
+
constructor() {
|
|
33
|
+
super();
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export class ActionTestSuitesFutClear extends Action {
|
|
38
|
+
constructor() {
|
|
39
|
+
super();
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export class ActionTestSuitesTsClear extends Action {
|
|
44
|
+
constructor() {
|
|
45
|
+
super();
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
export default class ActorDefault {
|
|
5
|
+
static NAME() {
|
|
6
|
+
return 'Actor';
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
static SYSTEM_UNDER_TEST() {
|
|
10
|
+
return {
|
|
11
|
+
name: ActorDefault.NAME(),
|
|
12
|
+
description: 'Default System Under Test. The tool it self acts as the system under test.',
|
|
13
|
+
instances: [],
|
|
14
|
+
nodes: [],
|
|
15
|
+
status: 'static'
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
const AppProtocolConst = require('z-abs-funclayer-engine-cs/clientServer/communication/app-protocol/app-protocol-const');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class MessageNewActorIndex {
|
|
8
|
+
constructor(index) {
|
|
9
|
+
this.msgId = AppProtocolConst.TEST_CASE_ACTOR_INDEX;
|
|
10
|
+
this.index = index;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
module.exports = MessageNewActorIndex;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
const AppProtocolConst = require('z-abs-funclayer-engine-cs/clientServer/communication/app-protocol/app-protocol-const');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class MessageTestCaseClear {
|
|
8
|
+
constructor(tab) {
|
|
9
|
+
this.msgId = AppProtocolConst.TEST_CASE_CLEAR;
|
|
10
|
+
this.tab = tab;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
module.exports = MessageTestCaseClear;
|
package/project/client/communication/messages/messages-c-to-c/message-test-case-not-started.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
const AppProtocolConst = require('z-abs-funclayer-engine-cs/clientServer/communication/app-protocol/app-protocol-const');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class MessageTestCaseNotStarted {
|
|
8
|
+
constructor(resultId) {
|
|
9
|
+
this.msgId = AppProtocolConst.TEST_CASE_NOT_STARTED;
|
|
10
|
+
this.resultId = resultId;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
module.exports = MessageTestCaseNotStarted;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
const AppProtocolConst = require('z-abs-funclayer-engine-cs/clientServer/communication/app-protocol/app-protocol-const');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class MessageTestSuiteClear {
|
|
8
|
+
constructor(tab) {
|
|
9
|
+
this.msgId = AppProtocolConst.TEST_SUITE_CLEAR;
|
|
10
|
+
this.tab = tab;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
module.exports = MessageTestSuiteClear;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import ConsoleStore from '../../stores/console-store';
|
|
5
|
+
import { ActionConsoleClear } from '../../actions/action-console/action-console';
|
|
6
|
+
import ButtonNew from 'z-abs-complayer-bootstrap-client/client/button-new';
|
|
7
|
+
import ButtonText from 'z-abs-complayer-bootstrap-client/client/button-text';
|
|
8
|
+
import ReactComponentStore from 'z-abs-corelayer-client/client/react-component/react-component-store';
|
|
9
|
+
import React from 'react';
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
export default class Footer extends ReactComponentStore {
|
|
13
|
+
constructor(props) {
|
|
14
|
+
super(props);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
shouldUpdate(nextProps, nextState) {
|
|
18
|
+
return false;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
renderClearConsoleButton(style) {
|
|
22
|
+
return (
|
|
23
|
+
<ButtonNew id="console_clear" colorMark="markup_color" icon="icon-execution-clear" size="aj_btn_xs" placement="top" heading="Clear" content="Console" style={{fontSize:'11px',float:'right'}} aria-label="Clear Console"
|
|
24
|
+
onClick={(e) => {
|
|
25
|
+
this.dispatch(ConsoleStore, new ActionConsoleClear());
|
|
26
|
+
}}
|
|
27
|
+
/>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
renderBuildDiv() {
|
|
32
|
+
return null;
|
|
33
|
+
/*return (
|
|
34
|
+
<div className="build_info" />
|
|
35
|
+
);*/
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
renderTestExecutiondDiv() {
|
|
39
|
+
return null;
|
|
40
|
+
/*return (
|
|
41
|
+
<div className="test_execution_info" />
|
|
42
|
+
);*/
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
renderRefButton(heading, content, link, ariaLabel) {
|
|
46
|
+
return (
|
|
47
|
+
<ButtonText id={`${heading}_${content}`} colorMark="markup_color" icon="icon-link" size="aj_btn_xs" text={content} placement="top" heading={heading} content={content} aria-label={ariaLabel}
|
|
48
|
+
onClick={(e) => {
|
|
49
|
+
const width = 1200;
|
|
50
|
+
const height = 600;
|
|
51
|
+
const left = 100;
|
|
52
|
+
const top = 100;
|
|
53
|
+
window.open(link, '_blank', `width=${width},innerWidth=${width},height=${height},innerHeight=${height},left=${left},screenX=${left},top=${top},screenY=${top}`);
|
|
54
|
+
}}
|
|
55
|
+
/>
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
render() {
|
|
60
|
+
return (
|
|
61
|
+
<div className="footer">
|
|
62
|
+
{/*<div className="btn-toolbar" role="toolbar" aria-label="..." style={{float:'left'}}>*/}
|
|
63
|
+
<div className="toolbar" role="toolbar" aria-label="...">
|
|
64
|
+
<div className="aj_btn_group" role="group" aria-label="...">
|
|
65
|
+
{this.renderRefButton('MDN', 'String', 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String', 'MDN String')}
|
|
66
|
+
{this.renderRefButton('MDN', 'Number', 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number', 'MDN Number')}
|
|
67
|
+
{this.renderRefButton('MDN', 'Array', 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array', 'MDN Array')}
|
|
68
|
+
{this.renderRefButton('MDN', 'Map', 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map', 'MDN Map')}
|
|
69
|
+
{this.renderRefButton('MDN', 'Set', 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set', 'MDN Set')}
|
|
70
|
+
{this.renderRefButton('MDN', 'Proxy', 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy', 'MDN Proxy')}
|
|
71
|
+
{this.renderRefButton('MDN', 'Reflect', 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect', 'MDN Reflect')}
|
|
72
|
+
</div>
|
|
73
|
+
<div className="aj_btn_group" role="group" aria-label="...">
|
|
74
|
+
{this.renderRefButton('Nodejs', 'Nodejs', 'https://nodejs.org/en/', 'Nodejs')}
|
|
75
|
+
{this.renderRefButton('Nodejs', 'Buffer', 'https://nodejs.org/dist/latest-v16.x/docs/api/buffer.html', 'Nodejs Buffer')}
|
|
76
|
+
</div>
|
|
77
|
+
<div className="aj_btn_group" role="group" aria-label="...">
|
|
78
|
+
{this.renderRefButton('Puppeteer', 'Puppeteer', 'https://pptr.dev/api/', 'Puppeteer')}
|
|
79
|
+
{this.renderRefButton('Puppeteer', 'Page', 'https://pptr.dev/api/puppeteer.page', 'Puppeteer Page')}
|
|
80
|
+
{this.renderRefButton('Puppeteer', 'ElementHandle', 'https://pptr.dev/api/puppeteer.elementhandle', 'Puppeteer Element Handle')}
|
|
81
|
+
</div>
|
|
82
|
+
<div className="aj_btn_group footer_logo" role="group" aria-label="...">
|
|
83
|
+
<img id="start_page" className="footer_logo" src="/abs-images/svg/ActorJs.svg" alt="ActorJs Logo"></img>
|
|
84
|
+
</div>
|
|
85
|
+
<div className="aj_btn_group footer_right_buttons" role="group" aria-label="...">
|
|
86
|
+
{this.renderClearConsoleButton()}
|
|
87
|
+
{this.renderBuildDiv()}
|
|
88
|
+
{this.renderTestExecutiondDiv()}
|
|
89
|
+
</div>
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import LoginStore from '../../stores/login-store';
|
|
5
|
+
import Popover from 'z-abs-complayer-bootstrap-client/client/popover';
|
|
6
|
+
import ReactComponentStore from 'z-abs-corelayer-client/client/react-component/react-component-store';
|
|
7
|
+
import React from 'react';
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
export default class HeaderStatusLogin extends ReactComponentStore {
|
|
11
|
+
constructor(props) {
|
|
12
|
+
super(props, [LoginStore]);
|
|
13
|
+
this.verificationClasses = ['logged_in', 'not_logged_in', 'offline', 'not_registered'];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
shouldUpdate(nextProps, nextState) {
|
|
17
|
+
return !this.shallowCompare(this.state.LoginStore.login, nextState.LoginStore.login);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
renderColorMark(verify) {
|
|
21
|
+
return (
|
|
22
|
+
<div className={`status_popup login_${verify}`}>
|
|
23
|
+
<Popover placement="bottom" heading="Login" content="" innerContent={() => {
|
|
24
|
+
return `<div class="status_popup_help_outer_group">
|
|
25
|
+
<div class="status_popup_help_outer">
|
|
26
|
+
<div class="status_popup_help login_logged_in"></div>
|
|
27
|
+
<div class="status_popup_help_inner"><p class="status_popup_help_inner">Logged in</p></div>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="status_popup_help_outer">
|
|
30
|
+
<div class="status_popup_help login_not_logged_in"></div>
|
|
31
|
+
<div class="status_popup_help_inner"><p class="status_popup_help_inner">Not logged in</p></div>
|
|
32
|
+
</div>
|
|
33
|
+
<div class="status_popup_help_outer">
|
|
34
|
+
<div class="status_popup_help login_offline"></div>
|
|
35
|
+
<div class="status_popup_help_inner"><p class="status_popup_help_inner">Offline</p></div>
|
|
36
|
+
</div>
|
|
37
|
+
<div class="status_popup_help_outer">
|
|
38
|
+
<div class="status_popup_help login_not_registered"></div>
|
|
39
|
+
<div class="status_popup_help_inner"><p class="status_popup_help_inner">Not registered</p></div>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
`;
|
|
43
|
+
}} shortcut="" showDelay="0" hideDelay="1000" autoHideDelay="120000" style={{widht:'100%',height:'100%'}}>
|
|
44
|
+
</Popover>
|
|
45
|
+
</div>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
verify() {
|
|
50
|
+
return 'not_registered';
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
render() {
|
|
54
|
+
return (
|
|
55
|
+
<div className="header_status_login">
|
|
56
|
+
<table className="table_header_status">
|
|
57
|
+
<thead className="table_header_status">
|
|
58
|
+
<tr className="table_header_status">
|
|
59
|
+
<th className="table_header_status" colSpan="2">
|
|
60
|
+
{this.renderColorMark(this.verify())}
|
|
61
|
+
login</th>
|
|
62
|
+
</tr>
|
|
63
|
+
<tr>
|
|
64
|
+
<th className="table_header_status header_table_heading">user</th>
|
|
65
|
+
<th className="table_header_status header_table_heading">organization</th>
|
|
66
|
+
</tr>
|
|
67
|
+
</thead>
|
|
68
|
+
<tbody className="table_header_status">
|
|
69
|
+
<tr>
|
|
70
|
+
<td className={'table_header_status header_table_heading'}>-</td>
|
|
71
|
+
<td className={'table_header_status header_table_heading'}>-</td>
|
|
72
|
+
</tr>
|
|
73
|
+
</tbody>
|
|
74
|
+
</table>
|
|
75
|
+
</div>
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import LoginStore from '../../stores/login-store';
|
|
5
|
+
import SystemUnderTestStore from '../../stores/system-under-test-store';
|
|
6
|
+
import Popover from 'z-abs-complayer-bootstrap-client/client/popover';
|
|
7
|
+
import ReactComponentStore from 'z-abs-corelayer-client/client/react-component/react-component-store';
|
|
8
|
+
import React from 'react';
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
export default class HeaderStatusLogin extends ReactComponentStore {
|
|
12
|
+
constructor(props) {
|
|
13
|
+
super(props, [LoginStore, SystemUnderTestStore]);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
shouldUpdate(nextProps, nextState) {
|
|
17
|
+
return !this.shallowCompare(this.state.LoginStore.login, nextState.LoginStore.login)
|
|
18
|
+
|| !this.shallowCompare(this.state.LoginStore.loggedIn, nextState.LoginStore.loggedIn)
|
|
19
|
+
|| !this.shallowCompare(this.state.LoginStore.loginDataChanged, nextState.LoginStore.loginDataChanged)
|
|
20
|
+
|| !this.shallowCompare(this.state.SystemUnderTestStore.currentSut, nextState.SystemUnderTestStore.currentSut);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
renderInstanceHeader() {
|
|
24
|
+
if(this.state.LoginStore.login.systemUnderTestInstance) {
|
|
25
|
+
return (<th className="table_header_status header_table_heading">instance</th>);
|
|
26
|
+
}
|
|
27
|
+
else {
|
|
28
|
+
return null;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
renderInstanceValue() {
|
|
33
|
+
if(this.state.LoginStore.login.systemUnderTestInstance) {
|
|
34
|
+
return (<td className={'table_header_status header_table_heading'}>{this.state.LoginStore.login.systemUnderTestInstance}</td>);
|
|
35
|
+
}
|
|
36
|
+
else {
|
|
37
|
+
return null;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
verify() {
|
|
42
|
+
if(this.state.LoginStore.loggedIn) {
|
|
43
|
+
if(this.state.SystemUnderTestStore.currentSut) {
|
|
44
|
+
if(this.state.LoginStore.login.systemUnderTest === this.state.SystemUnderTestStore.currentSut.name) {
|
|
45
|
+
if(this.state.LoginStore.login.forcedLocalhost) {
|
|
46
|
+
return 'staged_to_localhost';
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
return 'staged';
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
else {
|
|
53
|
+
return 'staged_not_current';
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
if(this.state.LoginStore.login.forcedLocalhost) {
|
|
58
|
+
return 'staged_to_localhost';
|
|
59
|
+
}
|
|
60
|
+
else {
|
|
61
|
+
return 'staged';
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
return 'not_staged';
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
renderColorMark(verify) {
|
|
71
|
+
return (
|
|
72
|
+
<div className={`status_popup stage_${verify}`}>
|
|
73
|
+
<Popover placement="bottom" heading="Staging" content="" innerContent={() => {
|
|
74
|
+
return `<div class="status_popup_help_outer_group">
|
|
75
|
+
<div class="status_popup_help_outer">
|
|
76
|
+
<div class="status_popup_help stage_staged"></div>
|
|
77
|
+
<div class="status_popup_help_inner"><p class="status_popup_help_inner">Staged</p></div>
|
|
78
|
+
</div>
|
|
79
|
+
<div class="status_popup_help_outer">
|
|
80
|
+
<div class="status_popup_help stage_staged_to_localhost"></div>
|
|
81
|
+
<div class="status_popup_help_inner"><p class="status_popup_help_inner">Staged - localhost</p></div>
|
|
82
|
+
</div>
|
|
83
|
+
<div class="status_popup_help_outer">
|
|
84
|
+
<div class="status_popup_help stage_staged_not_current"></div>
|
|
85
|
+
<div class="status_popup_help_inner"><p class="status_popup_help_inner">Staged - not current SUT</p></div>
|
|
86
|
+
</div>
|
|
87
|
+
<div class="status_popup_help_outer">
|
|
88
|
+
<div class="status_popup_help stage_not_staged"></div>
|
|
89
|
+
<div class="status_popup_help_inner"><p class="status_popup_help_inner">Not staged</p></div>
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
`;
|
|
93
|
+
}} shortcut="" showDelay="0" hideDelay="1000" autoHideDelay="120000" style={{widht:'100%',height:'100%'}}>
|
|
94
|
+
</Popover>
|
|
95
|
+
</div>
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
render() {
|
|
100
|
+
const login = this.state.LoginStore.login;
|
|
101
|
+
const colSpan = login.systemUnderTestInstance ? 5 : 4;
|
|
102
|
+
return (
|
|
103
|
+
<div className="header_status_login">
|
|
104
|
+
<table className="table_header_status">
|
|
105
|
+
<thead className="table_header_status">
|
|
106
|
+
<tr className="table_header_status">
|
|
107
|
+
<th className="table_header_status" colSpan={colSpan}>
|
|
108
|
+
{this.renderColorMark(this.verify())}
|
|
109
|
+
staging</th>
|
|
110
|
+
</tr>
|
|
111
|
+
<tr>
|
|
112
|
+
<th className="table_header_status header_table_heading">lab id</th>
|
|
113
|
+
<th className="table_header_status header_table_heading">user id</th>
|
|
114
|
+
<th className="table_header_status header_table_heading">repo</th>
|
|
115
|
+
<th className="table_header_status header_table_heading">sut</th>
|
|
116
|
+
{this.renderInstanceHeader()}
|
|
117
|
+
</tr>
|
|
118
|
+
</thead>
|
|
119
|
+
<tbody className="table_header_status">
|
|
120
|
+
<tr>
|
|
121
|
+
<td className={'table_header_status header_table_heading'}>{login.labId}</td>
|
|
122
|
+
<td className={'table_header_status header_table_heading'}>{login.userId}</td>
|
|
123
|
+
<td className={'table_header_status header_table_heading'}>{login.repo}</td>
|
|
124
|
+
<td className={'table_header_status header_table_heading'}>{login.systemUnderTest}</td>
|
|
125
|
+
{this.renderInstanceValue()}
|
|
126
|
+
</tr>
|
|
127
|
+
</tbody>
|
|
128
|
+
</table>
|
|
129
|
+
</div>
|
|
130
|
+
);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import HeaderIcon from './header_icon';
|
|
5
|
+
import HeaderStatus from './header_status';
|
|
6
|
+
import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
|
|
7
|
+
import React from 'react';
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
export default class Header extends ReactComponentBase {
|
|
11
|
+
constructor(props) {
|
|
12
|
+
super(props);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
shouldUpdate(nextProps, nextState) {
|
|
16
|
+
return false;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
render() {
|
|
20
|
+
return (
|
|
21
|
+
<div className="header">
|
|
22
|
+
<HeaderIcon />
|
|
23
|
+
<HeaderStatus />
|
|
24
|
+
</div>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
}
|