scratch-blocks 1.1.206 → 2.0.0-beta.1
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/.husky/commit-msg +0 -3
- package/CHANGELOG.md +111 -833
- package/TODO.md +16 -0
- package/blockly-rc/.eslintignore +28 -0
- package/blockly-rc/.eslintrc.js +187 -0
- package/blockly-rc/.gitattributes +1 -0
- package/blockly-rc/.github/CODEOWNERS +1 -0
- package/blockly-rc/.github/CONTRIBUTING.md +46 -0
- package/blockly-rc/.github/ISSUE_TEMPLATE/bug_report.yaml +58 -0
- package/blockly-rc/.github/ISSUE_TEMPLATE/config.yml +7 -0
- package/blockly-rc/.github/ISSUE_TEMPLATE/documentation.yaml +38 -0
- package/blockly-rc/.github/ISSUE_TEMPLATE/feature_request.yaml +39 -0
- package/blockly-rc/.github/PULL_REQUEST_TEMPLATE.md +42 -0
- package/blockly-rc/.github/dependabot.yml +27 -0
- package/blockly-rc/.github/release.yml +32 -0
- package/blockly-rc/.github/workflows/appengine_deploy.yml +54 -0
- package/blockly-rc/.github/workflows/assign_reviewers.yml +41 -0
- package/blockly-rc/.github/workflows/browser_test.yml +55 -0
- package/blockly-rc/.github/workflows/build.yml +86 -0
- package/blockly-rc/.github/workflows/conventional-label.yml +17 -0
- package/blockly-rc/.github/workflows/develop_freeze.yml +26 -0
- package/blockly-rc/.github/workflows/tag_module_cleanup.yml +37 -0
- package/blockly-rc/.github/workflows/welcome_new_contributors.yml +36 -0
- package/blockly-rc/.prettierignore +30 -0
- package/blockly-rc/.prettierrc.js +13 -0
- package/blockly-rc/CHANGELOG.md +77 -0
- package/blockly-rc/LICENSE +202 -0
- package/blockly-rc/README.md +80 -0
- package/blockly-rc/_config.yml +1 -0
- package/blockly-rc/api-extractor.json +385 -0
- package/blockly-rc/appengine/.gcloudignore +20 -0
- package/blockly-rc/appengine/README.txt +42 -0
- package/blockly-rc/appengine/add_timestamps.py +69 -0
- package/blockly-rc/appengine/app.yaml +104 -0
- package/blockly-rc/appengine/apple-touch-icon.png +0 -0
- package/blockly-rc/appengine/blockly_compressed.js +11 -0
- package/blockly-rc/appengine/expiration.py +52 -0
- package/blockly-rc/appengine/favicon.ico +0 -0
- package/blockly-rc/appengine/index.yaml +11 -0
- package/blockly-rc/appengine/main.py +39 -0
- package/blockly-rc/appengine/redirect.html +107 -0
- package/blockly-rc/appengine/requirements.txt +1 -0
- package/blockly-rc/appengine/robots.txt +2 -0
- package/blockly-rc/appengine/storage.js +190 -0
- package/blockly-rc/appengine/storage.py +125 -0
- package/blockly-rc/blocks/blocks.ts +44 -0
- package/blockly-rc/blocks/lists.ts +1085 -0
- package/blockly-rc/blocks/logic.ts +712 -0
- package/blockly-rc/blocks/loops.ts +408 -0
- package/blockly-rc/blocks/math.ts +591 -0
- package/blockly-rc/blocks/procedures.ts +1364 -0
- package/blockly-rc/blocks/text.ts +1007 -0
- package/blockly-rc/blocks/variables.ts +183 -0
- package/blockly-rc/blocks/variables_dynamic.ts +194 -0
- package/blockly-rc/core/any_aliases.ts +8 -0
- package/blockly-rc/core/block.ts +2523 -0
- package/blockly-rc/core/block_animations.ts +225 -0
- package/blockly-rc/core/block_flyout_inflater.ts +262 -0
- package/blockly-rc/core/block_svg.ts +1768 -0
- package/blockly-rc/core/blockly.ts +605 -0
- package/blockly-rc/core/blockly_options.ts +71 -0
- package/blockly-rc/core/blocks.ts +18 -0
- package/blockly-rc/core/browser_events.ts +244 -0
- package/blockly-rc/core/bubbles/bubble.ts +658 -0
- package/blockly-rc/core/bubbles/mini_workspace_bubble.ts +280 -0
- package/blockly-rc/core/bubbles/text_bubble.ts +103 -0
- package/blockly-rc/core/bubbles/textinput_bubble.ts +344 -0
- package/blockly-rc/core/bubbles.ts +12 -0
- package/blockly-rc/core/bump_objects.ts +192 -0
- package/blockly-rc/core/button_flyout_inflater.ts +63 -0
- package/blockly-rc/core/clipboard/block_paster.ts +142 -0
- package/blockly-rc/core/clipboard/registry.ts +31 -0
- package/blockly-rc/core/clipboard/workspace_comment_paster.ts +94 -0
- package/blockly-rc/core/clipboard.ts +113 -0
- package/blockly-rc/core/comments/comment_view.ts +899 -0
- package/blockly-rc/core/comments/rendered_workspace_comment.ts +297 -0
- package/blockly-rc/core/comments/workspace_comment.ts +237 -0
- package/blockly-rc/core/comments.ts +9 -0
- package/blockly-rc/core/common.ts +305 -0
- package/blockly-rc/core/component_manager.ts +235 -0
- package/blockly-rc/core/config.ts +65 -0
- package/blockly-rc/core/connection.ts +793 -0
- package/blockly-rc/core/connection_checker.ts +348 -0
- package/blockly-rc/core/connection_db.ts +297 -0
- package/blockly-rc/core/connection_type.ts +21 -0
- package/blockly-rc/core/constants.ts +23 -0
- package/blockly-rc/core/contextmenu.ts +268 -0
- package/blockly-rc/core/contextmenu_items.ts +700 -0
- package/blockly-rc/core/contextmenu_registry.ts +194 -0
- package/blockly-rc/core/css.ts +481 -0
- package/blockly-rc/core/delete_area.ts +77 -0
- package/blockly-rc/core/dialog.ts +121 -0
- package/blockly-rc/core/drag_target.ts +97 -0
- package/blockly-rc/core/dragging/block_drag_strategy.ts +454 -0
- package/blockly-rc/core/dragging/bubble_drag_strategy.ts +52 -0
- package/blockly-rc/core/dragging/comment_drag_strategy.ts +91 -0
- package/blockly-rc/core/dragging/dragger.ts +163 -0
- package/blockly-rc/core/dragging.ts +12 -0
- package/blockly-rc/core/dropdowndiv.ts +768 -0
- package/blockly-rc/core/events/events.ts +163 -0
- package/blockly-rc/core/events/events_abstract.ts +130 -0
- package/blockly-rc/core/events/events_block_base.ts +88 -0
- package/blockly-rc/core/events/events_block_change.ts +259 -0
- package/blockly-rc/core/events/events_block_create.ts +185 -0
- package/blockly-rc/core/events/events_block_delete.ts +182 -0
- package/blockly-rc/core/events/events_block_drag.ts +116 -0
- package/blockly-rc/core/events/events_block_field_intermediate_change.ts +167 -0
- package/blockly-rc/core/events/events_block_move.ts +307 -0
- package/blockly-rc/core/events/events_bubble_open.ts +120 -0
- package/blockly-rc/core/events/events_click.ts +110 -0
- package/blockly-rc/core/events/events_comment_base.ts +126 -0
- package/blockly-rc/core/events/events_comment_change.ts +161 -0
- package/blockly-rc/core/events/events_comment_collapse.ts +103 -0
- package/blockly-rc/core/events/events_comment_create.ts +118 -0
- package/blockly-rc/core/events/events_comment_delete.ts +117 -0
- package/blockly-rc/core/events/events_comment_drag.ts +99 -0
- package/blockly-rc/core/events/events_comment_move.ts +207 -0
- package/blockly-rc/core/events/events_comment_resize.ts +174 -0
- package/blockly-rc/core/events/events_marker_move.ts +134 -0
- package/blockly-rc/core/events/events_selected.ts +98 -0
- package/blockly-rc/core/events/events_theme_change.ts +84 -0
- package/blockly-rc/core/events/events_toolbox_item_select.ts +96 -0
- package/blockly-rc/core/events/events_trashcan_open.ts +88 -0
- package/blockly-rc/core/events/events_ui_base.ts +47 -0
- package/blockly-rc/core/events/events_var_base.ts +89 -0
- package/blockly-rc/core/events/events_var_create.ts +129 -0
- package/blockly-rc/core/events/events_var_delete.ts +124 -0
- package/blockly-rc/core/events/events_var_rename.ts +133 -0
- package/blockly-rc/core/events/events_var_type_change.ts +122 -0
- package/blockly-rc/core/events/events_viewport.ts +149 -0
- package/blockly-rc/core/events/utils.ts +595 -0
- package/blockly-rc/core/events/workspace_events.ts +46 -0
- package/blockly-rc/core/extensions.ts +491 -0
- package/blockly-rc/core/field.ts +1471 -0
- package/blockly-rc/core/field_checkbox.ts +271 -0
- package/blockly-rc/core/field_dropdown.ts +857 -0
- package/blockly-rc/core/field_image.ts +297 -0
- package/blockly-rc/core/field_input.ts +755 -0
- package/blockly-rc/core/field_label.ts +150 -0
- package/blockly-rc/core/field_label_serializable.ts +73 -0
- package/blockly-rc/core/field_number.ts +381 -0
- package/blockly-rc/core/field_registry.ts +115 -0
- package/blockly-rc/core/field_textinput.ts +117 -0
- package/blockly-rc/core/field_variable.ts +651 -0
- package/blockly-rc/core/flyout_base.ts +968 -0
- package/blockly-rc/core/flyout_button.ts +416 -0
- package/blockly-rc/core/flyout_horizontal.ts +374 -0
- package/blockly-rc/core/flyout_metrics_manager.ts +90 -0
- package/blockly-rc/core/flyout_separator.ts +61 -0
- package/blockly-rc/core/flyout_vertical.ts +353 -0
- package/blockly-rc/core/generator.ts +611 -0
- package/blockly-rc/core/gesture.ts +1191 -0
- package/blockly-rc/core/grid.ts +252 -0
- package/blockly-rc/core/icons/comment_icon.ts +435 -0
- package/blockly-rc/core/icons/exceptions.ts +23 -0
- package/blockly-rc/core/icons/icon.ts +147 -0
- package/blockly-rc/core/icons/icon_types.ts +32 -0
- package/blockly-rc/core/icons/mutator_icon.ts +354 -0
- package/blockly-rc/core/icons/registry.ts +33 -0
- package/blockly-rc/core/icons/warning_icon.ts +219 -0
- package/blockly-rc/core/icons.ts +24 -0
- package/blockly-rc/core/inject.ts +428 -0
- package/blockly-rc/core/inputs/align.ts +14 -0
- package/blockly-rc/core/inputs/dummy_input.ts +26 -0
- package/blockly-rc/core/inputs/end_row_input.ts +31 -0
- package/blockly-rc/core/inputs/input.ts +318 -0
- package/blockly-rc/core/inputs/input_types.ts +27 -0
- package/blockly-rc/core/inputs/statement_input.ts +34 -0
- package/blockly-rc/core/inputs/value_input.ts +30 -0
- package/blockly-rc/core/inputs.ts +23 -0
- package/blockly-rc/core/insertion_marker_manager.ts +742 -0
- package/blockly-rc/core/insertion_marker_previewer.ts +254 -0
- package/blockly-rc/core/interfaces/i_ast_node_location.ts +12 -0
- package/blockly-rc/core/interfaces/i_ast_node_location_svg.ts +28 -0
- package/blockly-rc/core/interfaces/i_ast_node_location_with_block.ts +22 -0
- package/blockly-rc/core/interfaces/i_autohideable.ts +22 -0
- package/blockly-rc/core/interfaces/i_bounded_element.ts +30 -0
- package/blockly-rc/core/interfaces/i_bubble.ts +63 -0
- package/blockly-rc/core/interfaces/i_collapsible_toolbox_item.ts +33 -0
- package/blockly-rc/core/interfaces/i_comment_icon.ts +47 -0
- package/blockly-rc/core/interfaces/i_component.ts +19 -0
- package/blockly-rc/core/interfaces/i_connection_checker.ts +100 -0
- package/blockly-rc/core/interfaces/i_connection_previewer.ts +50 -0
- package/blockly-rc/core/interfaces/i_contextmenu.ts +16 -0
- package/blockly-rc/core/interfaces/i_copyable.ts +31 -0
- package/blockly-rc/core/interfaces/i_deletable.ts +34 -0
- package/blockly-rc/core/interfaces/i_delete_area.ts +28 -0
- package/blockly-rc/core/interfaces/i_drag_target.ts +69 -0
- package/blockly-rc/core/interfaces/i_draggable.ts +72 -0
- package/blockly-rc/core/interfaces/i_dragger.ts +35 -0
- package/blockly-rc/core/interfaces/i_flyout.ts +189 -0
- package/blockly-rc/core/interfaces/i_flyout_inflater.ts +41 -0
- package/blockly-rc/core/interfaces/i_has_bubble.ts +20 -0
- package/blockly-rc/core/interfaces/i_icon.ts +114 -0
- package/blockly-rc/core/interfaces/i_keyboard_accessible.ts +21 -0
- package/blockly-rc/core/interfaces/i_legacy_procedure_blocks.ts +50 -0
- package/blockly-rc/core/interfaces/i_metrics_manager.ts +149 -0
- package/blockly-rc/core/interfaces/i_movable.ts +19 -0
- package/blockly-rc/core/interfaces/i_observable.ts +24 -0
- package/blockly-rc/core/interfaces/i_parameter_model.ts +51 -0
- package/blockly-rc/core/interfaces/i_paster.ts +25 -0
- package/blockly-rc/core/interfaces/i_positionable.ts +33 -0
- package/blockly-rc/core/interfaces/i_procedure_block.ts +27 -0
- package/blockly-rc/core/interfaces/i_procedure_map.ts +18 -0
- package/blockly-rc/core/interfaces/i_procedure_model.ts +71 -0
- package/blockly-rc/core/interfaces/i_registrable.ts +12 -0
- package/blockly-rc/core/interfaces/i_rendered_element.ts +22 -0
- package/blockly-rc/core/interfaces/i_selectable.ts +34 -0
- package/blockly-rc/core/interfaces/i_selectable_toolbox_item.ts +63 -0
- package/blockly-rc/core/interfaces/i_serializable.ts +28 -0
- package/blockly-rc/core/interfaces/i_serializer.ts +55 -0
- package/blockly-rc/core/interfaces/i_styleable.ts +26 -0
- package/blockly-rc/core/interfaces/i_toolbox.ts +112 -0
- package/blockly-rc/core/interfaces/i_toolbox_item.ts +81 -0
- package/blockly-rc/core/interfaces/i_variable_backed_parameter_model.ts +23 -0
- package/blockly-rc/core/interfaces/i_variable_map.ts +65 -0
- package/blockly-rc/core/interfaces/i_variable_model.ts +57 -0
- package/blockly-rc/core/internal_constants.ts +47 -0
- package/blockly-rc/core/keyboard_nav/ast_node.ts +884 -0
- package/blockly-rc/core/keyboard_nav/basic_cursor.ts +223 -0
- package/blockly-rc/core/keyboard_nav/cursor.ts +138 -0
- package/blockly-rc/core/keyboard_nav/marker.ts +113 -0
- package/blockly-rc/core/keyboard_nav/tab_navigate_cursor.ts +46 -0
- package/blockly-rc/core/label_flyout_inflater.ts +59 -0
- package/blockly-rc/core/layer_manager.ts +186 -0
- package/blockly-rc/core/layers.ts +17 -0
- package/blockly-rc/core/main.ts +31 -0
- package/blockly-rc/core/marker_manager.ts +189 -0
- package/blockly-rc/core/menu.ts +463 -0
- package/blockly-rc/core/menuitem.ts +221 -0
- package/blockly-rc/core/metrics_manager.ts +486 -0
- package/blockly-rc/core/msg.ts +27 -0
- package/blockly-rc/core/names.ts +275 -0
- package/blockly-rc/core/observable_procedure_map.ts +66 -0
- package/blockly-rc/core/options.ts +377 -0
- package/blockly-rc/core/positionable_helpers.ts +186 -0
- package/blockly-rc/core/procedures.ts +510 -0
- package/blockly-rc/core/registry.ts +400 -0
- package/blockly-rc/core/render_management.ts +193 -0
- package/blockly-rc/core/rendered_connection.ts +571 -0
- package/blockly-rc/core/renderers/common/block_rendering.ts +120 -0
- package/blockly-rc/core/renderers/common/constants.ts +1198 -0
- package/blockly-rc/core/renderers/common/drawer.ts +518 -0
- package/blockly-rc/core/renderers/common/i_path_object.ts +137 -0
- package/blockly-rc/core/renderers/common/info.ts +767 -0
- package/blockly-rc/core/renderers/common/marker_svg.ts +765 -0
- package/blockly-rc/core/renderers/common/path_object.ts +324 -0
- package/blockly-rc/core/renderers/common/renderer.ts +281 -0
- package/blockly-rc/core/renderers/geras/constants.ts +46 -0
- package/blockly-rc/core/renderers/geras/drawer.ts +167 -0
- package/blockly-rc/core/renderers/geras/geras.ts +31 -0
- package/blockly-rc/core/renderers/geras/highlight_constants.ts +342 -0
- package/blockly-rc/core/renderers/geras/highlighter.ts +313 -0
- package/blockly-rc/core/renderers/geras/info.ts +478 -0
- package/blockly-rc/core/renderers/geras/measurables/inline_input.ts +37 -0
- package/blockly-rc/core/renderers/geras/measurables/statement_input.ts +36 -0
- package/blockly-rc/core/renderers/geras/path_object.ts +135 -0
- package/blockly-rc/core/renderers/geras/renderer.ts +124 -0
- package/blockly-rc/core/renderers/measurables/base.ts +41 -0
- package/blockly-rc/core/renderers/measurables/bottom_row.ts +104 -0
- package/blockly-rc/core/renderers/measurables/connection.ts +43 -0
- package/blockly-rc/core/renderers/measurables/external_value_input.ts +53 -0
- package/blockly-rc/core/renderers/measurables/field.ts +50 -0
- package/blockly-rc/core/renderers/measurables/hat.ts +33 -0
- package/blockly-rc/core/renderers/measurables/icon.ts +42 -0
- package/blockly-rc/core/renderers/measurables/in_row_spacer.ts +29 -0
- package/blockly-rc/core/renderers/measurables/inline_input.ts +63 -0
- package/blockly-rc/core/renderers/measurables/input_connection.ts +57 -0
- package/blockly-rc/core/renderers/measurables/input_row.ts +67 -0
- package/blockly-rc/core/renderers/measurables/jagged_edge.ts +28 -0
- package/blockly-rc/core/renderers/measurables/next_connection.ts +34 -0
- package/blockly-rc/core/renderers/measurables/output_connection.ts +43 -0
- package/blockly-rc/core/renderers/measurables/previous_connection.ts +34 -0
- package/blockly-rc/core/renderers/measurables/round_corner.ts +34 -0
- package/blockly-rc/core/renderers/measurables/row.ts +191 -0
- package/blockly-rc/core/renderers/measurables/spacer_row.ts +44 -0
- package/blockly-rc/core/renderers/measurables/square_corner.ts +32 -0
- package/blockly-rc/core/renderers/measurables/statement_input.ts +41 -0
- package/blockly-rc/core/renderers/measurables/top_row.ts +110 -0
- package/blockly-rc/core/renderers/measurables/types.ts +319 -0
- package/blockly-rc/core/renderers/thrasos/info.ts +328 -0
- package/blockly-rc/core/renderers/thrasos/renderer.ts +40 -0
- package/blockly-rc/core/renderers/thrasos/thrasos.ts +14 -0
- package/blockly-rc/core/renderers/zelos/constants.ts +877 -0
- package/blockly-rc/core/renderers/zelos/drawer.ts +274 -0
- package/blockly-rc/core/renderers/zelos/info.ts +652 -0
- package/blockly-rc/core/renderers/zelos/marker_svg.ts +145 -0
- package/blockly-rc/core/renderers/zelos/measurables/bottom_row.ts +44 -0
- package/blockly-rc/core/renderers/zelos/measurables/inputs.ts +41 -0
- package/blockly-rc/core/renderers/zelos/measurables/row_elements.ts +29 -0
- package/blockly-rc/core/renderers/zelos/measurables/top_row.ts +50 -0
- package/blockly-rc/core/renderers/zelos/path_object.ts +209 -0
- package/blockly-rc/core/renderers/zelos/renderer.ts +143 -0
- package/blockly-rc/core/renderers/zelos/zelos.ts +33 -0
- package/blockly-rc/core/scrollbar.ts +898 -0
- package/blockly-rc/core/scrollbar_pair.ts +349 -0
- package/blockly-rc/core/separator_flyout_inflater.ts +69 -0
- package/blockly-rc/core/serialization/blocks.ts +868 -0
- package/blockly-rc/core/serialization/exceptions.ts +112 -0
- package/blockly-rc/core/serialization/priorities.ts +25 -0
- package/blockly-rc/core/serialization/procedures.ts +158 -0
- package/blockly-rc/core/serialization/registry.ts +30 -0
- package/blockly-rc/core/serialization/variables.ts +68 -0
- package/blockly-rc/core/serialization/workspace_comments.ts +143 -0
- package/blockly-rc/core/serialization/workspaces.ts +94 -0
- package/blockly-rc/core/serialization.ts +32 -0
- package/blockly-rc/core/shortcut_items.ts +338 -0
- package/blockly-rc/core/shortcut_registry.ts +368 -0
- package/blockly-rc/core/sprites.ts +15 -0
- package/blockly-rc/core/theme/classic.ts +40 -0
- package/blockly-rc/core/theme/themes.ts +12 -0
- package/blockly-rc/core/theme/zelos.ts +80 -0
- package/blockly-rc/core/theme.ts +232 -0
- package/blockly-rc/core/theme_manager.ts +192 -0
- package/blockly-rc/core/toolbox/category.ts +739 -0
- package/blockly-rc/core/toolbox/collapsible_category.ts +288 -0
- package/blockly-rc/core/toolbox/separator.ts +105 -0
- package/blockly-rc/core/toolbox/toolbox.ts +1134 -0
- package/blockly-rc/core/toolbox/toolbox_item.ts +152 -0
- package/blockly-rc/core/tooltip.ts +466 -0
- package/blockly-rc/core/touch.ts +155 -0
- package/blockly-rc/core/trashcan.ts +748 -0
- package/blockly-rc/core/utils/aria.ts +144 -0
- package/blockly-rc/core/utils/array.ts +24 -0
- package/blockly-rc/core/utils/colour.ts +265 -0
- package/blockly-rc/core/utils/coordinate.ts +129 -0
- package/blockly-rc/core/utils/deprecation.ts +47 -0
- package/blockly-rc/core/utils/dom.ts +356 -0
- package/blockly-rc/core/utils/idgenerator.ts +70 -0
- package/blockly-rc/core/utils/keycodes.ts +154 -0
- package/blockly-rc/core/utils/math.ts +50 -0
- package/blockly-rc/core/utils/metrics.ts +86 -0
- package/blockly-rc/core/utils/object.ts +28 -0
- package/blockly-rc/core/utils/parsing.ts +287 -0
- package/blockly-rc/core/utils/rect.ts +69 -0
- package/blockly-rc/core/utils/size.ts +62 -0
- package/blockly-rc/core/utils/string.ts +289 -0
- package/blockly-rc/core/utils/style.ts +219 -0
- package/blockly-rc/core/utils/svg.ts +84 -0
- package/blockly-rc/core/utils/svg_math.ts +208 -0
- package/blockly-rc/core/utils/svg_paths.ts +133 -0
- package/blockly-rc/core/utils/toolbox.ts +419 -0
- package/blockly-rc/core/utils/useragent.ts +86 -0
- package/blockly-rc/core/utils/xml.ts +165 -0
- package/blockly-rc/core/utils.ts +59 -0
- package/blockly-rc/core/variable_map.ts +437 -0
- package/blockly-rc/core/variable_model.ts +149 -0
- package/blockly-rc/core/variables.ts +773 -0
- package/blockly-rc/core/variables_dynamic.ts +142 -0
- package/blockly-rc/core/widgetdiv.ts +319 -0
- package/blockly-rc/core/workspace.ts +957 -0
- package/blockly-rc/core/workspace_audio.ts +171 -0
- package/blockly-rc/core/workspace_dragger.ts +97 -0
- package/blockly-rc/core/workspace_svg.ts +2519 -0
- package/blockly-rc/core/xml.ts +1133 -0
- package/blockly-rc/core/zoom_controls.ts +492 -0
- package/blockly-rc/demos/blockfactory/analytics.js +195 -0
- package/blockly-rc/demos/blockfactory/app_controller.js +726 -0
- package/blockly-rc/demos/blockfactory/block_definition_extractor.js +742 -0
- package/blockly-rc/demos/blockfactory/block_exporter_controller.js +311 -0
- package/blockly-rc/demos/blockfactory/block_exporter_tools.js +212 -0
- package/blockly-rc/demos/blockfactory/block_exporter_view.js +101 -0
- package/blockly-rc/demos/blockfactory/block_library_controller.js +325 -0
- package/blockly-rc/demos/blockfactory/block_library_storage.js +149 -0
- package/blockly-rc/demos/blockfactory/block_library_view.js +178 -0
- package/blockly-rc/demos/blockfactory/block_option.js +151 -0
- package/blockly-rc/demos/blockfactory/blocks.js +916 -0
- package/blockly-rc/demos/blockfactory/cp.css +46 -0
- package/blockly-rc/demos/blockfactory/cp.js +179 -0
- package/blockly-rc/demos/blockfactory/factory.css +586 -0
- package/blockly-rc/demos/blockfactory/factory.js +337 -0
- package/blockly-rc/demos/blockfactory/factory_utils.js +1036 -0
- package/blockly-rc/demos/blockfactory/icon.png +0 -0
- package/blockly-rc/demos/blockfactory/index.html +767 -0
- package/blockly-rc/demos/blockfactory/link.png +0 -0
- package/blockly-rc/demos/blockfactory/standard_categories.js +384 -0
- package/blockly-rc/demos/blockfactory/workspacefactory/wfactory_controller.js +1332 -0
- package/blockly-rc/demos/blockfactory/workspacefactory/wfactory_generator.js +224 -0
- package/blockly-rc/demos/blockfactory/workspacefactory/wfactory_init.js +541 -0
- package/blockly-rc/demos/blockfactory/workspacefactory/wfactory_model.js +548 -0
- package/blockly-rc/demos/blockfactory/workspacefactory/wfactory_view.js +424 -0
- package/blockly-rc/demos/code/code.js +626 -0
- package/blockly-rc/demos/code/icon.png +0 -0
- package/blockly-rc/demos/code/icons.png +0 -0
- package/blockly-rc/demos/code/index.html +359 -0
- package/blockly-rc/demos/code/msg/ar.js +24 -0
- package/blockly-rc/demos/code/msg/be-tarask.js +24 -0
- package/blockly-rc/demos/code/msg/br.js +24 -0
- package/blockly-rc/demos/code/msg/ca.js +24 -0
- package/blockly-rc/demos/code/msg/cs.js +24 -0
- package/blockly-rc/demos/code/msg/da.js +24 -0
- package/blockly-rc/demos/code/msg/de.js +24 -0
- package/blockly-rc/demos/code/msg/el.js +24 -0
- package/blockly-rc/demos/code/msg/en.js +24 -0
- package/blockly-rc/demos/code/msg/es.js +24 -0
- package/blockly-rc/demos/code/msg/et.js +24 -0
- package/blockly-rc/demos/code/msg/fa.js +24 -0
- package/blockly-rc/demos/code/msg/fr.js +24 -0
- package/blockly-rc/demos/code/msg/he.js +24 -0
- package/blockly-rc/demos/code/msg/hr.js +24 -0
- package/blockly-rc/demos/code/msg/hrx.js +24 -0
- package/blockly-rc/demos/code/msg/hu.js +24 -0
- package/blockly-rc/demos/code/msg/ia.js +24 -0
- package/blockly-rc/demos/code/msg/is.js +24 -0
- package/blockly-rc/demos/code/msg/it.js +24 -0
- package/blockly-rc/demos/code/msg/ja.js +24 -0
- package/blockly-rc/demos/code/msg/kab.js +24 -0
- package/blockly-rc/demos/code/msg/ko.js +24 -0
- package/blockly-rc/demos/code/msg/mk.js +24 -0
- package/blockly-rc/demos/code/msg/ms.js +24 -0
- package/blockly-rc/demos/code/msg/nb.js +24 -0
- package/blockly-rc/demos/code/msg/nl.js +24 -0
- package/blockly-rc/demos/code/msg/oc.js +24 -0
- package/blockly-rc/demos/code/msg/pl.js +24 -0
- package/blockly-rc/demos/code/msg/pms.js +24 -0
- package/blockly-rc/demos/code/msg/pt-br.js +24 -0
- package/blockly-rc/demos/code/msg/ro.js +24 -0
- package/blockly-rc/demos/code/msg/ru.js +24 -0
- package/blockly-rc/demos/code/msg/sc.js +24 -0
- package/blockly-rc/demos/code/msg/sk.js +24 -0
- package/blockly-rc/demos/code/msg/sr.js +24 -0
- package/blockly-rc/demos/code/msg/sv.js +24 -0
- package/blockly-rc/demos/code/msg/ta.js +24 -0
- package/blockly-rc/demos/code/msg/th.js +24 -0
- package/blockly-rc/demos/code/msg/tlh.js +24 -0
- package/blockly-rc/demos/code/msg/tr.js +24 -0
- package/blockly-rc/demos/code/msg/uk.js +24 -0
- package/blockly-rc/demos/code/msg/vi.js +24 -0
- package/blockly-rc/demos/code/msg/zh-hans.js +24 -0
- package/blockly-rc/demos/code/msg/zh-hant.js +24 -0
- package/blockly-rc/demos/code/style.css +184 -0
- package/blockly-rc/demos/index.html +68 -0
- package/blockly-rc/demos/minimap/icon.png +0 -0
- package/blockly-rc/demos/minimap/index.html +91 -0
- package/blockly-rc/demos/minimap/minimap.js +302 -0
- package/blockly-rc/demos/mobile/README.md +53 -0
- package/blockly-rc/demos/mobile/android/README.md +45 -0
- package/blockly-rc/demos/mobile/android/app/build.gradle +64 -0
- package/blockly-rc/demos/mobile/android/app/proguard-rules.pro +21 -0
- package/blockly-rc/demos/mobile/android/app/src/androidTest/java/com/example/blocklywebview/ExampleInstrumentedTest.java +26 -0
- package/blockly-rc/demos/mobile/android/app/src/main/AndroidManifest.xml +21 -0
- package/blockly-rc/demos/mobile/android/app/src/main/java/com/google/blockly/android/webview/BlocklyWebViewFragment.java +40 -0
- package/blockly-rc/demos/mobile/android/app/src/main/java/com/google/blockly/android/webview/JsDialogHelper.java +150 -0
- package/blockly-rc/demos/mobile/android/app/src/main/java/com/google/blockly/android/webview/WebChromeClient.java +32 -0
- package/blockly-rc/demos/mobile/android/app/src/main/java/com/google/blockly/android/webview/demo/MainActivity.java +18 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/drawable/ic_launcher_background.xml +74 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +34 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/layout/activity_main.xml +17 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/layout/js_prompt.xml +37 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/values/colors.xml +6 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/values/js_dialog_helper.xml +7 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/values/strings.xml +3 -0
- package/blockly-rc/demos/mobile/android/app/src/main/res/values/styles.xml +11 -0
- package/blockly-rc/demos/mobile/android/app/src/test/java/com/example/blocklywebview/ExampleUnitTest.java +17 -0
- package/blockly-rc/demos/mobile/android/build.gradle +27 -0
- package/blockly-rc/demos/mobile/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/blockly-rc/demos/mobile/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/blockly-rc/demos/mobile/android/gradle.properties +13 -0
- package/blockly-rc/demos/mobile/android/gradlew +172 -0
- package/blockly-rc/demos/mobile/android/gradlew.bat +84 -0
- package/blockly-rc/demos/mobile/android/settings.gradle +1 -0
- package/blockly-rc/demos/mobile/html/index.html +31 -0
- package/blockly-rc/demos/mobile/html/ln_resources.sh +22 -0
- package/blockly-rc/demos/mobile/html/toolbox_standard.js +333 -0
- package/blockly-rc/demos/mobile/ios/Blockly WebView/AppDelegate.swift +46 -0
- package/blockly-rc/demos/mobile/ios/Blockly WebView/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
- package/blockly-rc/demos/mobile/ios/Blockly WebView/Assets.xcassets/Contents.json +6 -0
- package/blockly-rc/demos/mobile/ios/Blockly WebView/Base.lproj/LaunchScreen.storyboard +25 -0
- package/blockly-rc/demos/mobile/ios/Blockly WebView/Base.lproj/Main.storyboard +44 -0
- package/blockly-rc/demos/mobile/ios/Blockly WebView/Info.plist +45 -0
- package/blockly-rc/demos/mobile/ios/Blockly WebView/ViewController.swift +110 -0
- package/blockly-rc/demos/mobile/ios/Blockly WebView.xcodeproj/project.pbxproj +390 -0
- package/blockly-rc/demos/mobile/ios/Blockly WebView.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/blockly-rc/demos/mobile/ios/Blockly WebView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/blockly-rc/demos/mobile/ios/cp_resources.sh +21 -0
- package/blockly-rc/demos/storage/icon.png +0 -0
- package/blockly-rc/demos/storage/index.html +104 -0
- package/blockly-rc/generators/dart/dart_generator.ts +321 -0
- package/blockly-rc/generators/dart/lists.ts +525 -0
- package/blockly-rc/generators/dart/logic.ts +155 -0
- package/blockly-rc/generators/dart/loops.ts +217 -0
- package/blockly-rc/generators/dart/math.ts +559 -0
- package/blockly-rc/generators/dart/procedures.ts +138 -0
- package/blockly-rc/generators/dart/text.ts +405 -0
- package/blockly-rc/generators/dart/variables.ts +32 -0
- package/blockly-rc/generators/dart/variables_dynamic.ts +17 -0
- package/blockly-rc/generators/dart.ts +50 -0
- package/blockly-rc/generators/javascript/javascript_generator.ts +346 -0
- package/blockly-rc/generators/javascript/lists.ts +465 -0
- package/blockly-rc/generators/javascript/logic.ts +153 -0
- package/blockly-rc/generators/javascript/loops.ts +245 -0
- package/blockly-rc/generators/javascript/math.ts +450 -0
- package/blockly-rc/generators/javascript/procedures.ts +142 -0
- package/blockly-rc/generators/javascript/text.ts +418 -0
- package/blockly-rc/generators/javascript/variables.ts +32 -0
- package/blockly-rc/generators/javascript/variables_dynamic.ts +17 -0
- package/blockly-rc/generators/javascript.ts +46 -0
- package/blockly-rc/generators/lua/lists.ts +445 -0
- package/blockly-rc/generators/lua/logic.ts +142 -0
- package/blockly-rc/generators/lua/loops.ts +192 -0
- package/blockly-rc/generators/lua/lua_generator.ts +225 -0
- package/blockly-rc/generators/lua/math.ts +473 -0
- package/blockly-rc/generators/lua/procedures.ts +144 -0
- package/blockly-rc/generators/lua/text.ts +380 -0
- package/blockly-rc/generators/lua/variables.ts +31 -0
- package/blockly-rc/generators/lua/variables_dynamic.ts +17 -0
- package/blockly-rc/generators/lua.ts +44 -0
- package/blockly-rc/generators/php/lists.ts +585 -0
- package/blockly-rc/generators/php/logic.ts +155 -0
- package/blockly-rc/generators/php/loops.ts +218 -0
- package/blockly-rc/generators/php/math.ts +408 -0
- package/blockly-rc/generators/php/php_generator.ts +320 -0
- package/blockly-rc/generators/php/procedures.ts +159 -0
- package/blockly-rc/generators/php/text.ts +315 -0
- package/blockly-rc/generators/php/variables.ts +32 -0
- package/blockly-rc/generators/php/variables_dynamic.ts +17 -0
- package/blockly-rc/generators/php.ts +46 -0
- package/blockly-rc/generators/python/lists.ts +398 -0
- package/blockly-rc/generators/python/logic.ts +148 -0
- package/blockly-rc/generators/python/loops.ts +251 -0
- package/blockly-rc/generators/python/math.ts +434 -0
- package/blockly-rc/generators/python/procedures.ts +159 -0
- package/blockly-rc/generators/python/python_generator.ts +355 -0
- package/blockly-rc/generators/python/text.ts +338 -0
- package/blockly-rc/generators/python/variables.ts +31 -0
- package/blockly-rc/generators/python/variables_dynamic.ts +17 -0
- package/blockly-rc/generators/python.ts +51 -0
- package/blockly-rc/gulpfile.js +54 -0
- package/blockly-rc/jsconfig.json +7 -0
- package/blockly-rc/media/1x1.gif +0 -0
- package/blockly-rc/media/click.mp3 +0 -0
- package/blockly-rc/media/click.ogg +0 -0
- package/blockly-rc/media/click.wav +0 -0
- package/blockly-rc/media/delete-icon.svg +1 -0
- package/blockly-rc/media/delete.mp3 +0 -0
- package/blockly-rc/media/delete.ogg +0 -0
- package/blockly-rc/media/delete.wav +0 -0
- package/blockly-rc/media/disconnect.mp3 +0 -0
- package/blockly-rc/media/disconnect.ogg +0 -0
- package/blockly-rc/media/disconnect.wav +0 -0
- package/blockly-rc/media/dropdown-arrow.svg +1 -0
- package/blockly-rc/media/foldout-icon.svg +1 -0
- package/blockly-rc/media/handclosed.cur +0 -0
- package/blockly-rc/media/handdelete.cur +0 -0
- package/blockly-rc/media/handopen.cur +0 -0
- package/blockly-rc/media/pilcrow.png +0 -0
- package/blockly-rc/media/quote0.png +0 -0
- package/blockly-rc/media/quote1.png +0 -0
- package/blockly-rc/media/resize-handle.svg +3 -0
- package/blockly-rc/media/sprites.png +0 -0
- package/blockly-rc/media/sprites.svg +74 -0
- package/blockly-rc/msg/json/README.md +33 -0
- package/blockly-rc/msg/json/ab.json +222 -0
- package/blockly-rc/msg/json/ace.json +7 -0
- package/blockly-rc/msg/json/af.json +34 -0
- package/blockly-rc/msg/json/am.json +30 -0
- package/blockly-rc/msg/json/ar.json +355 -0
- package/blockly-rc/msg/json/ast.json +10 -0
- package/blockly-rc/msg/json/az.json +332 -0
- package/blockly-rc/msg/json/ba.json +211 -0
- package/blockly-rc/msg/json/bcc.json +290 -0
- package/blockly-rc/msg/json/be-tarask.json +334 -0
- package/blockly-rc/msg/json/be.json +324 -0
- package/blockly-rc/msg/json/bg.json +345 -0
- package/blockly-rc/msg/json/bn.json +189 -0
- package/blockly-rc/msg/json/br.json +334 -0
- package/blockly-rc/msg/json/bs.json +166 -0
- package/blockly-rc/msg/json/ca.json +341 -0
- package/blockly-rc/msg/json/cdo.json +6 -0
- package/blockly-rc/msg/json/ce.json +326 -0
- package/blockly-rc/msg/json/constants.json +12 -0
- package/blockly-rc/msg/json/cs.json +343 -0
- package/blockly-rc/msg/json/da.json +346 -0
- package/blockly-rc/msg/json/de.json +369 -0
- package/blockly-rc/msg/json/diq.json +258 -0
- package/blockly-rc/msg/json/dtp.json +198 -0
- package/blockly-rc/msg/json/dty.json +97 -0
- package/blockly-rc/msg/json/ee.json +160 -0
- package/blockly-rc/msg/json/el.json +356 -0
- package/blockly-rc/msg/json/en-gb.json +199 -0
- package/blockly-rc/msg/json/en.json +400 -0
- package/blockly-rc/msg/json/eo.json +337 -0
- package/blockly-rc/msg/json/es.json +358 -0
- package/blockly-rc/msg/json/et.json +326 -0
- package/blockly-rc/msg/json/eu.json +219 -0
- package/blockly-rc/msg/json/fa.json +341 -0
- package/blockly-rc/msg/json/fi.json +350 -0
- package/blockly-rc/msg/json/fo.json +46 -0
- package/blockly-rc/msg/json/fr.json +373 -0
- package/blockly-rc/msg/json/frr.json +6 -0
- package/blockly-rc/msg/json/gl.json +338 -0
- package/blockly-rc/msg/json/gn.json +54 -0
- package/blockly-rc/msg/json/gor.json +87 -0
- package/blockly-rc/msg/json/ha.json +313 -0
- package/blockly-rc/msg/json/hak.json +17 -0
- package/blockly-rc/msg/json/he.json +354 -0
- package/blockly-rc/msg/json/hi.json +318 -0
- package/blockly-rc/msg/json/hr.json +327 -0
- package/blockly-rc/msg/json/hrx.json +287 -0
- package/blockly-rc/msg/json/hsb.json +128 -0
- package/blockly-rc/msg/json/hu.json +349 -0
- package/blockly-rc/msg/json/hy.json +337 -0
- package/blockly-rc/msg/json/ia.json +337 -0
- package/blockly-rc/msg/json/id.json +335 -0
- package/blockly-rc/msg/json/ig.json +323 -0
- package/blockly-rc/msg/json/inh.json +80 -0
- package/blockly-rc/msg/json/is.json +331 -0
- package/blockly-rc/msg/json/it.json +346 -0
- package/blockly-rc/msg/json/ja.json +361 -0
- package/blockly-rc/msg/json/ka.json +14 -0
- package/blockly-rc/msg/json/kab.json +323 -0
- package/blockly-rc/msg/json/kbd-cyrl.json +84 -0
- package/blockly-rc/msg/json/km.json +29 -0
- package/blockly-rc/msg/json/kn.json +332 -0
- package/blockly-rc/msg/json/ko.json +372 -0
- package/blockly-rc/msg/json/ksh.json +43 -0
- package/blockly-rc/msg/json/ku-latn.json +41 -0
- package/blockly-rc/msg/json/ky.json +71 -0
- package/blockly-rc/msg/json/la.json +6 -0
- package/blockly-rc/msg/json/lb.json +156 -0
- package/blockly-rc/msg/json/lki.json +282 -0
- package/blockly-rc/msg/json/lo.json +92 -0
- package/blockly-rc/msg/json/lrc.json +123 -0
- package/blockly-rc/msg/json/lt.json +321 -0
- package/blockly-rc/msg/json/lv.json +324 -0
- package/blockly-rc/msg/json/mg.json +58 -0
- package/blockly-rc/msg/json/mk.json +178 -0
- package/blockly-rc/msg/json/ml.json +35 -0
- package/blockly-rc/msg/json/mnw.json +90 -0
- package/blockly-rc/msg/json/ms.json +300 -0
- package/blockly-rc/msg/json/my.json +57 -0
- package/blockly-rc/msg/json/mzn.json +6 -0
- package/blockly-rc/msg/json/nb.json +330 -0
- package/blockly-rc/msg/json/ne.json +247 -0
- package/blockly-rc/msg/json/nl.json +357 -0
- package/blockly-rc/msg/json/oc.json +194 -0
- package/blockly-rc/msg/json/olo.json +37 -0
- package/blockly-rc/msg/json/pa.json +69 -0
- package/blockly-rc/msg/json/pl.json +357 -0
- package/blockly-rc/msg/json/pms.json +324 -0
- package/blockly-rc/msg/json/ps.json +50 -0
- package/blockly-rc/msg/json/pt-br.json +369 -0
- package/blockly-rc/msg/json/pt.json +358 -0
- package/blockly-rc/msg/json/qqq.json +406 -0
- package/blockly-rc/msg/json/ro.json +333 -0
- package/blockly-rc/msg/json/ru.json +363 -0
- package/blockly-rc/msg/json/sc.json +283 -0
- package/blockly-rc/msg/json/sco.json +11 -0
- package/blockly-rc/msg/json/sd.json +158 -0
- package/blockly-rc/msg/json/shn.json +109 -0
- package/blockly-rc/msg/json/si.json +16 -0
- package/blockly-rc/msg/json/sk.json +332 -0
- package/blockly-rc/msg/json/skr-arab.json +117 -0
- package/blockly-rc/msg/json/sl.json +355 -0
- package/blockly-rc/msg/json/smn.json +133 -0
- package/blockly-rc/msg/json/sq.json +343 -0
- package/blockly-rc/msg/json/sr-latn.json +324 -0
- package/blockly-rc/msg/json/sr.json +348 -0
- package/blockly-rc/msg/json/sv.json +347 -0
- package/blockly-rc/msg/json/sw.json +12 -0
- package/blockly-rc/msg/json/synonyms.json +22 -0
- package/blockly-rc/msg/json/ta.json +306 -0
- package/blockly-rc/msg/json/tcy.json +316 -0
- package/blockly-rc/msg/json/tdd.json +109 -0
- package/blockly-rc/msg/json/te.json +101 -0
- package/blockly-rc/msg/json/th.json +333 -0
- package/blockly-rc/msg/json/ti.json +50 -0
- package/blockly-rc/msg/json/tl.json +129 -0
- package/blockly-rc/msg/json/tlh.json +179 -0
- package/blockly-rc/msg/json/tr.json +369 -0
- package/blockly-rc/msg/json/ug-arab.json +132 -0
- package/blockly-rc/msg/json/uk.json +345 -0
- package/blockly-rc/msg/json/ur.json +117 -0
- package/blockly-rc/msg/json/uz.json +36 -0
- package/blockly-rc/msg/json/vi.json +345 -0
- package/blockly-rc/msg/json/xmf.json +96 -0
- package/blockly-rc/msg/json/yo.json +316 -0
- package/blockly-rc/msg/json/zgh.json +83 -0
- package/blockly-rc/msg/json/zh-hans.json +372 -0
- package/blockly-rc/msg/json/zh-hant.json +362 -0
- package/blockly-rc/msg/messages.js +1616 -0
- package/blockly-rc/package-lock.json +12324 -0
- package/blockly-rc/package.json +149 -0
- package/blockly-rc/patches/@microsoft+api-documenter+7.22.4.patch +81 -0
- package/blockly-rc/scripts/goog_module/convert-file.sh +406 -0
- package/blockly-rc/scripts/gulpfiles/appengine_tasks.js +195 -0
- package/blockly-rc/scripts/gulpfiles/build_tasks.js +752 -0
- package/blockly-rc/scripts/gulpfiles/config.js +41 -0
- package/blockly-rc/scripts/gulpfiles/docs_tasks.js +147 -0
- package/blockly-rc/scripts/gulpfiles/git_tasks.js +181 -0
- package/blockly-rc/scripts/gulpfiles/helper_tasks.js +19 -0
- package/blockly-rc/scripts/gulpfiles/package_tasks.js +262 -0
- package/blockly-rc/scripts/gulpfiles/release_tasks.js +183 -0
- package/blockly-rc/scripts/gulpfiles/test_tasks.js +405 -0
- package/blockly-rc/scripts/helpers.js +74 -0
- package/blockly-rc/scripts/i18n/common.py +233 -0
- package/blockly-rc/scripts/i18n/create_messages.py +167 -0
- package/blockly-rc/scripts/i18n/dedup_json.py +72 -0
- package/blockly-rc/scripts/i18n/js_to_json.py +135 -0
- package/blockly-rc/scripts/i18n/tests.py +46 -0
- package/blockly-rc/scripts/migration/cjs2esm +162 -0
- package/blockly-rc/scripts/migration/js2ts +168 -0
- package/blockly-rc/scripts/migration/renamings.json5 +1599 -0
- package/blockly-rc/scripts/package/README.md +93 -0
- package/blockly-rc/scripts/package/core-node.js +31 -0
- package/blockly-rc/scripts/package/index.js +23 -0
- package/blockly-rc/scripts/package/templates/umd-msg.template +16 -0
- package/blockly-rc/scripts/package/templates/umd.template +13 -0
- package/blockly-rc/scripts/themes/blockStyles_example.json +11 -0
- package/blockly-rc/scripts/themes/create_blockStyles.py +181 -0
- package/blockly-rc/scripts/tsick.js +86 -0
- package/blockly-rc/tests/.eslintrc.json +10 -0
- package/blockly-rc/tests/browser/.eslintrc.json +29 -0
- package/blockly-rc/tests/browser/.mocharc.js +6 -0
- package/blockly-rc/tests/browser/test/basic_block_factory_test.mjs +44 -0
- package/blockly-rc/tests/browser/test/basic_block_test.mjs +39 -0
- package/blockly-rc/tests/browser/test/basic_playground_test.mjs +198 -0
- package/blockly-rc/tests/browser/test/block_undo_test.mjs +50 -0
- package/blockly-rc/tests/browser/test/delete_blocks_test.mjs +211 -0
- package/blockly-rc/tests/browser/test/extensive_test.mjs +195 -0
- package/blockly-rc/tests/browser/test/field_edits_test.mjs +61 -0
- package/blockly-rc/tests/browser/test/hooks.mjs +23 -0
- package/blockly-rc/tests/browser/test/mutator_test.mjs +88 -0
- package/blockly-rc/tests/browser/test/procedure_test.mjs +109 -0
- package/blockly-rc/tests/browser/test/test_setup.mjs +589 -0
- package/blockly-rc/tests/browser/test/toolbox_drag_test.mjs +207 -0
- package/blockly-rc/tests/browser/test/workspace_comment_test.mjs +224 -0
- package/blockly-rc/tests/compile/index.html +43 -0
- package/blockly-rc/tests/compile/main.js +53 -0
- package/blockly-rc/tests/compile/test_blocks.js +47 -0
- package/blockly-rc/tests/compile/webdriver.js +81 -0
- package/blockly-rc/tests/generators/functions.xml +561 -0
- package/blockly-rc/tests/generators/golden/generated.dart +1604 -0
- package/blockly-rc/tests/generators/golden/generated.js +1552 -0
- package/blockly-rc/tests/generators/golden/generated.lua +1828 -0
- package/blockly-rc/tests/generators/golden/generated.php +1611 -0
- package/blockly-rc/tests/generators/golden/generated.py +1407 -0
- package/blockly-rc/tests/generators/index.html +405 -0
- package/blockly-rc/tests/generators/lists.xml +8675 -0
- package/blockly-rc/tests/generators/logic.xml +1019 -0
- package/blockly-rc/tests/generators/loops1.xml +345 -0
- package/blockly-rc/tests/generators/loops2.xml +891 -0
- package/blockly-rc/tests/generators/loops3.xml +735 -0
- package/blockly-rc/tests/generators/math.xml +2077 -0
- package/blockly-rc/tests/generators/text.xml +4651 -0
- package/blockly-rc/tests/generators/unittest.js +103 -0
- package/blockly-rc/tests/generators/unittest_dart.js +163 -0
- package/blockly-rc/tests/generators/unittest_javascript.js +167 -0
- package/blockly-rc/tests/generators/unittest_lua.js +165 -0
- package/blockly-rc/tests/generators/unittest_php.js +154 -0
- package/blockly-rc/tests/generators/unittest_python.js +138 -0
- package/blockly-rc/tests/generators/variables.xml +68 -0
- package/blockly-rc/tests/generators/webdriver.js +123 -0
- package/blockly-rc/tests/media/200px.png +0 -0
- package/blockly-rc/tests/media/30px.png +0 -0
- package/blockly-rc/tests/media/50px.png +0 -0
- package/blockly-rc/tests/media/a.png +0 -0
- package/blockly-rc/tests/media/arrow.png +0 -0
- package/blockly-rc/tests/media/b.png +0 -0
- package/blockly-rc/tests/media/c.png +0 -0
- package/blockly-rc/tests/media/d.png +0 -0
- package/blockly-rc/tests/media/e.png +0 -0
- package/blockly-rc/tests/media/f.png +0 -0
- package/blockly-rc/tests/media/g.png +0 -0
- package/blockly-rc/tests/media/h.png +0 -0
- package/blockly-rc/tests/media/i.png +0 -0
- package/blockly-rc/tests/media/j.png +0 -0
- package/blockly-rc/tests/media/k.png +0 -0
- package/blockly-rc/tests/media/l.png +0 -0
- package/blockly-rc/tests/media/m.png +0 -0
- package/blockly-rc/tests/migration/renamings.schema.json +59 -0
- package/blockly-rc/tests/migration/validate-renamings.mjs +60 -0
- package/blockly-rc/tests/mocha/.eslintrc.json +21 -0
- package/blockly-rc/tests/mocha/.mocharc.js +6 -0
- package/blockly-rc/tests/mocha/astnode_test.js +850 -0
- package/blockly-rc/tests/mocha/block_json_test.js +777 -0
- package/blockly-rc/tests/mocha/block_test.js +2743 -0
- package/blockly-rc/tests/mocha/blocks/lists_test.js +196 -0
- package/blockly-rc/tests/mocha/blocks/logic_ternary_test.js +320 -0
- package/blockly-rc/tests/mocha/blocks/loops_test.js +56 -0
- package/blockly-rc/tests/mocha/blocks/procedures_test.js +2495 -0
- package/blockly-rc/tests/mocha/blocks/variables_test.js +311 -0
- package/blockly-rc/tests/mocha/clipboard_test.js +136 -0
- package/blockly-rc/tests/mocha/comment_deserialization_test.js +122 -0
- package/blockly-rc/tests/mocha/comment_test.js +170 -0
- package/blockly-rc/tests/mocha/comment_view_test.js +188 -0
- package/blockly-rc/tests/mocha/connection_checker_test.js +666 -0
- package/blockly-rc/tests/mocha/connection_db_test.js +362 -0
- package/blockly-rc/tests/mocha/connection_test.js +3738 -0
- package/blockly-rc/tests/mocha/contextmenu_items_test.js +488 -0
- package/blockly-rc/tests/mocha/contextmenu_test.js +71 -0
- package/blockly-rc/tests/mocha/cursor_test.js +134 -0
- package/blockly-rc/tests/mocha/dropdowndiv_test.js +116 -0
- package/blockly-rc/tests/mocha/event_block_change_test.js +126 -0
- package/blockly-rc/tests/mocha/event_block_create_test.js +109 -0
- package/blockly-rc/tests/mocha/event_block_delete_test.js +55 -0
- package/blockly-rc/tests/mocha/event_block_drag_test.js +36 -0
- package/blockly-rc/tests/mocha/event_block_field_intermediate_change_test.js +67 -0
- package/blockly-rc/tests/mocha/event_block_move_test.js +39 -0
- package/blockly-rc/tests/mocha/event_bubble_open_test.js +42 -0
- package/blockly-rc/tests/mocha/event_click_test.js +40 -0
- package/blockly-rc/tests/mocha/event_comment_change_test.js +39 -0
- package/blockly-rc/tests/mocha/event_comment_collapse_test.js +34 -0
- package/blockly-rc/tests/mocha/event_comment_create_test.js +38 -0
- package/blockly-rc/tests/mocha/event_comment_delete_test.js +38 -0
- package/blockly-rc/tests/mocha/event_comment_drag_test.js +35 -0
- package/blockly-rc/tests/mocha/event_comment_move_test.js +40 -0
- package/blockly-rc/tests/mocha/event_comment_resize_test.js +38 -0
- package/blockly-rc/tests/mocha/event_marker_move_test.js +44 -0
- package/blockly-rc/tests/mocha/event_selected_test.js +41 -0
- package/blockly-rc/tests/mocha/event_test.js +1578 -0
- package/blockly-rc/tests/mocha/event_theme_change_test.js +36 -0
- package/blockly-rc/tests/mocha/event_toolbox_item_select_test.js +64 -0
- package/blockly-rc/tests/mocha/event_trashcan_open_test.js +36 -0
- package/blockly-rc/tests/mocha/event_var_create_test.js +54 -0
- package/blockly-rc/tests/mocha/event_var_delete_test.js +54 -0
- package/blockly-rc/tests/mocha/event_var_rename_test.js +39 -0
- package/blockly-rc/tests/mocha/event_var_type_change_test.js +43 -0
- package/blockly-rc/tests/mocha/event_viewport_test.js +39 -0
- package/blockly-rc/tests/mocha/extensions_test.js +613 -0
- package/blockly-rc/tests/mocha/field_checkbox_test.js +299 -0
- package/blockly-rc/tests/mocha/field_colour_test.js +395 -0
- package/blockly-rc/tests/mocha/field_dropdown_test.js +282 -0
- package/blockly-rc/tests/mocha/field_image_test.js +241 -0
- package/blockly-rc/tests/mocha/field_label_serializable_test.js +252 -0
- package/blockly-rc/tests/mocha/field_label_test.js +226 -0
- package/blockly-rc/tests/mocha/field_number_test.js +505 -0
- package/blockly-rc/tests/mocha/field_registry_test.js +116 -0
- package/blockly-rc/tests/mocha/field_test.js +822 -0
- package/blockly-rc/tests/mocha/field_textinput_test.js +297 -0
- package/blockly-rc/tests/mocha/field_variable_test.js +611 -0
- package/blockly-rc/tests/mocha/flyout_test.js +638 -0
- package/blockly-rc/tests/mocha/generator_test.js +233 -0
- package/blockly-rc/tests/mocha/gesture_test.js +97 -0
- package/blockly-rc/tests/mocha/icon_test.js +369 -0
- package/blockly-rc/tests/mocha/index.html +229 -0
- package/blockly-rc/tests/mocha/input_test.js +296 -0
- package/blockly-rc/tests/mocha/insertion_marker_manager_test.js +443 -0
- package/blockly-rc/tests/mocha/insertion_marker_test.js +432 -0
- package/blockly-rc/tests/mocha/jso_deserialization_test.js +849 -0
- package/blockly-rc/tests/mocha/jso_serialization_test.js +1067 -0
- package/blockly-rc/tests/mocha/json_test.js +315 -0
- package/blockly-rc/tests/mocha/keydown_test.js +364 -0
- package/blockly-rc/tests/mocha/layering_test.js +95 -0
- package/blockly-rc/tests/mocha/metrics_test.js +671 -0
- package/blockly-rc/tests/mocha/mutator_test.js +87 -0
- package/blockly-rc/tests/mocha/names_test.js +97 -0
- package/blockly-rc/tests/mocha/old_workspace_comment_test.js +256 -0
- package/blockly-rc/tests/mocha/procedure_map_test.js +57 -0
- package/blockly-rc/tests/mocha/registry_test.js +281 -0
- package/blockly-rc/tests/mocha/render_management_test.js +127 -0
- package/blockly-rc/tests/mocha/serializer_test.js +2104 -0
- package/blockly-rc/tests/mocha/shortcut_registry_test.js +450 -0
- package/blockly-rc/tests/mocha/test_helpers/block_definitions.js +204 -0
- package/blockly-rc/tests/mocha/test_helpers/code_generation.js +115 -0
- package/blockly-rc/tests/mocha/test_helpers/common.js +106 -0
- package/blockly-rc/tests/mocha/test_helpers/events.js +290 -0
- package/blockly-rc/tests/mocha/test_helpers/fields.js +310 -0
- package/blockly-rc/tests/mocha/test_helpers/icon_mocks.js +81 -0
- package/blockly-rc/tests/mocha/test_helpers/procedures.js +302 -0
- package/blockly-rc/tests/mocha/test_helpers/serialization.js +124 -0
- package/blockly-rc/tests/mocha/test_helpers/setup_teardown.js +209 -0
- package/blockly-rc/tests/mocha/test_helpers/toolbox_definitions.js +271 -0
- package/blockly-rc/tests/mocha/test_helpers/user_input.js +62 -0
- package/blockly-rc/tests/mocha/test_helpers/variables.js +23 -0
- package/blockly-rc/tests/mocha/test_helpers/warnings.js +83 -0
- package/blockly-rc/tests/mocha/test_helpers/workspace.js +1691 -0
- package/blockly-rc/tests/mocha/theme_test.js +307 -0
- package/blockly-rc/tests/mocha/toolbox_test.js +761 -0
- package/blockly-rc/tests/mocha/tooltip_test.js +276 -0
- package/blockly-rc/tests/mocha/touch_test.js +109 -0
- package/blockly-rc/tests/mocha/trashcan_test.js +375 -0
- package/blockly-rc/tests/mocha/utils_test.js +536 -0
- package/blockly-rc/tests/mocha/variable_map_test.js +509 -0
- package/blockly-rc/tests/mocha/variable_model_test.js +85 -0
- package/blockly-rc/tests/mocha/webdriver.js +96 -0
- package/blockly-rc/tests/mocha/widget_div_test.js +272 -0
- package/blockly-rc/tests/mocha/workspace_comment_test.js +171 -0
- package/blockly-rc/tests/mocha/workspace_svg_test.js +414 -0
- package/blockly-rc/tests/mocha/workspace_test.js +27 -0
- package/blockly-rc/tests/mocha/xml_test.js +951 -0
- package/blockly-rc/tests/mocha/zoom_controls_test.js +81 -0
- package/blockly-rc/tests/multi_playground.html +482 -0
- package/blockly-rc/tests/node/.eslintrc.json +12 -0
- package/blockly-rc/tests/node/.mocharc.js +6 -0
- package/blockly-rc/tests/node/run_node_test.mjs +72 -0
- package/blockly-rc/tests/playground.html +1280 -0
- package/blockly-rc/tests/playgrounds/advanced_playground.html +158 -0
- package/blockly-rc/tests/playgrounds/iframe.html +40 -0
- package/blockly-rc/tests/playgrounds/screenshot.js +123 -0
- package/blockly-rc/tests/scripts/check_metadata.sh +166 -0
- package/blockly-rc/tests/scripts/compile_typings.sh +32 -0
- package/blockly-rc/tests/scripts/load.mjs +140 -0
- package/blockly-rc/tests/scripts/setup_linux_env.sh +7 -0
- package/blockly-rc/tests/scripts/update_metadata.sh +46 -0
- package/blockly-rc/tests/themes/test_themes.js +62 -0
- package/blockly-rc/tests/typescript/README.md +4 -0
- package/blockly-rc/tests/typescript/src/field/different_user_input.ts +81 -0
- package/blockly-rc/tests/typescript/src/generators/dart.ts +24 -0
- package/blockly-rc/tests/typescript/src/generators/javascript.ts +28 -0
- package/blockly-rc/tests/typescript/src/generators/lua.ts +24 -0
- package/blockly-rc/tests/typescript/src/generators/php.ts +24 -0
- package/blockly-rc/tests/typescript/src/generators/python.ts +24 -0
- package/blockly-rc/tests/typescript/src/generators.ts +31 -0
- package/blockly-rc/tests/typescript/src/msg.ts +20 -0
- package/blockly-rc/tests/typescript/tsconfig.json +20 -0
- package/blockly-rc/tests/xml/README.txt +11 -0
- package/blockly-rc/tests/xml/blockly.xsd +178 -0
- package/blockly-rc/tests/xml/invalid.xml +6 -0
- package/blockly-rc/tests/xml/toolbox.xml +311 -0
- package/blockly-rc/tests/xml/workspace.xml +114 -0
- package/blockly-rc/tsconfig.json +37 -0
- package/blockly-rc/tsdoc.json +35 -0
- package/blockly-rc/typings/README.md +5 -0
- package/blockly-rc/typings/blocks.d.ts +17 -0
- package/blockly-rc/typings/core.d.ts +7 -0
- package/blockly-rc/typings/dart.d.ts +7 -0
- package/blockly-rc/typings/index.d.ts +10 -0
- package/blockly-rc/typings/javascript.d.ts +7 -0
- package/blockly-rc/typings/lua.d.ts +7 -0
- package/blockly-rc/typings/msg/ab.d.ts +8 -0
- package/blockly-rc/typings/msg/ace.d.ts +8 -0
- package/blockly-rc/typings/msg/af.d.ts +8 -0
- package/blockly-rc/typings/msg/am.d.ts +8 -0
- package/blockly-rc/typings/msg/ar.d.ts +8 -0
- package/blockly-rc/typings/msg/ast.d.ts +8 -0
- package/blockly-rc/typings/msg/az.d.ts +8 -0
- package/blockly-rc/typings/msg/ba.d.ts +8 -0
- package/blockly-rc/typings/msg/bcc.d.ts +8 -0
- package/blockly-rc/typings/msg/be-tarask.d.ts +8 -0
- package/blockly-rc/typings/msg/be.d.ts +8 -0
- package/blockly-rc/typings/msg/bg.d.ts +8 -0
- package/blockly-rc/typings/msg/bn.d.ts +8 -0
- package/blockly-rc/typings/msg/br.d.ts +8 -0
- package/blockly-rc/typings/msg/bs.d.ts +8 -0
- package/blockly-rc/typings/msg/ca.d.ts +8 -0
- package/blockly-rc/typings/msg/cdo.d.ts +8 -0
- package/blockly-rc/typings/msg/ce.d.ts +8 -0
- package/blockly-rc/typings/msg/cs.d.ts +8 -0
- package/blockly-rc/typings/msg/da.d.ts +8 -0
- package/blockly-rc/typings/msg/de.d.ts +8 -0
- package/blockly-rc/typings/msg/diq.d.ts +8 -0
- package/blockly-rc/typings/msg/dtp.d.ts +8 -0
- package/blockly-rc/typings/msg/dty.d.ts +8 -0
- package/blockly-rc/typings/msg/ee.d.ts +8 -0
- package/blockly-rc/typings/msg/el.d.ts +8 -0
- package/blockly-rc/typings/msg/en-gb.d.ts +8 -0
- package/blockly-rc/typings/msg/en.d.ts +8 -0
- package/blockly-rc/typings/msg/eo.d.ts +8 -0
- package/blockly-rc/typings/msg/es.d.ts +8 -0
- package/blockly-rc/typings/msg/et.d.ts +8 -0
- package/blockly-rc/typings/msg/eu.d.ts +8 -0
- package/blockly-rc/typings/msg/fa.d.ts +8 -0
- package/blockly-rc/typings/msg/fi.d.ts +8 -0
- package/blockly-rc/typings/msg/fo.d.ts +8 -0
- package/blockly-rc/typings/msg/fr.d.ts +8 -0
- package/blockly-rc/typings/msg/frr.d.ts +8 -0
- package/blockly-rc/typings/msg/gl.d.ts +8 -0
- package/blockly-rc/typings/msg/gn.d.ts +8 -0
- package/blockly-rc/typings/msg/gor.d.ts +8 -0
- package/blockly-rc/typings/msg/ha.d.ts +8 -0
- package/blockly-rc/typings/msg/hak.d.ts +8 -0
- package/blockly-rc/typings/msg/he.d.ts +8 -0
- package/blockly-rc/typings/msg/hi.d.ts +8 -0
- package/blockly-rc/typings/msg/hr.d.ts +8 -0
- package/blockly-rc/typings/msg/hrx.d.ts +8 -0
- package/blockly-rc/typings/msg/hsb.d.ts +8 -0
- package/blockly-rc/typings/msg/hu.d.ts +8 -0
- package/blockly-rc/typings/msg/hy.d.ts +8 -0
- package/blockly-rc/typings/msg/ia.d.ts +8 -0
- package/blockly-rc/typings/msg/id.d.ts +8 -0
- package/blockly-rc/typings/msg/ig.d.ts +8 -0
- package/blockly-rc/typings/msg/inh.d.ts +8 -0
- package/blockly-rc/typings/msg/is.d.ts +8 -0
- package/blockly-rc/typings/msg/it.d.ts +8 -0
- package/blockly-rc/typings/msg/ja.d.ts +8 -0
- package/blockly-rc/typings/msg/ka.d.ts +8 -0
- package/blockly-rc/typings/msg/kab.d.ts +8 -0
- package/blockly-rc/typings/msg/kbd-cyrl.d.ts +8 -0
- package/blockly-rc/typings/msg/km.d.ts +8 -0
- package/blockly-rc/typings/msg/kn.d.ts +8 -0
- package/blockly-rc/typings/msg/ko.d.ts +8 -0
- package/blockly-rc/typings/msg/ksh.d.ts +8 -0
- package/blockly-rc/typings/msg/ku-latn.d.ts +8 -0
- package/blockly-rc/typings/msg/ky.d.ts +8 -0
- package/blockly-rc/typings/msg/la.d.ts +8 -0
- package/blockly-rc/typings/msg/lb.d.ts +8 -0
- package/blockly-rc/typings/msg/lki.d.ts +8 -0
- package/blockly-rc/typings/msg/lo.d.ts +8 -0
- package/blockly-rc/typings/msg/lrc.d.ts +8 -0
- package/blockly-rc/typings/msg/lt.d.ts +8 -0
- package/blockly-rc/typings/msg/lv.d.ts +8 -0
- package/blockly-rc/typings/msg/mg.d.ts +8 -0
- package/blockly-rc/typings/msg/mk.d.ts +8 -0
- package/blockly-rc/typings/msg/ml.d.ts +8 -0
- package/blockly-rc/typings/msg/mnw.d.ts +8 -0
- package/blockly-rc/typings/msg/ms.d.ts +8 -0
- package/blockly-rc/typings/msg/msg.d.ts +440 -0
- package/blockly-rc/typings/msg/my.d.ts +8 -0
- package/blockly-rc/typings/msg/mzn.d.ts +8 -0
- package/blockly-rc/typings/msg/nb.d.ts +8 -0
- package/blockly-rc/typings/msg/ne.d.ts +8 -0
- package/blockly-rc/typings/msg/nl.d.ts +8 -0
- package/blockly-rc/typings/msg/oc.d.ts +8 -0
- package/blockly-rc/typings/msg/olo.d.ts +8 -0
- package/blockly-rc/typings/msg/pa.d.ts +8 -0
- package/blockly-rc/typings/msg/pl.d.ts +8 -0
- package/blockly-rc/typings/msg/pms.d.ts +8 -0
- package/blockly-rc/typings/msg/ps.d.ts +8 -0
- package/blockly-rc/typings/msg/pt-br.d.ts +8 -0
- package/blockly-rc/typings/msg/pt.d.ts +8 -0
- package/blockly-rc/typings/msg/ro.d.ts +8 -0
- package/blockly-rc/typings/msg/ru.d.ts +8 -0
- package/blockly-rc/typings/msg/sc.d.ts +8 -0
- package/blockly-rc/typings/msg/sco.d.ts +8 -0
- package/blockly-rc/typings/msg/sd.d.ts +8 -0
- package/blockly-rc/typings/msg/shn.d.ts +8 -0
- package/blockly-rc/typings/msg/si.d.ts +8 -0
- package/blockly-rc/typings/msg/sk.d.ts +8 -0
- package/blockly-rc/typings/msg/skr-arab.d.ts +8 -0
- package/blockly-rc/typings/msg/sl.d.ts +8 -0
- package/blockly-rc/typings/msg/smn.d.ts +8 -0
- package/blockly-rc/typings/msg/sq.d.ts +8 -0
- package/blockly-rc/typings/msg/sr-latn.d.ts +8 -0
- package/blockly-rc/typings/msg/sr.d.ts +8 -0
- package/blockly-rc/typings/msg/sv.d.ts +8 -0
- package/blockly-rc/typings/msg/sw.d.ts +8 -0
- package/blockly-rc/typings/msg/ta.d.ts +8 -0
- package/blockly-rc/typings/msg/tcy.d.ts +8 -0
- package/blockly-rc/typings/msg/tdd.d.ts +8 -0
- package/blockly-rc/typings/msg/te.d.ts +8 -0
- package/blockly-rc/typings/msg/th.d.ts +8 -0
- package/blockly-rc/typings/msg/ti.d.ts +8 -0
- package/blockly-rc/typings/msg/tl.d.ts +8 -0
- package/blockly-rc/typings/msg/tlh.d.ts +8 -0
- package/blockly-rc/typings/msg/tr.d.ts +8 -0
- package/blockly-rc/typings/msg/ug-arab.d.ts +8 -0
- package/blockly-rc/typings/msg/uk.d.ts +8 -0
- package/blockly-rc/typings/msg/ur.d.ts +8 -0
- package/blockly-rc/typings/msg/uz.d.ts +8 -0
- package/blockly-rc/typings/msg/vi.d.ts +8 -0
- package/blockly-rc/typings/msg/xmf.d.ts +8 -0
- package/blockly-rc/typings/msg/yo.d.ts +8 -0
- package/blockly-rc/typings/msg/zgh.d.ts +8 -0
- package/blockly-rc/typings/msg/zh-hans.d.ts +8 -0
- package/blockly-rc/typings/msg/zh-hant.d.ts +8 -0
- package/blockly-rc/typings/php.d.ts +7 -0
- package/blockly-rc/typings/python.d.ts +7 -0
- package/blockly-rc/typings/templates/blockly-header.template +11 -0
- package/blockly-rc/typings/templates/blockly-interfaces.template +83 -0
- package/blockly-rc/typings/templates/msg.template +15 -0
- package/blockly-rc/typings/tsconfig.json +23 -0
- package/continuous-toolbox.d.ts +1 -0
- package/dist/main.js +2 -0
- package/dist/main.js.LICENSE.txt +163 -0
- package/media/delete-icon.svg +10 -0
- package/media/resize-handle.svg +3 -0
- package/msg/scratch_msgs.js +184 -164
- package/package.json +25 -40
- package/release.config.js +8 -0
- package/src/block_reporting.js +31 -0
- package/src/blocks/colour.js +56 -0
- package/src/blocks/control.js +492 -0
- package/src/blocks/data.js +690 -0
- package/src/blocks/event.js +305 -0
- package/src/blocks/looks.js +537 -0
- package/src/blocks/math.js +137 -0
- package/src/blocks/matrix.js +47 -0
- package/src/blocks/motion.js +513 -0
- package/src/blocks/note.js +48 -0
- package/src/blocks/operators.js +463 -0
- package/src/blocks/procedures.js +1009 -0
- package/src/blocks/sensing.js +441 -0
- package/src/blocks/sound.js +205 -0
- package/src/blocks/text.js +45 -0
- package/src/blocks/vertical_extensions.js +309 -0
- package/src/categories.js +15 -0
- package/src/checkable_continuous_flyout.js +138 -0
- package/src/checkbox_bubble.js +282 -0
- package/src/colours.js +77 -0
- package/src/constants.js +63 -0
- package/src/context_menu_items.js +150 -0
- package/src/css.js +1197 -0
- package/src/data_category.js +556 -0
- package/src/events/events_block_comment_base.js +35 -0
- package/src/events/events_block_comment_change.js +43 -0
- package/src/events/events_block_comment_collapse.js +43 -0
- package/src/events/events_block_comment_create.js +52 -0
- package/src/events/events_block_comment_delete.js +27 -0
- package/src/events/events_block_comment_move.js +54 -0
- package/src/events/events_block_comment_resize.js +52 -0
- package/src/events/events_block_drag_end.js +33 -0
- package/src/events/events_block_drag_outside.js +30 -0
- package/src/events/events_scratch_variable_create.js +67 -0
- package/src/fields/field_angle.js +433 -0
- package/src/fields/field_colour_slider.js +388 -0
- package/src/fields/field_dropdown.js +42 -0
- package/src/fields/field_matrix.js +634 -0
- package/src/fields/field_note.js +937 -0
- package/src/fields/field_number.js +380 -0
- package/src/fields/field_textinput_removable.js +107 -0
- package/src/fields/field_variable.js +171 -0
- package/src/fields/field_variable_getter.js +109 -0
- package/src/fields/field_vertical_separator.js +139 -0
- package/src/flyout_checkbox_icon.js +88 -0
- package/src/glows.js +98 -0
- package/src/index.ts +137 -0
- package/src/procedures.js +425 -0
- package/src/recyclable_block_flyout_inflater.js +194 -0
- package/src/renderer/bowler_hat.js +17 -0
- package/src/renderer/constants.js +45 -0
- package/src/renderer/drawer.js +51 -0
- package/src/renderer/path_object.js +35 -0
- package/src/renderer/render_info.js +98 -0
- package/src/renderer/renderer.js +74 -0
- package/src/scratch_block_paster.js +46 -0
- package/src/scratch_blocks_utils.js +148 -0
- package/src/scratch_comment_bubble.js +169 -0
- package/src/scratch_comment_icon.js +195 -0
- package/src/scratch_connection_checker.js +29 -0
- package/src/scratch_continuous_category.js +80 -0
- package/src/scratch_continuous_toolbox.js +78 -0
- package/src/scratch_dragger.js +142 -0
- package/src/scratch_variable_map.js +25 -0
- package/src/scratch_variable_model.js +24 -0
- package/src/shadows.js +61 -0
- package/src/status_indicator_label.js +186 -0
- package/src/status_indicator_label_flyout_inflater.js +42 -0
- package/src/variables.js +355 -0
- package/temp-use-blockly-v12-rc.sh +26 -0
- package/tsconfig.json +13 -0
- package/blockly_compressed_horizontal.js +0 -2255
- package/blockly_compressed_vertical.js +0 -2283
- package/blockly_uncompressed_horizontal.js +0 -1210
- package/blockly_uncompressed_vertical.js +0 -1210
- package/blocks_common/colour.js +0 -61
- package/blocks_common/math.js +0 -159
- package/blocks_common/matrix.js +0 -54
- package/blocks_common/note.js +0 -58
- package/blocks_common/text.js +0 -57
- package/blocks_compressed.js +0 -36
- package/blocks_compressed_horizontal.js +0 -67
- package/blocks_compressed_vertical.js +0 -208
- package/blocks_horizontal/control.js +0 -212
- package/blocks_horizontal/default_toolbox.js +0 -139
- package/blocks_horizontal/event.js +0 -190
- package/blocks_horizontal/wedo.js +0 -325
- package/blocks_vertical/control.js +0 -532
- package/blocks_vertical/data.js +0 -666
- package/blocks_vertical/default_toolbox.js +0 -564
- package/blocks_vertical/event.js +0 -329
- package/blocks_vertical/extensions.js +0 -294
- package/blocks_vertical/looks.js +0 -591
- package/blocks_vertical/motion.js +0 -587
- package/blocks_vertical/operators.js +0 -470
- package/blocks_vertical/procedures.js +0 -973
- package/blocks_vertical/sensing.js +0 -539
- package/blocks_vertical/sound.js +0 -246
- package/blocks_vertical/vertical_extensions.js +0 -266
- package/build/gen_blocks.js +0 -1
- package/build/test_expect.js +0 -1
- package/build/test_input.js +0 -1
- package/build.py +0 -636
- package/cleanup.sh +0 -101
- package/core/block.js +0 -1837
- package/core/block_animations.js +0 -107
- package/core/block_drag_surface.js +0 -299
- package/core/block_dragger.js +0 -421
- package/core/block_events.js +0 -531
- package/core/block_render_svg_horizontal.js +0 -890
- package/core/block_render_svg_vertical.js +0 -1732
- package/core/block_svg.js +0 -1316
- package/core/blockly.js +0 -622
- package/core/blocks.js +0 -37
- package/core/bubble.js +0 -664
- package/core/bubble_dragger.js +0 -285
- package/core/colours.js +0 -160
- package/core/comment.js +0 -293
- package/core/comment_events.js +0 -539
- package/core/connection.js +0 -766
- package/core/connection_db.js +0 -300
- package/core/constants.js +0 -387
- package/core/contextmenu.js +0 -519
- package/core/css.js +0 -1351
- package/core/data_category.js +0 -490
- package/core/dragged_connection_manager.js +0 -260
- package/core/dropdowndiv.js +0 -408
- package/core/events.js +0 -429
- package/core/events_abstract.js +0 -113
- package/core/extensions.js +0 -450
- package/core/field.js +0 -807
- package/core/field_angle.js +0 -398
- package/core/field_checkbox.js +0 -133
- package/core/field_colour.js +0 -253
- package/core/field_colour_slider.js +0 -387
- package/core/field_date.js +0 -353
- package/core/field_dropdown.js +0 -483
- package/core/field_iconmenu.js +0 -309
- package/core/field_image.js +0 -193
- package/core/field_label.js +0 -136
- package/core/field_label_serializable.js +0 -125
- package/core/field_matrix.js +0 -566
- package/core/field_note.js +0 -850
- package/core/field_number.js +0 -366
- package/core/field_numberdropdown.js +0 -77
- package/core/field_textdropdown.js +0 -164
- package/core/field_textinput.js +0 -675
- package/core/field_textinput_removable.js +0 -105
- package/core/field_variable.js +0 -385
- package/core/field_variable_getter.js +0 -185
- package/core/field_vertical_separator.js +0 -161
- package/core/flyout_base.js +0 -923
- package/core/flyout_button.js +0 -322
- package/core/flyout_dragger.js +0 -83
- package/core/flyout_extension_category_header.js +0 -159
- package/core/flyout_horizontal.js +0 -475
- package/core/flyout_vertical.js +0 -770
- package/core/generator.js +0 -426
- package/core/gesture.js +0 -1011
- package/core/grid.js +0 -227
- package/core/icon.js +0 -205
- package/core/inject.js +0 -491
- package/core/input.js +0 -285
- package/core/insertion_marker_manager.js +0 -678
- package/core/msg.js +0 -62
- package/core/mutator.js +0 -426
- package/core/names.js +0 -198
- package/core/options.js +0 -244
- package/core/procedures.js +0 -577
- package/core/rendered_connection.js +0 -417
- package/core/scratch_block_comment.js +0 -653
- package/core/scratch_blocks_utils.js +0 -244
- package/core/scratch_bubble.js +0 -696
- package/core/scratch_events.js +0 -131
- package/core/scratch_msgs.js +0 -85
- package/core/scrollbar.js +0 -875
- package/core/toolbox.js +0 -801
- package/core/tooltip.js +0 -337
- package/core/touch.js +0 -226
- package/core/trashcan.js +0 -343
- package/core/ui_events.js +0 -91
- package/core/ui_menu_utils.js +0 -68
- package/core/utils.js +0 -948
- package/core/variable_events.js +0 -259
- package/core/variable_map.js +0 -415
- package/core/variable_model.js +0 -116
- package/core/variables.js +0 -674
- package/core/warning.js +0 -199
- package/core/widgetdiv.js +0 -344
- package/core/workspace.js +0 -673
- package/core/workspace_audio.js +0 -170
- package/core/workspace_comment.js +0 -432
- package/core/workspace_comment_render_svg.js +0 -723
- package/core/workspace_comment_svg.js +0 -611
- package/core/workspace_drag_surface_svg.js +0 -195
- package/core/workspace_dragger.js +0 -132
- package/core/workspace_svg.js +0 -2267
- package/core/xml.js +0 -919
- package/core/zoom_controls.js +0 -301
- package/dist/horizontal.js +0 -222
- package/dist/vertical.js +0 -222
- package/dist/web/horizontal.js +0 -232
- package/dist/web/vertical.js +0 -232
- package/local_build.sh +0 -70
- package/pack/scratch-blocks-1.1.206.tgz +0 -0
- package/pull_from_blockly.sh +0 -151
- package/shim/blockly_compressed_horizontal-blocks_compressed.js +0 -1
- package/shim/blockly_compressed_horizontal.Blockly.js +0 -1
- package/shim/blockly_compressed_horizontal.goog.js +0 -1
- package/shim/blockly_compressed_horizontal.js +0 -1
- package/shim/blockly_compressed_vertical-blocks_compressed.js +0 -1
- package/shim/blockly_compressed_vertical.Blockly.js +0 -1
- package/shim/blockly_compressed_vertical.goog.js +0 -1
- package/shim/blockly_compressed_vertical.js +0 -1
- package/shim/blocks_compressed_horizontal-blockly_compressed_horizontal-messages.js +0 -1
- package/shim/blocks_compressed_horizontal.js +0 -1
- package/shim/blocks_compressed_vertical-blockly_compressed_vertical-messages.js +0 -1
- package/shim/blocks_compressed_vertical.js +0 -1
- package/shim/gh-pages.js +0 -1
- package/shim/horizontal.js +0 -1
- package/shim/index.js +0 -17
- package/shim/vertical.js +0 -1
- /package/media/{comment-arrow-down.svg → foldout-icon.svg} +0 -0
|
@@ -0,0 +1,1611 @@
|
|
|
1
|
+
function unittest_report() {
|
|
2
|
+
global $unittestResults;
|
|
3
|
+
// Create test report.
|
|
4
|
+
$report = array();
|
|
5
|
+
$summary = array();
|
|
6
|
+
$fails = 0;
|
|
7
|
+
for ($x = 0; $x < count($unittestResults); $x++) {
|
|
8
|
+
if ($unittestResults[$x][0]) {
|
|
9
|
+
array_push($summary, ".");
|
|
10
|
+
} else {
|
|
11
|
+
array_push($summary, "F");
|
|
12
|
+
$fails++;
|
|
13
|
+
array_push($report, "");
|
|
14
|
+
array_push($report, "FAIL: " . $unittestResults[$x][2]);
|
|
15
|
+
array_push($report, $unittestResults[$x][1]);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
array_unshift($report, implode("", $summary));
|
|
19
|
+
array_push($report, "");
|
|
20
|
+
array_push($report, "Number of tests run: " . count($unittestResults));
|
|
21
|
+
array_push($report, "");
|
|
22
|
+
if ($fails) {
|
|
23
|
+
array_push($report, "FAILED (failures=" . $fails . ")");
|
|
24
|
+
} else {
|
|
25
|
+
array_push($report, "OK");
|
|
26
|
+
}
|
|
27
|
+
return implode("\n", $report);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function assertEquals($actual, $expected, $message) {
|
|
31
|
+
global $unittestResults;
|
|
32
|
+
// Asserts that a value equals another value.
|
|
33
|
+
if (!is_array($unittestResults)) {
|
|
34
|
+
throw new Exception("Orphaned assert: " . $message);
|
|
35
|
+
}
|
|
36
|
+
if ($actual == $expected) {
|
|
37
|
+
array_push($unittestResults, [true, "OK", $message]);
|
|
38
|
+
} else {
|
|
39
|
+
$expected = is_array($expected) ? implode(" ", $expected) : $expected;
|
|
40
|
+
$actual = is_array($actual) ? implode(" ", $actual) : $actual;
|
|
41
|
+
array_push($unittestResults, [false, "Expected: " . $expected . "\nActual: " . $actual, $message]);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function unittest_fail($message) {
|
|
46
|
+
global $unittestResults;
|
|
47
|
+
// Always assert an error.
|
|
48
|
+
if (!$unittestResults) {
|
|
49
|
+
throw new Exception("Orphaned assert fail: " . $message);
|
|
50
|
+
}
|
|
51
|
+
array_push($unittestResults, [false, "Fail.", $message]);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
// Describe this function...
|
|
55
|
+
function test_if() {
|
|
56
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
57
|
+
if (false) {
|
|
58
|
+
unittest_fail('if false');
|
|
59
|
+
}
|
|
60
|
+
$ok = false;
|
|
61
|
+
if (true) {
|
|
62
|
+
$ok = true;
|
|
63
|
+
}
|
|
64
|
+
assertEquals($ok, true, 'if true');
|
|
65
|
+
$ok = false;
|
|
66
|
+
if (false) {
|
|
67
|
+
unittest_fail('if/else false');
|
|
68
|
+
} else {
|
|
69
|
+
$ok = true;
|
|
70
|
+
}
|
|
71
|
+
assertEquals($ok, true, 'if/else false');
|
|
72
|
+
$ok = false;
|
|
73
|
+
if (true) {
|
|
74
|
+
$ok = true;
|
|
75
|
+
} else {
|
|
76
|
+
unittest_fail('if/else true');
|
|
77
|
+
}
|
|
78
|
+
assertEquals($ok, true, 'if/else true');
|
|
79
|
+
$ok = false;
|
|
80
|
+
if (false) {
|
|
81
|
+
unittest_fail('elseif 1');
|
|
82
|
+
} else if (true) {
|
|
83
|
+
$ok = true;
|
|
84
|
+
} else if (true) {
|
|
85
|
+
unittest_fail('elseif 2');
|
|
86
|
+
} else {
|
|
87
|
+
unittest_fail('elseif 3');
|
|
88
|
+
}
|
|
89
|
+
assertEquals($ok, true, 'elseif 4');
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// Describe this function...
|
|
93
|
+
function test_ifelse() {
|
|
94
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
95
|
+
$ok = false;
|
|
96
|
+
if (true) {
|
|
97
|
+
$ok = true;
|
|
98
|
+
} else {
|
|
99
|
+
unittest_fail('ifelse true');
|
|
100
|
+
}
|
|
101
|
+
assertEquals($ok, true, 'ifelse true');
|
|
102
|
+
$ok = false;
|
|
103
|
+
if (false) {
|
|
104
|
+
unittest_fail('ifelse false');
|
|
105
|
+
} else {
|
|
106
|
+
$ok = true;
|
|
107
|
+
}
|
|
108
|
+
assertEquals($ok, true, 'ifelse false');
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// Describe this function...
|
|
112
|
+
function test_equalities() {
|
|
113
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
114
|
+
assertEquals(2 == 2, true, 'Equal yes');
|
|
115
|
+
assertEquals(3 == 4, false, 'Equal no');
|
|
116
|
+
assertEquals(5 != 6, true, 'Not equal yes');
|
|
117
|
+
assertEquals(3 == 4, false, 'Not equal no');
|
|
118
|
+
assertEquals(5 < 6, true, 'Smaller yes');
|
|
119
|
+
assertEquals(7 < 7, false, 'Smaller no');
|
|
120
|
+
assertEquals(9 > 8, true, 'Greater yes');
|
|
121
|
+
assertEquals(10 > 10, false, 'Greater no');
|
|
122
|
+
assertEquals(11 <= 11, true, 'Smaller-equal yes');
|
|
123
|
+
assertEquals(13 <= 12, false, 'Smaller-equal no');
|
|
124
|
+
assertEquals(14 >= 14, true, 'Greater-equal yes');
|
|
125
|
+
assertEquals(15 >= 16, false, 'Greater-equal no');
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// Describe this function...
|
|
129
|
+
function test_and() {
|
|
130
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
131
|
+
assertEquals(true && true, true, 'And true/true');
|
|
132
|
+
assertEquals(false && true, false, 'And false/true');
|
|
133
|
+
assertEquals(true && false, false, 'And true/false');
|
|
134
|
+
assertEquals(false && false, false, 'And false/false');
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// Describe this function...
|
|
138
|
+
function test_or() {
|
|
139
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
140
|
+
assertEquals(true || true, true, 'Or true/true');
|
|
141
|
+
assertEquals(false || true, true, 'Or false/true');
|
|
142
|
+
assertEquals(true || false, true, 'Or true/false');
|
|
143
|
+
assertEquals(false || false, false, 'Or false/false');
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// Describe this function...
|
|
147
|
+
function test_ternary() {
|
|
148
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
149
|
+
assertEquals(true ? 42 : 99, 42, 'if true');
|
|
150
|
+
assertEquals(false ? 42 : 99, 99, 'if true');
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// Describe this function...
|
|
154
|
+
function test_foreach() {
|
|
155
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
156
|
+
$log = '';
|
|
157
|
+
foreach (array('a', 'b', 'c') as $x) {
|
|
158
|
+
$log .= $x;
|
|
159
|
+
}
|
|
160
|
+
assertEquals($log, 'abc', 'for loop');
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
// Describe this function...
|
|
164
|
+
function test_repeat() {
|
|
165
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
166
|
+
$count = 0;
|
|
167
|
+
for ($count2 = 0; $count2 < 10; $count2++) {
|
|
168
|
+
$count += 1;
|
|
169
|
+
}
|
|
170
|
+
assertEquals($count, 10, 'repeat 10');
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
// Describe this function...
|
|
174
|
+
function test_while() {
|
|
175
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
176
|
+
while (false) {
|
|
177
|
+
unittest_fail('while 0');
|
|
178
|
+
}
|
|
179
|
+
while (!true) {
|
|
180
|
+
unittest_fail('until 0');
|
|
181
|
+
}
|
|
182
|
+
$count = 1;
|
|
183
|
+
while ($count != 10) {
|
|
184
|
+
$count += 1;
|
|
185
|
+
}
|
|
186
|
+
assertEquals($count, 10, 'while 10');
|
|
187
|
+
$count = 1;
|
|
188
|
+
while (!($count == 10)) {
|
|
189
|
+
$count += 1;
|
|
190
|
+
}
|
|
191
|
+
assertEquals($count, 10, 'until 10');
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
// Describe this function...
|
|
195
|
+
function test_repeat_ext() {
|
|
196
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
197
|
+
$count = 0;
|
|
198
|
+
for ($count3 = 0; $count3 < 10; $count3++) {
|
|
199
|
+
$count += 1;
|
|
200
|
+
}
|
|
201
|
+
assertEquals($count, 10, 'repeat 10');
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// Describe this function...
|
|
205
|
+
function test_count_by() {
|
|
206
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
207
|
+
$log = '';
|
|
208
|
+
for ($x = 1; $x <= 8; $x += 2) {
|
|
209
|
+
$log .= $x;
|
|
210
|
+
}
|
|
211
|
+
assertEquals($log, '1357', 'count up ints');
|
|
212
|
+
$log = '';
|
|
213
|
+
for ($x = 8; $x >= 1; $x -= 2) {
|
|
214
|
+
$log .= $x;
|
|
215
|
+
}
|
|
216
|
+
assertEquals($log, '8642', 'count down ints');
|
|
217
|
+
$loglist = array();
|
|
218
|
+
for ($x = 1; $x <= 8; $x += 1.5) {
|
|
219
|
+
array_push($loglist, $x);
|
|
220
|
+
}
|
|
221
|
+
assertEquals($loglist, array(1, 2.5, 4, 5.5, 7), 'count with floats');
|
|
222
|
+
$loglist = array();
|
|
223
|
+
$_x_start = 1 + 0;
|
|
224
|
+
$_x_end = 8 + 0;
|
|
225
|
+
$_x_inc = abs(1 - 2);
|
|
226
|
+
if ($_x_start > $_x_end) {
|
|
227
|
+
$_x_inc = -$_x_inc;
|
|
228
|
+
}
|
|
229
|
+
for ($x = $_x_start; $_x_inc >= 0 ? $x <= $_x_end : $x >= $_x_end; $x += $_x_inc) {
|
|
230
|
+
array_push($loglist, $x);
|
|
231
|
+
}
|
|
232
|
+
assertEquals($loglist, array(1, 2, 3, 4, 5, 6, 7, 8), 'count up non-trivial ints');
|
|
233
|
+
$loglist = array();
|
|
234
|
+
$_x_start2 = 8 + 0;
|
|
235
|
+
$_x_end2 = 1 + 0;
|
|
236
|
+
$_x_inc2 = 2;
|
|
237
|
+
if ($_x_start2 > $_x_end2) {
|
|
238
|
+
$_x_inc2 = -$_x_inc2;
|
|
239
|
+
}
|
|
240
|
+
for ($x = $_x_start2; $_x_inc2 >= 0 ? $x <= $_x_end2 : $x >= $_x_end2; $x += $_x_inc2) {
|
|
241
|
+
array_push($loglist, $x);
|
|
242
|
+
}
|
|
243
|
+
assertEquals($loglist, array(8, 6, 4, 2), 'count down non-trivial ints');
|
|
244
|
+
$loglist = array();
|
|
245
|
+
$_x_start3 = 5 + 0.5;
|
|
246
|
+
$_x_end3 = 1 + 0;
|
|
247
|
+
$_x_inc3 = abs(1 + 0);
|
|
248
|
+
if ($_x_start3 > $_x_end3) {
|
|
249
|
+
$_x_inc3 = -$_x_inc3;
|
|
250
|
+
}
|
|
251
|
+
for ($x = $_x_start3; $_x_inc3 >= 0 ? $x <= $_x_end3 : $x >= $_x_end3; $x += $_x_inc3) {
|
|
252
|
+
array_push($loglist, $x);
|
|
253
|
+
}
|
|
254
|
+
assertEquals($loglist, array(5.5, 4.5, 3.5, 2.5, 1.5), 'count with floats');
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
// Describe this function...
|
|
258
|
+
function test_count_loops() {
|
|
259
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
260
|
+
$log = '';
|
|
261
|
+
for ($x = 1; $x <= 8; $x++) {
|
|
262
|
+
$log .= $x;
|
|
263
|
+
}
|
|
264
|
+
assertEquals($log, '12345678', 'count up');
|
|
265
|
+
$log = '';
|
|
266
|
+
for ($x = 8; $x >= 1; $x--) {
|
|
267
|
+
$log .= $x;
|
|
268
|
+
}
|
|
269
|
+
assertEquals($log, '87654321', 'count down');
|
|
270
|
+
$loglist = array();
|
|
271
|
+
$_x_start4 = 1 + 0;
|
|
272
|
+
$_x_end4 = 4 + 0;
|
|
273
|
+
$_x_inc4 = 1;
|
|
274
|
+
if ($_x_start4 > $_x_end4) {
|
|
275
|
+
$_x_inc4 = -$_x_inc4;
|
|
276
|
+
}
|
|
277
|
+
for ($x = $_x_start4; $_x_inc4 >= 0 ? $x <= $_x_end4 : $x >= $_x_end4; $x += $_x_inc4) {
|
|
278
|
+
array_push($loglist, $x);
|
|
279
|
+
}
|
|
280
|
+
assertEquals($loglist, array(1, 2, 3, 4), 'count up non-trivial');
|
|
281
|
+
$loglist = array();
|
|
282
|
+
$_x_start5 = 3 + 1;
|
|
283
|
+
$_x_end5 = 1 + 0;
|
|
284
|
+
$_x_inc5 = 1;
|
|
285
|
+
if ($_x_start5 > $_x_end5) {
|
|
286
|
+
$_x_inc5 = -$_x_inc5;
|
|
287
|
+
}
|
|
288
|
+
for ($x = $_x_start5; $_x_inc5 >= 0 ? $x <= $_x_end5 : $x >= $_x_end5; $x += $_x_inc5) {
|
|
289
|
+
array_push($loglist, $x);
|
|
290
|
+
}
|
|
291
|
+
assertEquals($loglist, array(4, 3, 2, 1), 'count down non-trivial');
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
// Describe this function...
|
|
295
|
+
function test_continue() {
|
|
296
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
297
|
+
$log = '';
|
|
298
|
+
$count = 0;
|
|
299
|
+
while ($count != 8) {
|
|
300
|
+
$count += 1;
|
|
301
|
+
if ($count == 5) {
|
|
302
|
+
continue;
|
|
303
|
+
}
|
|
304
|
+
$log .= $count;
|
|
305
|
+
}
|
|
306
|
+
assertEquals($log, '1234678', 'while continue');
|
|
307
|
+
$log = '';
|
|
308
|
+
$count = 0;
|
|
309
|
+
while (!($count == 8)) {
|
|
310
|
+
$count += 1;
|
|
311
|
+
if ($count == 5) {
|
|
312
|
+
continue;
|
|
313
|
+
}
|
|
314
|
+
$log .= $count;
|
|
315
|
+
}
|
|
316
|
+
assertEquals($log, '1234678', 'until continue');
|
|
317
|
+
$log = '';
|
|
318
|
+
for ($x = 1; $x <= 8; $x++) {
|
|
319
|
+
if ($x == 5) {
|
|
320
|
+
continue;
|
|
321
|
+
}
|
|
322
|
+
$log .= $x;
|
|
323
|
+
}
|
|
324
|
+
assertEquals($log, '1234678', 'count continue');
|
|
325
|
+
$log = '';
|
|
326
|
+
foreach (array('a', 'b', 'c', 'd') as $x) {
|
|
327
|
+
if ($x == 'c') {
|
|
328
|
+
continue;
|
|
329
|
+
}
|
|
330
|
+
$log .= $x;
|
|
331
|
+
}
|
|
332
|
+
assertEquals($log, 'abd', 'for continue');
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
// Describe this function...
|
|
336
|
+
function test_break() {
|
|
337
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
338
|
+
$count = 1;
|
|
339
|
+
while ($count != 10) {
|
|
340
|
+
if ($count == 5) {
|
|
341
|
+
break;
|
|
342
|
+
}
|
|
343
|
+
$count += 1;
|
|
344
|
+
}
|
|
345
|
+
assertEquals($count, 5, 'while break');
|
|
346
|
+
$count = 1;
|
|
347
|
+
while (!($count == 10)) {
|
|
348
|
+
if ($count == 5) {
|
|
349
|
+
break;
|
|
350
|
+
}
|
|
351
|
+
$count += 1;
|
|
352
|
+
}
|
|
353
|
+
assertEquals($count, 5, 'until break');
|
|
354
|
+
$log = '';
|
|
355
|
+
for ($x = 1; $x <= 8; $x++) {
|
|
356
|
+
if ($x == 5) {
|
|
357
|
+
break;
|
|
358
|
+
}
|
|
359
|
+
$log .= $x;
|
|
360
|
+
}
|
|
361
|
+
assertEquals($log, '1234', 'count break');
|
|
362
|
+
$log = '';
|
|
363
|
+
foreach (array('a', 'b', 'c', 'd') as $x) {
|
|
364
|
+
if ($x == 'c') {
|
|
365
|
+
break;
|
|
366
|
+
}
|
|
367
|
+
$log .= $x;
|
|
368
|
+
}
|
|
369
|
+
assertEquals($log, 'ab', 'for break');
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
// Tests the "single" block.
|
|
373
|
+
function test_single() {
|
|
374
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
375
|
+
assertEquals(sqrt(25), 5, 'sqrt');
|
|
376
|
+
assertEquals(abs(-25), 25, 'abs');
|
|
377
|
+
assertEquals(-(-25), 25, 'negate');
|
|
378
|
+
assertEquals(log(1), 0, 'ln');
|
|
379
|
+
assertEquals(log(100) / log(10), 2, 'log10');
|
|
380
|
+
assertEquals(exp(2), 7.38905609893065, 'exp');
|
|
381
|
+
assertEquals(pow(10,2), 100, 'power10');
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
// Tests the "arithmetic" block for all operations and checks
|
|
385
|
+
// parenthesis are properly generated for different orders.
|
|
386
|
+
function test_arithmetic() {
|
|
387
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
388
|
+
assertEquals(1 + 2, 3, 'add');
|
|
389
|
+
assertEquals(1 - 2, -1, 'subtract');
|
|
390
|
+
assertEquals(1 - (0 + 2), -1, 'subtract order with add');
|
|
391
|
+
assertEquals(1 - (0 - 2), 3, 'subtract order with subtract');
|
|
392
|
+
assertEquals(4 * 2.5, 10, 'multiply');
|
|
393
|
+
assertEquals(4 * (0 + 2.5), 10, 'multiply order');
|
|
394
|
+
assertEquals(8.2 / -5, -1.64, 'divide');
|
|
395
|
+
assertEquals(8.2 / (0 + -5), -1.64, 'divide order');
|
|
396
|
+
assertEquals(10 ** 4, 10000, 'power');
|
|
397
|
+
assertEquals(10 ** (0 + 4), 10000, 'power order');
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
// Tests the "trig" block.
|
|
401
|
+
function test_trig() {
|
|
402
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
403
|
+
assertEquals(sin(90 / 180 * pi()), 1, 'sin');
|
|
404
|
+
assertEquals(cos(180 / 180 * pi()), -1, 'cos');
|
|
405
|
+
assertEquals(tan(0 / 180 * pi()), 0, 'tan');
|
|
406
|
+
assertEquals(asin(-1) / pi() * 180, -90, 'asin');
|
|
407
|
+
assertEquals(acos(1) / pi() * 180, 0, 'acos');
|
|
408
|
+
assertEquals(atan(1) / pi() * 180, 45, 'atan');
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
// Tests the "constant" blocks.
|
|
412
|
+
function test_constant() {
|
|
413
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
414
|
+
assertEquals(floor(M_PI * 1000), 3141, 'const pi');
|
|
415
|
+
assertEquals(floor(M_E * 1000), 2718, 'const e');
|
|
416
|
+
assertEquals(floor(((1 + sqrt(5)) / 2) * 1000), 1618, 'const golden');
|
|
417
|
+
assertEquals(floor(M_SQRT2 * 1000), 1414, 'const sqrt 2');
|
|
418
|
+
assertEquals(floor(M_SQRT1_2 * 1000), 707, 'const sqrt 0.5');
|
|
419
|
+
assertEquals(9999 < INF, true, 'const infinity');
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
function math_isPrime($n) {
|
|
423
|
+
// https://en.wikipedia.org/wiki/Primality_test#Naive_methods
|
|
424
|
+
if ($n == 2 || $n == 3) {
|
|
425
|
+
return true;
|
|
426
|
+
}
|
|
427
|
+
// False if n is NaN, negative, is 1, or not whole.
|
|
428
|
+
// And false if n is divisible by 2 or 3.
|
|
429
|
+
if (!is_numeric($n) || $n <= 1 || $n % 1 != 0 || $n % 2 == 0 || $n % 3 == 0) {
|
|
430
|
+
return false;
|
|
431
|
+
}
|
|
432
|
+
// Check all the numbers of form 6k +/- 1, up to sqrt(n).
|
|
433
|
+
for ($x = 6; $x <= sqrt($n) + 1; $x += 6) {
|
|
434
|
+
if ($n % ($x - 1) == 0 || $n % ($x + 1) == 0) {
|
|
435
|
+
return false;
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
return true;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
// Tests the "number property" blocks.
|
|
442
|
+
function test_number_properties() {
|
|
443
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
444
|
+
assertEquals(42 % 2 == 0, true, 'even');
|
|
445
|
+
assertEquals(42.1 % 2 == 1, false, 'odd');
|
|
446
|
+
assertEquals(math_isPrime(5), true, 'prime 5');
|
|
447
|
+
assertEquals(math_isPrime(5 + 2), true, 'prime 5 + 2 (extra parentheses)');
|
|
448
|
+
assertEquals(math_isPrime(25), false, 'prime 25');
|
|
449
|
+
assertEquals(math_isPrime(-31.1), false, 'prime negative');
|
|
450
|
+
assertEquals(is_int(M_PI), false, 'whole');
|
|
451
|
+
assertEquals(INF > 0, true, 'positive');
|
|
452
|
+
assertEquals(5 + 2 > 0, true, '5 + 2 is positive (extra parentheses)');
|
|
453
|
+
assertEquals(-42 < 0, true, 'negative');
|
|
454
|
+
assertEquals(3 + 2 < 0, false, '3 + 2 is negative (extra parentheses)');
|
|
455
|
+
assertEquals(42 % 2 == 0, true, 'divisible');
|
|
456
|
+
assertEquals(!false, true, 'divisible by 0');
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
// Tests the "round" block.
|
|
460
|
+
function test_round() {
|
|
461
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
462
|
+
assertEquals(round(42.42), 42, 'round');
|
|
463
|
+
assertEquals(ceil(-42.42), -42, 'round up');
|
|
464
|
+
assertEquals(floor(42.42), 42, 'round down');
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
// Tests the "change" block.
|
|
468
|
+
function test_change() {
|
|
469
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
470
|
+
$varToChange = 100;
|
|
471
|
+
$varToChange += 42;
|
|
472
|
+
assertEquals($varToChange, 142, 'change');
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
function math_mean($myList) {
|
|
476
|
+
return array_sum($myList) / count($myList);
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
function math_median($arr) {
|
|
480
|
+
sort($arr,SORT_NUMERIC);
|
|
481
|
+
return (count($arr) % 2) ? $arr[floor(count($arr) / 2)] :
|
|
482
|
+
($arr[floor(count($arr) / 2)] + $arr[floor(count($arr) / 2) - 1]) / 2;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
function math_modes($values) {
|
|
486
|
+
if (empty($values)) return array();
|
|
487
|
+
$counts = array_count_values($values);
|
|
488
|
+
arsort($counts); // Sort counts in descending order
|
|
489
|
+
$modes = array_keys($counts, current($counts), true);
|
|
490
|
+
return $modes;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
function math_standard_deviation($numbers) {
|
|
494
|
+
$n = count($numbers);
|
|
495
|
+
if (!$n) return null;
|
|
496
|
+
$mean = array_sum($numbers) / count($numbers);
|
|
497
|
+
foreach($numbers as $key => $num) $devs[$key] = pow($num - $mean, 2);
|
|
498
|
+
return sqrt(array_sum($devs) / (count($devs) - 1));
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
function math_random_list($list) {
|
|
502
|
+
$x = rand(0, count($list)-1);
|
|
503
|
+
return $list[$x];
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
function indexOf($haystack, $needle) {
|
|
507
|
+
for ($index = 0; $index < count($haystack); $index++) {
|
|
508
|
+
if ($haystack[$index] == $needle) return $index + 1;
|
|
509
|
+
}
|
|
510
|
+
return 0;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
// Tests the "list operation" blocks.
|
|
514
|
+
function test_operations_on_list() {
|
|
515
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
516
|
+
assertEquals(array_sum((array(3, 4, 5))), 12, 'sum');
|
|
517
|
+
assertEquals(min((array(3, 4, 5))), 3, 'min');
|
|
518
|
+
assertEquals(max((array(3, 4, 5))), 5, 'max');
|
|
519
|
+
assertEquals(math_mean(array(3, 4, 5)), 4, 'average');
|
|
520
|
+
assertEquals(math_median(array(3, 4, 5, 1)), 3.5, 'median');
|
|
521
|
+
assertEquals(math_modes(array(3, 4, 3)), array(3), 'modes');
|
|
522
|
+
assertEquals(math_modes(array(3, 4, 3, 1, 4)), array(3, 4), 'modes multiple');
|
|
523
|
+
assertEquals(math_standard_deviation(array(3, 3, 3)), 0, 'standard dev');
|
|
524
|
+
assertEquals(indexOf(array(3, 4, 5), math_random_list(array(3, 4, 5))) > 0, true, 'random');
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
// Tests the "mod" block.
|
|
528
|
+
function test_mod() {
|
|
529
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
530
|
+
assertEquals(42 % 5, 2, 'mod');
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
// Tests the "constrain" block.
|
|
534
|
+
function test_constraint() {
|
|
535
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
536
|
+
assertEquals(min(max(100, 0), 42), 42, 'constraint');
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
function math_random_int($a, $b) {
|
|
540
|
+
if ($a > $b) {
|
|
541
|
+
return rand($b, $a);
|
|
542
|
+
}
|
|
543
|
+
return rand($a, $b);
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
// Tests the "random integer" block.
|
|
547
|
+
function test_random_integer() {
|
|
548
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
549
|
+
$rand = math_random_int(5, 10);
|
|
550
|
+
assertEquals($rand >= 5 && $rand <= 10, true, 'randRange');
|
|
551
|
+
assertEquals(is_int($rand), true, 'randInteger');
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
// Tests the "random fraction" block.
|
|
555
|
+
function test_random_fraction() {
|
|
556
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
557
|
+
$rand = (float)rand()/(float)getrandmax();
|
|
558
|
+
assertEquals($rand >= 0 && $rand <= 1, true, 'randFloat');
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
// Describe this function...
|
|
562
|
+
function test_atan2() {
|
|
563
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
564
|
+
assertEquals(atan2(5, -5) / pi() * 180, 135, 'atan2');
|
|
565
|
+
assertEquals(atan2(-12, 0) / pi() * 180, -90, 'atan2');
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
// Checks that the number of calls is one in order
|
|
569
|
+
// to confirm that a function was only called once.
|
|
570
|
+
function check_number_of_calls($test_name) {
|
|
571
|
+
global $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
572
|
+
$test_name .= 'number of calls';
|
|
573
|
+
assertEquals($number_of_calls, 1, $test_name);
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
// Tests the "create text with" block with varying number of inputs.
|
|
577
|
+
function test_create_text() {
|
|
578
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
579
|
+
assertEquals('', '', 'no text');
|
|
580
|
+
assertEquals('Hello', 'Hello', 'create single');
|
|
581
|
+
assertEquals(-1, '-1', 'create single number');
|
|
582
|
+
assertEquals('K' . 9, 'K9', 'create double text');
|
|
583
|
+
assertEquals(4 . 2, '42', 'create double text numbers');
|
|
584
|
+
assertEquals(implode('', array(1,2,3)), '123', 'create triple');
|
|
585
|
+
assertEquals(implode('', array(1,true ? 0 : null,'M')), '10M', 'create order');
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
// Creates an empty string for use with the empty test.
|
|
589
|
+
function get_empty() {
|
|
590
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
591
|
+
return '';
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
// Tests the "is empty" block".
|
|
595
|
+
function test_empty_text() {
|
|
596
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
597
|
+
assertEquals(empty('Google'), false, 'not empty');
|
|
598
|
+
assertEquals(empty(''), true, 'empty');
|
|
599
|
+
assertEquals(empty(get_empty()), true, 'empty complex');
|
|
600
|
+
assertEquals(empty(true ? '' : null), true, 'empty order');
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
function length($value) {
|
|
604
|
+
if (is_string($value)) {
|
|
605
|
+
return strlen($value);
|
|
606
|
+
}
|
|
607
|
+
return count($value);
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
// Tests the "length" block.
|
|
611
|
+
function test_text_length() {
|
|
612
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
613
|
+
assertEquals(length(''), 0, 'zero length');
|
|
614
|
+
assertEquals(length('Google'), 6, 'non-zero length');
|
|
615
|
+
assertEquals(length(true ? 'car' : null), 3, 'length order');
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
// Tests the "append text" block with different types of parameters.
|
|
619
|
+
function test_append() {
|
|
620
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
621
|
+
$item = 'Miserable';
|
|
622
|
+
$item .= 'Failure';
|
|
623
|
+
assertEquals($item, 'MiserableFailure', 'append text');
|
|
624
|
+
$item = 12;
|
|
625
|
+
$item .= 34;
|
|
626
|
+
assertEquals($item, '1234', 'append number');
|
|
627
|
+
$item = 'Something ';
|
|
628
|
+
$item .= true ? 'Positive' : null;
|
|
629
|
+
assertEquals($item, 'Something Positive', 'append order');
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
function text_indexOf($text, $search) {
|
|
633
|
+
$pos = strpos($text, $search);
|
|
634
|
+
return $pos === false ? 0 : $pos + 1;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
function text_lastIndexOf($text, $search) {
|
|
638
|
+
$pos = strrpos($text, $search);
|
|
639
|
+
return $pos === false ? 0 : $pos + 1;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
// Tests the "find" block with a variable.
|
|
643
|
+
function test_find_text_simple() {
|
|
644
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
645
|
+
$text = 'Banana';
|
|
646
|
+
assertEquals(text_indexOf($text, 'an'), 2, 'find first simple');
|
|
647
|
+
assertEquals(text_lastIndexOf($text, 'an'), 4, 'find last simple');
|
|
648
|
+
assertEquals(text_indexOf($text, 'Peel'), 0, 'find none simple');
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
// Creates a string for use with the find test.
|
|
652
|
+
function get_fruit() {
|
|
653
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
654
|
+
$number_of_calls += 1;
|
|
655
|
+
return 'Banana';
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
// Tests the "find" block with a function call.
|
|
659
|
+
function test_find_text_complex() {
|
|
660
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
661
|
+
$number_of_calls = 0;
|
|
662
|
+
assertEquals(text_indexOf(get_fruit(), 'an'), 2, 'find first complex');
|
|
663
|
+
check_number_of_calls('find first complex');
|
|
664
|
+
$number_of_calls = 0;
|
|
665
|
+
assertEquals(text_indexOf(true ? get_fruit() : null, 'an'), 2, 'find first order complex');
|
|
666
|
+
check_number_of_calls('find first order complex');
|
|
667
|
+
$number_of_calls = 0;
|
|
668
|
+
assertEquals(text_lastIndexOf(get_fruit(), 'an'), 4, 'find last complex');
|
|
669
|
+
check_number_of_calls('find last complex');
|
|
670
|
+
$number_of_calls = 0;
|
|
671
|
+
assertEquals(text_lastIndexOf(true ? get_fruit() : null, 'an'), 4, 'find last order complex');
|
|
672
|
+
check_number_of_calls('find last order complex');
|
|
673
|
+
$number_of_calls = 0;
|
|
674
|
+
assertEquals(text_indexOf(get_fruit(), 'Peel'), 0, 'find none complex');
|
|
675
|
+
check_number_of_calls('find none complex');
|
|
676
|
+
$number_of_calls = 0;
|
|
677
|
+
assertEquals(text_indexOf(true ? get_fruit() : null, 'Peel'), 0, 'find none order complex');
|
|
678
|
+
check_number_of_calls('find none order complex');
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
function text_random_letter($text) {
|
|
682
|
+
return $text[rand(0, strlen($text) - 1)];
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
// Tests the "get letter" block with a variable.
|
|
686
|
+
function test_get_text_simple() {
|
|
687
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
688
|
+
$text = 'Blockly';
|
|
689
|
+
assertEquals(substr($text, 0, 1), 'B', 'get first simple');
|
|
690
|
+
assertEquals(substr($text, -1), 'y', 'get last simple');
|
|
691
|
+
assertEquals(text_indexOf($text, text_random_letter($text)) > 0, true, 'get random simple');
|
|
692
|
+
assertEquals(substr($text, 2, 1), 'o', 'get # simple');
|
|
693
|
+
assertEquals(substr($text, ((true ? 3 : null) - 1), 1), 'o', 'get # order simple');
|
|
694
|
+
assertEquals(substr($text, -3, 1), 'k', 'get #-end simple');
|
|
695
|
+
// The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
|
|
696
|
+
assertEquals(substr($text, (-(0 + 3)), 1), 'k', 'get #-end order simple');
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
// Creates a string for use with the get test.
|
|
700
|
+
function get_Blockly() {
|
|
701
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
702
|
+
$number_of_calls += 1;
|
|
703
|
+
return 'Blockly';
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
// Tests the "get letter" block with a function call.
|
|
707
|
+
function test_get_text_complex() {
|
|
708
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
709
|
+
$text = 'Blockly';
|
|
710
|
+
$number_of_calls = 0;
|
|
711
|
+
assertEquals(substr(get_Blockly(), 0, 1), 'B', 'get first complex');
|
|
712
|
+
check_number_of_calls('get first complex');
|
|
713
|
+
$number_of_calls = 0;
|
|
714
|
+
assertEquals(substr(true ? get_Blockly() : null, 0, 1), 'B', 'get first order complex');
|
|
715
|
+
check_number_of_calls('get first order complex');
|
|
716
|
+
$number_of_calls = 0;
|
|
717
|
+
assertEquals(substr(get_Blockly(), -1), 'y', 'get last complex');
|
|
718
|
+
check_number_of_calls('get last complex');
|
|
719
|
+
$number_of_calls = 0;
|
|
720
|
+
assertEquals(substr(true ? get_Blockly() : null, -1), 'y', 'get last order complex');
|
|
721
|
+
check_number_of_calls('get last order complex');
|
|
722
|
+
$number_of_calls = 0;
|
|
723
|
+
assertEquals(text_indexOf($text, text_random_letter(get_Blockly())) > 0, true, 'get random complex');
|
|
724
|
+
check_number_of_calls('get random complex');
|
|
725
|
+
$number_of_calls = 0;
|
|
726
|
+
assertEquals(text_indexOf($text, text_random_letter(true ? get_Blockly() : null)) > 0, true, 'get random order complex');
|
|
727
|
+
check_number_of_calls('get random order complex');
|
|
728
|
+
$number_of_calls = 0;
|
|
729
|
+
assertEquals(substr(get_Blockly(), 2, 1), 'o', 'get # complex');
|
|
730
|
+
check_number_of_calls('get # complex');
|
|
731
|
+
$number_of_calls = 0;
|
|
732
|
+
assertEquals(substr(true ? get_Blockly() : null, ((true ? 3 : null) - 1), 1), 'o', 'get # order complex');
|
|
733
|
+
check_number_of_calls('get # order complex');
|
|
734
|
+
$number_of_calls = 0;
|
|
735
|
+
assertEquals(substr(get_Blockly(), -3, 1), 'k', 'get #-end complex');
|
|
736
|
+
check_number_of_calls('get #-end complex');
|
|
737
|
+
$number_of_calls = 0;
|
|
738
|
+
// The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
|
|
739
|
+
assertEquals(substr(true ? get_Blockly() : null, (-(0 + 3)), 1), 'k', 'get #-end order complex');
|
|
740
|
+
check_number_of_calls('get #-end order complex');
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
// Creates a string for use with the substring test.
|
|
744
|
+
function get_numbers() {
|
|
745
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
746
|
+
$number_of_calls += 1;
|
|
747
|
+
return '123456789';
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
function text_get_substring($text, $where1, $at1, $where2, $at2) {
|
|
751
|
+
if ($where1 == 'FROM_END') {
|
|
752
|
+
$at1 = strlen($text) - 1 - $at1;
|
|
753
|
+
} else if ($where1 == 'FIRST') {
|
|
754
|
+
$at1 = 0;
|
|
755
|
+
} else if ($where1 != 'FROM_START') {
|
|
756
|
+
throw new Exception('Unhandled option (text_get_substring).');
|
|
757
|
+
}
|
|
758
|
+
$length = 0;
|
|
759
|
+
if ($where2 == 'FROM_START') {
|
|
760
|
+
$length = $at2 - $at1 + 1;
|
|
761
|
+
} else if ($where2 == 'FROM_END') {
|
|
762
|
+
$length = strlen($text) - $at1 - $at2;
|
|
763
|
+
} else if ($where2 == 'LAST') {
|
|
764
|
+
$length = strlen($text) - $at1;
|
|
765
|
+
} else {
|
|
766
|
+
throw new Exception('Unhandled option (text_get_substring).');
|
|
767
|
+
}
|
|
768
|
+
return substr($text, $at1, $length);
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
// Tests the "get substring" block with a variable.
|
|
772
|
+
function test_substring_simple() {
|
|
773
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
774
|
+
$text = '123456789';
|
|
775
|
+
assertEquals(text_get_substring($text, 'FROM_START', 1, 'FROM_START', 2), '23', 'substring # simple');
|
|
776
|
+
assertEquals(text_get_substring($text, 'FROM_START', ((true ? 2 : null) - 1), 'FROM_START', ((true ? 3 : null) - 1)), '23', 'substring # simple order');
|
|
777
|
+
assertEquals(text_get_substring($text, 'FROM_END', 2, 'FROM_END', 1), '78', 'substring #-end simple');
|
|
778
|
+
// The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
|
|
779
|
+
assertEquals(text_get_substring($text, 'FROM_END', ((0 + 3) - 1), 'FROM_END', ((0 + 2) - 1)), '78', 'substring #-end simple order');
|
|
780
|
+
assertEquals($text, $text, 'substring first-last simple');
|
|
781
|
+
assertEquals(text_get_substring($text, 'FROM_START', 1, 'FROM_END', 1), '2345678', 'substring # #-end simple');
|
|
782
|
+
assertEquals(text_get_substring($text, 'FROM_END', 6, 'FROM_START', 3), '34', 'substring #-end # simple');
|
|
783
|
+
assertEquals(text_get_substring($text, 'FIRST', 0, 'FROM_START', 3), '1234', 'substring first # simple');
|
|
784
|
+
assertEquals(text_get_substring($text, 'FIRST', 0, 'FROM_END', 1), '12345678', 'substring first #-end simple');
|
|
785
|
+
assertEquals(text_get_substring($text, 'FROM_START', 6, 'LAST', 0), '789', 'substring # last simple');
|
|
786
|
+
assertEquals(text_get_substring($text, 'FROM_END', 2, 'LAST', 0), '789', 'substring #-end last simple');
|
|
787
|
+
assertEquals(text_get_substring($text, 'FROM_START', 0, 'FROM_END', 0), '123456789', 'substring all with # #-end simple');
|
|
788
|
+
assertEquals(text_get_substring($text, 'FROM_END', 8, 'FROM_START', 8), '123456789', 'substring all with #-end # simple');
|
|
789
|
+
// Checks that the whole string is properly retrieved even if the value for start and end is not a simple number. This is especially important in generators where substring uses [x:length - y] for # #-end.
|
|
790
|
+
assertEquals(text_get_substring($text, 'FROM_START', ((0 + 1) - 1), 'FROM_END', ((0 + 1) - 1)), '123456789', 'substring all with # #-end math simple');
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
// Tests the "get substring" block with a function call.
|
|
794
|
+
function test_substring_complex() {
|
|
795
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
796
|
+
$number_of_calls = 0;
|
|
797
|
+
assertEquals(text_get_substring(get_numbers(), 'FROM_START', 1, 'FROM_START', 2), '23', 'substring # complex');
|
|
798
|
+
check_number_of_calls('substring # complex');
|
|
799
|
+
$number_of_calls = 0;
|
|
800
|
+
assertEquals(text_get_substring(true ? get_numbers() : null, 'FROM_START', ((true ? 2 : null) - 1), 'FROM_START', ((true ? 3 : null) - 1)), '23', 'substring # complex order');
|
|
801
|
+
check_number_of_calls('substring # complex order');
|
|
802
|
+
$number_of_calls = 0;
|
|
803
|
+
// The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
|
|
804
|
+
assertEquals(text_get_substring(get_numbers(), 'FROM_END', 2, 'FROM_END', 1), '78', 'substring #-end complex');
|
|
805
|
+
check_number_of_calls('substring #-end complex');
|
|
806
|
+
$number_of_calls = 0;
|
|
807
|
+
assertEquals(text_get_substring(true ? get_numbers() : null, 'FROM_END', ((0 + 3) - 1), 'FROM_END', ((0 + 2) - 1)), '78', 'substring #-end order order');
|
|
808
|
+
check_number_of_calls('substring #-end order order');
|
|
809
|
+
$number_of_calls = 0;
|
|
810
|
+
assertEquals(get_numbers(), $text, 'substring first-last');
|
|
811
|
+
check_number_of_calls('substring first-last');
|
|
812
|
+
$number_of_calls = 0;
|
|
813
|
+
assertEquals(text_get_substring(get_numbers(), 'FROM_START', 1, 'FROM_END', 1), '2345678', 'substring # #-end complex');
|
|
814
|
+
check_number_of_calls('substring # #-end complex');
|
|
815
|
+
$number_of_calls = 0;
|
|
816
|
+
assertEquals(text_get_substring(get_numbers(), 'FROM_END', 6, 'FROM_START', 3), '34', 'substring #-end # complex');
|
|
817
|
+
check_number_of_calls('substring #-end # complex');
|
|
818
|
+
$number_of_calls = 0;
|
|
819
|
+
assertEquals(text_get_substring(get_numbers(), 'FIRST', 0, 'FROM_START', 3), '1234', 'substring first # complex');
|
|
820
|
+
check_number_of_calls('substring first # complex');
|
|
821
|
+
$number_of_calls = 0;
|
|
822
|
+
assertEquals(text_get_substring(get_numbers(), 'FIRST', 0, 'FROM_END', 1), '12345678', 'substring first #-end complex');
|
|
823
|
+
check_number_of_calls('substring first #-end complex');
|
|
824
|
+
$number_of_calls = 0;
|
|
825
|
+
assertEquals(text_get_substring(get_numbers(), 'FROM_START', 6, 'LAST', 0), '789', 'substring # last complex');
|
|
826
|
+
check_number_of_calls('substring # last complex');
|
|
827
|
+
$number_of_calls = 0;
|
|
828
|
+
assertEquals(text_get_substring(get_numbers(), 'FROM_END', 2, 'LAST', 0), '789', 'substring #-end last complex');
|
|
829
|
+
check_number_of_calls('substring #-end last complex');
|
|
830
|
+
$number_of_calls = 0;
|
|
831
|
+
assertEquals(text_get_substring(get_numbers(), 'FROM_START', 0, 'FROM_END', 0), '123456789', 'substring all with # #-end complex');
|
|
832
|
+
check_number_of_calls('substring all with # #-end complex');
|
|
833
|
+
$number_of_calls = 0;
|
|
834
|
+
assertEquals(text_get_substring(get_numbers(), 'FROM_END', 8, 'FROM_START', 8), '123456789', 'substring all with #-end # complex');
|
|
835
|
+
check_number_of_calls('substring all with #-end # complex');
|
|
836
|
+
$number_of_calls = 0;
|
|
837
|
+
// Checks that the whole string is properly retrieved even if the value for start and end is not a simple number. This is especially important in generators where substring uses [x:length - y] for # #-end.
|
|
838
|
+
assertEquals(text_get_substring(get_numbers(), 'FROM_START', ((0 + 1) - 1), 'FROM_END', ((0 + 1) - 1)), '123456789', 'substring all with # #-end math complex');
|
|
839
|
+
check_number_of_calls('substring all with # #-end math complex');
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
// Tests the "change casing" block.
|
|
843
|
+
function test_case() {
|
|
844
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
845
|
+
$text = 'Hello World';
|
|
846
|
+
assertEquals(strtoupper($text), 'HELLO WORLD', 'uppercase');
|
|
847
|
+
assertEquals(strtoupper(true ? $text : null), 'HELLO WORLD', 'uppercase order');
|
|
848
|
+
$text = 'Hello World';
|
|
849
|
+
assertEquals(strtolower($text), 'hello world', 'lowercase');
|
|
850
|
+
assertEquals(strtolower(true ? $text : null), 'hello world', 'lowercase order');
|
|
851
|
+
$text = 'heLLo WorlD';
|
|
852
|
+
assertEquals(ucwords(strtolower($text)), 'Hello World', 'titlecase');
|
|
853
|
+
assertEquals(ucwords(strtolower(true ? $text : null)), 'Hello World', 'titlecase order');
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
// Tests the "trim" block.
|
|
857
|
+
function test_trim() {
|
|
858
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
859
|
+
$text = ' abc def ';
|
|
860
|
+
assertEquals(trim($text), 'abc def', 'trim both');
|
|
861
|
+
assertEquals(trim(true ? $text : null), 'abc def', 'trim both order');
|
|
862
|
+
assertEquals(ltrim($text), 'abc def ', 'trim left');
|
|
863
|
+
assertEquals(ltrim(true ? $text : null), 'abc def ', 'trim left order');
|
|
864
|
+
assertEquals(rtrim($text), ' abc def', 'trim right');
|
|
865
|
+
assertEquals(rtrim(true ? $text : null), ' abc def', 'trim right order');
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
// Tests the "trim" block.
|
|
869
|
+
function test_count_text() {
|
|
870
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
871
|
+
$text = 'woolloomooloo';
|
|
872
|
+
assertEquals(strlen('o') === 0 ? strlen($text) + 1 : substr_count($text, 'o'), 8, 'len 1');
|
|
873
|
+
assertEquals(strlen('oo') === 0 ? strlen($text) + 1 : substr_count($text, 'oo'), 4, 'len 2');
|
|
874
|
+
assertEquals(strlen('loo') === 0 ? strlen($text) + 1 : substr_count($text, 'loo'), 2, 'len 3');
|
|
875
|
+
assertEquals(strlen('wool') === 0 ? strlen($text) + 1 : substr_count($text, 'wool'), 1, 'start');
|
|
876
|
+
assertEquals(strlen('chicken') === 0 ? strlen($text) + 1 : substr_count($text, 'chicken'), 0, 'missing');
|
|
877
|
+
assertEquals(strlen('') === 0 ? strlen($text) + 1 : substr_count($text, ''), 14, 'empty needle');
|
|
878
|
+
assertEquals(strlen('chicken') === 0 ? strlen('') + 1 : substr_count('', 'chicken'), 0, 'empty source');
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
// Tests the "trim" block.
|
|
882
|
+
function test_text_reverse() {
|
|
883
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
884
|
+
assertEquals(strrev(''), '', 'empty string');
|
|
885
|
+
assertEquals(strrev('a'), 'a', 'len 1');
|
|
886
|
+
assertEquals(strrev('ab'), 'ba', 'len 2');
|
|
887
|
+
assertEquals(strrev('woolloomooloo'), 'ooloomoolloow', 'longer');
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
// Tests the "trim" block.
|
|
891
|
+
function test_replace() {
|
|
892
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
893
|
+
assertEquals(str_replace('oo', '123', 'woolloomooloo'), 'w123ll123m123l123', 'replace all instances 1');
|
|
894
|
+
assertEquals(str_replace('.oo', 'X', 'woolloomooloo'), 'woolloomooloo', 'literal string replacement');
|
|
895
|
+
assertEquals(str_replace('abc', 'X', 'woolloomooloo'), 'woolloomooloo', 'not found');
|
|
896
|
+
assertEquals(str_replace('o', '', 'woolloomooloo'), 'wllml', 'empty replacement 1');
|
|
897
|
+
assertEquals(str_replace('aaaaa', '', 'aaaaa'), '', 'empty replacement 2');
|
|
898
|
+
assertEquals(str_replace('a', '', 'aaaaa'), '', 'empty replacement 3');
|
|
899
|
+
assertEquals(str_replace('a', 'chicken', ''), '', 'empty source');
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
// Checks that the number of calls is one in order
|
|
903
|
+
// to confirm that a function was only called once.
|
|
904
|
+
function check_number_of_calls2($test_name) {
|
|
905
|
+
global $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
906
|
+
$test_name .= 'number of calls';
|
|
907
|
+
assertEquals($number_of_calls, 1, $test_name);
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
function lists_repeat($value, $count) {
|
|
911
|
+
$array = array();
|
|
912
|
+
for ($index = 0; $index < $count; $index++) {
|
|
913
|
+
$array[] = $value;
|
|
914
|
+
}
|
|
915
|
+
return $array;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
// Tests the "create list with" and "create empty list" blocks.
|
|
919
|
+
function test_create_lists() {
|
|
920
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
921
|
+
assertEquals(array(), array(), 'create empty');
|
|
922
|
+
assertEquals(array(true, 'love'), array(true, 'love'), 'create items');
|
|
923
|
+
assertEquals(lists_repeat('Eject', 3), array('Eject', 'Eject', 'Eject'), 'create repeated');
|
|
924
|
+
assertEquals(lists_repeat('Eject', 0 + 3), array('Eject', 'Eject', 'Eject'), 'create repeated order');
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
// Creates an empty list for use with the empty test.
|
|
928
|
+
function get_empty_list() {
|
|
929
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
930
|
+
return array();
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
// Tests the "is empty" block.
|
|
934
|
+
function test_lists_empty() {
|
|
935
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
936
|
+
assertEquals(empty((array(0))), false, 'not empty');
|
|
937
|
+
assertEquals(empty((array())), true, 'empty');
|
|
938
|
+
assertEquals(empty((get_empty_list())), true, 'empty complex');
|
|
939
|
+
assertEquals(empty((true ? array() : null)), true, 'empty order');
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
// Tests the "length" block.
|
|
943
|
+
function test_lists_length() {
|
|
944
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
945
|
+
assertEquals(length(array()), 0, 'zero length');
|
|
946
|
+
assertEquals(length(array('cat')), 1, 'one length');
|
|
947
|
+
assertEquals(length(array('cat', true, array())), 3, 'three length');
|
|
948
|
+
assertEquals(length(true ? array('cat', true) : null), 2, 'two length order');
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
function lastIndexOf($haystack, $needle) {
|
|
952
|
+
$last = 0;
|
|
953
|
+
for ($index = 0; $index < count($haystack); $index++) {
|
|
954
|
+
if ($haystack[$index] == $needle) $last = $index + 1;
|
|
955
|
+
}
|
|
956
|
+
return $last;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
// Tests the "find" block with a variable.
|
|
960
|
+
function test_find_lists_simple() {
|
|
961
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
962
|
+
$list2 = array('Alice', 'Eve', 'Bob', 'Eve');
|
|
963
|
+
assertEquals(indexOf($list2, 'Eve'), 2, 'find first simple');
|
|
964
|
+
assertEquals(lastIndexOf($list2, 'Eve'), 4, 'find last simple');
|
|
965
|
+
assertEquals(indexOf($list2, 'Dave'), 0, 'find none simple');
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
// Creates a list for use with the find test.
|
|
969
|
+
function get_names() {
|
|
970
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
971
|
+
$number_of_calls += 1;
|
|
972
|
+
return array('Alice', 'Eve', 'Bob', 'Eve');
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
// Tests the "find" block with a function call.
|
|
976
|
+
function test_find_lists_complex() {
|
|
977
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
978
|
+
$number_of_calls = 0;
|
|
979
|
+
assertEquals(indexOf(get_names(), 'Eve'), 2, 'find first complex');
|
|
980
|
+
check_number_of_calls('find first complex');
|
|
981
|
+
$number_of_calls = 0;
|
|
982
|
+
assertEquals(indexOf((true ? get_names() : null), 'Eve'), 2, 'find first order complex');
|
|
983
|
+
check_number_of_calls('find first order complex');
|
|
984
|
+
$number_of_calls = 0;
|
|
985
|
+
assertEquals(lastIndexOf(get_names(), 'Eve'), 4, 'find last complex');
|
|
986
|
+
check_number_of_calls('find last complex');
|
|
987
|
+
$number_of_calls = 0;
|
|
988
|
+
assertEquals(lastIndexOf((true ? get_names() : null), 'Eve'), 4, 'find last order complex');
|
|
989
|
+
check_number_of_calls('find last order complex');
|
|
990
|
+
$number_of_calls = 0;
|
|
991
|
+
assertEquals(indexOf(get_names(), 'Dave'), 0, 'find none complex');
|
|
992
|
+
check_number_of_calls('find none complex');
|
|
993
|
+
$number_of_calls = 0;
|
|
994
|
+
assertEquals(indexOf((true ? get_names() : null), 'Dave'), 0, 'find none order complex');
|
|
995
|
+
check_number_of_calls('find none order complex');
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
function lists_get_random_item($list) {
|
|
999
|
+
return $list[rand(0,count($list)-1)];
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
// Tests the "get" block with a variable.
|
|
1003
|
+
function test_get_lists_simple() {
|
|
1004
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1005
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1006
|
+
assertEquals($list2[0], 'Kirk', 'get first simple');
|
|
1007
|
+
assertEquals(end($list2), 'McCoy', 'get last simple');
|
|
1008
|
+
assertEquals(indexOf($list2, lists_get_random_item($list2)) > 0, true, 'get random simple');
|
|
1009
|
+
assertEquals($list2[1], 'Spock', 'get # simple');
|
|
1010
|
+
assertEquals($list2[((true ? 2 : null) - 1)], 'Spock', 'get # order simple');
|
|
1011
|
+
assertEquals(array_slice($list2, -3, 1)[0], 'Kirk', 'get #-end simple');
|
|
1012
|
+
// The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
|
|
1013
|
+
assertEquals(array_slice($list2, (-(0 + 3)), 1)[0], 'Kirk', 'get #-end order simple');
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
// Tests the "get" block with create list call.
|
|
1017
|
+
function test_get_lists_create_list() {
|
|
1018
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1019
|
+
assertEquals(array('Kirk', 'Spock', 'McCoy')[0], 'Kirk', 'get first create list');
|
|
1020
|
+
assertEquals(end(array('Kirk', 'Spock', 'McCoy')), 'McCoy', 'get last simple');
|
|
1021
|
+
assertEquals(indexOf(array('Kirk', 'Spock', 'McCoy'), lists_get_random_item(array('Kirk', 'Spock', 'McCoy'))) > 0, true, 'get random simple');
|
|
1022
|
+
assertEquals(array('Kirk', 'Spock', 'McCoy')[1], 'Spock', 'get # simple');
|
|
1023
|
+
assertEquals(array('Kirk', 'Spock', 'McCoy')[((true ? 2 : null) - 1)], 'Spock', 'get # order simple');
|
|
1024
|
+
assertEquals(array_slice(array('Kirk', 'Spock', 'McCoy'), -3, 1)[0], 'Kirk', 'get #-end simple');
|
|
1025
|
+
// The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
|
|
1026
|
+
assertEquals(array_slice(array('Kirk', 'Spock', 'McCoy'), (-(0 + 3)), 1)[0], 'Kirk', 'get #-end order simple');
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
// Creates a list for use with the get test.
|
|
1030
|
+
function get_star_wars() {
|
|
1031
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1032
|
+
$number_of_calls += 1;
|
|
1033
|
+
return array('Kirk', 'Spock', 'McCoy');
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
// Tests the "get" block with a function call.
|
|
1037
|
+
function test_get_lists_complex() {
|
|
1038
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1039
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1040
|
+
$number_of_calls = 0;
|
|
1041
|
+
assertEquals(get_star_wars()[0], 'Kirk', 'get first complex');
|
|
1042
|
+
check_number_of_calls('get first complex');
|
|
1043
|
+
$number_of_calls = 0;
|
|
1044
|
+
assertEquals((true ? get_star_wars() : null)[0], 'Kirk', 'get first order complex');
|
|
1045
|
+
check_number_of_calls('get first order complex');
|
|
1046
|
+
$number_of_calls = 0;
|
|
1047
|
+
assertEquals(end(get_star_wars()), 'McCoy', 'get last complex');
|
|
1048
|
+
check_number_of_calls('get last complex');
|
|
1049
|
+
$number_of_calls = 0;
|
|
1050
|
+
assertEquals(end(true ? get_star_wars() : null), 'McCoy', 'get last order complex');
|
|
1051
|
+
check_number_of_calls('get last order complex');
|
|
1052
|
+
$number_of_calls = 0;
|
|
1053
|
+
assertEquals(indexOf($list2, lists_get_random_item(get_star_wars())) > 0, true, 'get random complex');
|
|
1054
|
+
check_number_of_calls('get random complex');
|
|
1055
|
+
$number_of_calls = 0;
|
|
1056
|
+
assertEquals(indexOf($list2, lists_get_random_item(true ? get_star_wars() : null)) > 0, true, 'get random order complex');
|
|
1057
|
+
check_number_of_calls('get random order complex');
|
|
1058
|
+
$number_of_calls = 0;
|
|
1059
|
+
assertEquals(get_star_wars()[1], 'Spock', 'get # complex');
|
|
1060
|
+
check_number_of_calls('get # complex');
|
|
1061
|
+
$number_of_calls = 0;
|
|
1062
|
+
assertEquals((true ? get_star_wars() : null)[((true ? 2 : null) - 1)], 'Spock', 'get # order complex');
|
|
1063
|
+
check_number_of_calls('get # order complex');
|
|
1064
|
+
$number_of_calls = 0;
|
|
1065
|
+
assertEquals(array_slice(get_star_wars(), -3, 1)[0], 'Kirk', 'get #-end complex');
|
|
1066
|
+
check_number_of_calls('get #-end complex');
|
|
1067
|
+
$number_of_calls = 0;
|
|
1068
|
+
// The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
|
|
1069
|
+
assertEquals(array_slice(true ? get_star_wars() : null, (-(0 + 3)), 1)[0], 'Kirk', 'get #-end order complex');
|
|
1070
|
+
check_number_of_calls('get #-end order complex');
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
function lists_get_remove_random_item(&$list) {
|
|
1074
|
+
$x = rand(0,count($list)-1);
|
|
1075
|
+
unset($list[$x]);
|
|
1076
|
+
return array_values($list);
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
// Tests the "get and remove" block.
|
|
1080
|
+
function test_getRemove() {
|
|
1081
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1082
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1083
|
+
assertEquals(array_shift($list2), 'Kirk', 'getremove first');
|
|
1084
|
+
assertEquals($list2, array('Spock', 'McCoy'), 'getremove first list');
|
|
1085
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1086
|
+
assertEquals(array_shift(true ? $list2 : null), 'Kirk', 'getremove first order');
|
|
1087
|
+
assertEquals($list2, array('Spock', 'McCoy'), 'getremove first order list');
|
|
1088
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1089
|
+
assertEquals(array_pop($list2), 'McCoy', 'getremove last');
|
|
1090
|
+
assertEquals($list2, array('Kirk', 'Spock'), 'getremove last list');
|
|
1091
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1092
|
+
assertEquals(array_pop(true ? $list2 : null), 'McCoy', 'getremove last order');
|
|
1093
|
+
assertEquals($list2, array('Kirk', 'Spock'), 'getremove last order list');
|
|
1094
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1095
|
+
assertEquals(indexOf($list2, lists_get_remove_random_item($list2)) == 0, true, 'getremove random');
|
|
1096
|
+
assertEquals(length($list2), 2, 'getremove random list');
|
|
1097
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1098
|
+
assertEquals(indexOf($list2, lists_get_remove_random_item(true ? $list2 : null)) == 0, true, 'getremove random order');
|
|
1099
|
+
assertEquals(length($list2), 2, 'getremove random order list');
|
|
1100
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1101
|
+
assertEquals(array_splice($list2, 1, 1)[0], 'Spock', 'getremove #');
|
|
1102
|
+
assertEquals($list2, array('Kirk', 'McCoy'), 'getremove # list');
|
|
1103
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1104
|
+
assertEquals(array_splice(true ? $list2 : null, ((true ? 2 : null) - 1), 1)[0], 'Spock', 'getremove # order');
|
|
1105
|
+
assertEquals($list2, array('Kirk', 'McCoy'), 'getremove # order list');
|
|
1106
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1107
|
+
assertEquals(array_splice($list2, count($list2) - 3, 1)[0], 'Kirk', 'getremove #-end');
|
|
1108
|
+
assertEquals($list2, array('Spock', 'McCoy'), 'getremove #-end list');
|
|
1109
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1110
|
+
// The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
|
|
1111
|
+
assertEquals(array_splice(true ? $list2 : null, count(true ? $list2 : null) - (0 + 3), 1)[0], 'Kirk', 'getremove #-end order');
|
|
1112
|
+
assertEquals($list2, array('Spock', 'McCoy'), 'getremove #-end order list');
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
function lists_remove_random_item(&$list) {
|
|
1116
|
+
unset($list[rand(0,count($list)-1)]);
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
// Tests the "remove" block.
|
|
1120
|
+
function test_remove() {
|
|
1121
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1122
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1123
|
+
array_shift($list2);
|
|
1124
|
+
assertEquals($list2, array('Spock', 'McCoy'), 'remove first list');
|
|
1125
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1126
|
+
array_shift(true ? $list2 : null);
|
|
1127
|
+
assertEquals($list2, array('Spock', 'McCoy'), 'remove first order list');
|
|
1128
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1129
|
+
array_pop($list2);
|
|
1130
|
+
assertEquals($list2, array('Kirk', 'Spock'), 'remove last list');
|
|
1131
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1132
|
+
array_pop(true ? $list2 : null);
|
|
1133
|
+
assertEquals($list2, array('Kirk', 'Spock'), 'remove last order list');
|
|
1134
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1135
|
+
lists_remove_random_item($list2);
|
|
1136
|
+
assertEquals(length($list2), 2, 'remove random list');
|
|
1137
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1138
|
+
lists_remove_random_item(true ? $list2 : null);
|
|
1139
|
+
assertEquals(length($list2), 2, 'remove random order list');
|
|
1140
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1141
|
+
array_splice($list2, 1, 1);
|
|
1142
|
+
assertEquals($list2, array('Kirk', 'McCoy'), 'remove # list');
|
|
1143
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1144
|
+
array_splice(true ? $list2 : null, ((true ? 2 : null) - 1), 1);
|
|
1145
|
+
assertEquals($list2, array('Kirk', 'McCoy'), 'remove # order list');
|
|
1146
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1147
|
+
array_splice($list2, count($list2) - 3, 1)[0];
|
|
1148
|
+
assertEquals($list2, array('Spock', 'McCoy'), 'remove #-end list');
|
|
1149
|
+
$list2 = array('Kirk', 'Spock', 'McCoy');
|
|
1150
|
+
// The order for index for #-end is addition because this will catch
|
|
1151
|
+
// errors in generators where most perform the operation ... - index.
|
|
1152
|
+
array_splice(true ? $list2 : null, count(true ? $list2 : null) - (0 + 3), 1)[0];
|
|
1153
|
+
assertEquals($list2, array('Spock', 'McCoy'), 'remove #-end order list');
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
function lists_set_last_item(&$list, $value) {
|
|
1157
|
+
$list[count($list) - 1] = $value;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
function lists_set_from_end(&$list, $at, $value) {
|
|
1161
|
+
$list[count($list) - $at] = $value;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
// Tests the "set" block.
|
|
1165
|
+
function test_set() {
|
|
1166
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1167
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1168
|
+
$list2[0] = 'Jean-Luc';
|
|
1169
|
+
assertEquals($list2, array('Jean-Luc', 'Riker', 'Crusher'), 'set first list');
|
|
1170
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1171
|
+
(true ? $list2 : null)[0] = 'Jean-Luc';
|
|
1172
|
+
assertEquals($list2, array('Jean-Luc', 'Riker', 'Crusher'), 'set first order list');
|
|
1173
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1174
|
+
lists_set_last_item($list2, 'Beverly');
|
|
1175
|
+
assertEquals($list2, array('Picard', 'Riker', 'Beverly'), 'set last list');
|
|
1176
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1177
|
+
lists_set_last_item(true ? $list2 : null, 'Beverly');
|
|
1178
|
+
assertEquals($list2, array('Picard', 'Riker', 'Beverly'), 'set last order list');
|
|
1179
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1180
|
+
$tmp_x = rand(0, count($list2)-1);
|
|
1181
|
+
$list2[$tmp_x] = 'Data';
|
|
1182
|
+
assertEquals(length($list2), 3, 'set random list');
|
|
1183
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1184
|
+
$tmp_list = &(true ? $list2 : null);
|
|
1185
|
+
$tmp_x2 = rand(0, count($tmp_list)-1);
|
|
1186
|
+
$tmp_list[$tmp_x2] = 'Data';
|
|
1187
|
+
assertEquals(length($list2), 3, 'set random order list');
|
|
1188
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1189
|
+
$list2[2] = 'Pulaski';
|
|
1190
|
+
assertEquals($list2, array('Picard', 'Riker', 'Pulaski'), 'set # list');
|
|
1191
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1192
|
+
(true ? $list2 : null)[((true ? 3 : null) - 1)] = 'Pulaski';
|
|
1193
|
+
assertEquals($list2, array('Picard', 'Riker', 'Pulaski'), 'set # order list');
|
|
1194
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1195
|
+
lists_set_from_end($list2, 1, 'Pulaski');
|
|
1196
|
+
assertEquals($list2, array('Picard', 'Riker', 'Pulaski'), 'set #-end list');
|
|
1197
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1198
|
+
// The order for index for #-end is addition because this will catch
|
|
1199
|
+
// errors in generators where most perform the operation ... - index.
|
|
1200
|
+
lists_set_from_end(true ? $list2 : null, 0 + 2, 'Pulaski');
|
|
1201
|
+
assertEquals($list2, array('Picard', 'Pulaski', 'Crusher'), 'set #-end order list');
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
function lists_insert_from_end(&$list, $at, $value) {
|
|
1205
|
+
return array_splice($list, count($list) - $at, 0, $value);
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
// Tests the "insert" block.
|
|
1209
|
+
function test_insert() {
|
|
1210
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1211
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1212
|
+
array_unshift($list2, 'Data');
|
|
1213
|
+
assertEquals($list2, array('Data', 'Picard', 'Riker', 'Crusher'), 'insert first list');
|
|
1214
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1215
|
+
array_unshift(true ? $list2 : null, 'Data');
|
|
1216
|
+
assertEquals($list2, array('Data', 'Picard', 'Riker', 'Crusher'), 'insert first order list');
|
|
1217
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1218
|
+
array_push($list2, 'Data');
|
|
1219
|
+
assertEquals($list2, array('Picard', 'Riker', 'Crusher', 'Data'), 'insert last list');
|
|
1220
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1221
|
+
array_push(true ? $list2 : null, 'Data');
|
|
1222
|
+
assertEquals($list2, array('Picard', 'Riker', 'Crusher', 'Data'), 'insert last order list');
|
|
1223
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1224
|
+
$tmp_x3 = rand(0, count($list2)-1);
|
|
1225
|
+
array_splice($list2, $tmp_x3, 0, 'Data');
|
|
1226
|
+
assertEquals(length($list2), 4, 'insert random list');
|
|
1227
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1228
|
+
$tmp_list2 = &(true ? $list2 : null);
|
|
1229
|
+
$tmp_x4 = rand(0, count($tmp_list2)-1);
|
|
1230
|
+
array_splice($tmp_list2, $tmp_x4, 0, 'Data');
|
|
1231
|
+
assertEquals(length($list2), 4, 'insert random order list');
|
|
1232
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1233
|
+
array_splice($list2, 2, 0, 'Data');
|
|
1234
|
+
assertEquals($list2, array('Picard', 'Riker', 'Data', 'Crusher'), 'insert # list');
|
|
1235
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1236
|
+
array_splice(true ? $list2 : null, ((true ? 3 : null) - 1), 0, 'Data');
|
|
1237
|
+
assertEquals($list2, array('Picard', 'Riker', 'Data', 'Crusher'), 'insert # order list');
|
|
1238
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1239
|
+
lists_insert_from_end($list2, 1, 'Data');
|
|
1240
|
+
assertEquals($list2, array('Picard', 'Riker', 'Data', 'Crusher'), 'insert #-end list');
|
|
1241
|
+
$list2 = array('Picard', 'Riker', 'Crusher');
|
|
1242
|
+
// The order for index for #-end is addition because this will catch
|
|
1243
|
+
// errors in generators where most perform the operation ... - index.
|
|
1244
|
+
lists_insert_from_end(true ? $list2 : null, 0 + 2, 'Data');
|
|
1245
|
+
assertEquals($list2, array('Picard', 'Data', 'Riker', 'Crusher'), 'insert #-end order list');
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
// Tests the "get sub-list" block with a variable.
|
|
1249
|
+
function test_sublist_simple() {
|
|
1250
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1251
|
+
$list2 = array('Columbia', 'Challenger', 'Discovery', 'Atlantis', 'Endeavour');
|
|
1252
|
+
assertEquals(array_slice($list2, 1, 2 - 1 + 1), array('Challenger', 'Discovery'), 'sublist # simple');
|
|
1253
|
+
assertEquals(array_slice($list2, ((true ? 2 : null) - 1), ((true ? 3 : null) - 1) - ((true ? 2 : null) - 1) + 1), array('Challenger', 'Discovery'), 'sublist # simple order');
|
|
1254
|
+
assertEquals(array_slice($list2, count($list2) - 3, count($list2) - 1 - (count($list2) - 3)), array('Discovery', 'Atlantis'), 'sublist #-end simple');
|
|
1255
|
+
// The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
|
|
1256
|
+
assertEquals(array_slice($list2, count($list2) - (0 + 3), count($list2) - ((0 + 2) - 1) - (count($list2) - (0 + 3))), array('Discovery', 'Atlantis'), 'sublist #-end simple order');
|
|
1257
|
+
assertEquals($list2, $list2, 'sublist first-last simple');
|
|
1258
|
+
$changing_list = array('Columbia', 'Challenger', 'Discovery', 'Atlantis', 'Endeavour');
|
|
1259
|
+
$list_copy = $changing_list;
|
|
1260
|
+
lists_remove_random_item($changing_list);
|
|
1261
|
+
assertEquals($list_copy, $list2, 'sublist first-last simple copy check');
|
|
1262
|
+
assertEquals(array_slice($list2, 1, count($list2) - 1 - 1), array('Challenger', 'Discovery', 'Atlantis'), 'sublist # #-end simple');
|
|
1263
|
+
assertEquals(array_slice($list2, count($list2) - 3, 3 - (count($list2) - 3) + 1), array('Discovery', 'Atlantis'), 'sublist #-end # simple');
|
|
1264
|
+
assertEquals(array_slice($list2, 0, 3 - 0 + 1), array('Columbia', 'Challenger', 'Discovery', 'Atlantis'), 'sublist first # simple');
|
|
1265
|
+
assertEquals(array_slice($list2, 0, count($list2) - 3 - 0), array('Columbia', 'Challenger'), 'sublist first #-end simple');
|
|
1266
|
+
assertEquals(array_slice($list2, 3, count($list2) - 3), array('Atlantis', 'Endeavour'), 'sublist # last simple');
|
|
1267
|
+
assertEquals(array_slice($list2, count($list2) - 4, count($list2) - (count($list2) - 4)), array('Challenger', 'Discovery', 'Atlantis', 'Endeavour'), 'sublist #-end last simple');
|
|
1268
|
+
assertEquals(array_slice($list2, 0, count($list2) - 0 - 0), $list2, 'sublist all with # #-end simple');
|
|
1269
|
+
assertEquals(array_slice($list2, count($list2) - 5, 4 - (count($list2) - 5) + 1), $list2, 'sublist all with #-end # simple');
|
|
1270
|
+
// Checks that the whole list is properly retrieved even if the value for start and end is not a simple number. This is especially important in generators where sublist uses [x:length - y] for # #-end.
|
|
1271
|
+
assertEquals(array_slice($list2, ((0 + 1) - 1), count($list2) - ((0 + 1) - 1) - ((0 + 1) - 1)), $list2, 'sublist all with # #-end math simple');
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
// Creates a list for use with the sublist test.
|
|
1275
|
+
function get_space_shuttles() {
|
|
1276
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1277
|
+
$number_of_calls += 1;
|
|
1278
|
+
return array('Columbia', 'Challenger', 'Discovery', 'Atlantis', 'Endeavour');
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
function lists_get_sublist($list, $where1, $at1, $where2, $at2) {
|
|
1282
|
+
if ($where1 == 'FROM_END') {
|
|
1283
|
+
$at1 = count($list) - 1 - $at1;
|
|
1284
|
+
} else if ($where1 == 'FIRST') {
|
|
1285
|
+
$at1 = 0;
|
|
1286
|
+
} else if ($where1 != 'FROM_START') {
|
|
1287
|
+
throw new Exception('Unhandled option (lists_get_sublist).');
|
|
1288
|
+
}
|
|
1289
|
+
$length = 0;
|
|
1290
|
+
if ($where2 == 'FROM_START') {
|
|
1291
|
+
$length = $at2 - $at1 + 1;
|
|
1292
|
+
} else if ($where2 == 'FROM_END') {
|
|
1293
|
+
$length = count($list) - $at1 - $at2;
|
|
1294
|
+
} else if ($where2 == 'LAST') {
|
|
1295
|
+
$length = count($list) - $at1;
|
|
1296
|
+
} else {
|
|
1297
|
+
throw new Exception('Unhandled option (lists_get_sublist).');
|
|
1298
|
+
}
|
|
1299
|
+
return array_slice($list, $at1, $length);
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
// Tests the "get sub-list" block with a function call.
|
|
1303
|
+
function test_sublist_complex() {
|
|
1304
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1305
|
+
$number_of_calls = 0;
|
|
1306
|
+
assertEquals(array_slice(get_space_shuttles(), 1, 2 - 1 + 1), array('Challenger', 'Discovery'), 'sublist # start complex');
|
|
1307
|
+
check_number_of_calls('sublist # start complex');
|
|
1308
|
+
$number_of_calls = 0;
|
|
1309
|
+
assertEquals(array_slice(true ? get_space_shuttles() : null, ((true ? 2 : null) - 1), ((true ? 3 : null) - 1) - ((true ? 2 : null) - 1) + 1), array('Challenger', 'Discovery'), 'sublist # start order complex');
|
|
1310
|
+
check_number_of_calls('sublist # start order complex');
|
|
1311
|
+
$number_of_calls = 0;
|
|
1312
|
+
// The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
|
|
1313
|
+
assertEquals(lists_get_sublist(get_space_shuttles(), 'FROM_END', 2, 'FROM_END', 1), array('Discovery', 'Atlantis'), 'sublist # end complex');
|
|
1314
|
+
assertEquals($number_of_calls, 1, 'sublist # end complex number of calls');
|
|
1315
|
+
$number_of_calls = 0;
|
|
1316
|
+
assertEquals(lists_get_sublist(true ? get_space_shuttles() : null, 'FROM_END', ((0 + 3) - 1), 'FROM_END', ((0 + 2) - 1)), array('Discovery', 'Atlantis'), 'sublist # end order complex');
|
|
1317
|
+
check_number_of_calls('sublist # end order complex');
|
|
1318
|
+
$number_of_calls = 0;
|
|
1319
|
+
assertEquals(get_space_shuttles(), $list2, 'sublist first-last complex');
|
|
1320
|
+
check_number_of_calls('sublist first-last complex');
|
|
1321
|
+
$number_of_calls = 0;
|
|
1322
|
+
assertEquals(lists_get_sublist(get_space_shuttles(), 'FROM_START', 1, 'FROM_END', 1), array('Challenger', 'Discovery', 'Atlantis'), 'sublist # #-end complex');
|
|
1323
|
+
check_number_of_calls('sublist # #-end complex');
|
|
1324
|
+
$number_of_calls = 0;
|
|
1325
|
+
assertEquals(lists_get_sublist(get_space_shuttles(), 'FROM_END', 2, 'FROM_START', 3), array('Discovery', 'Atlantis'), 'sublist #-end # complex');
|
|
1326
|
+
check_number_of_calls('sublist #-end # complex');
|
|
1327
|
+
$number_of_calls = 0;
|
|
1328
|
+
assertEquals(array_slice(get_space_shuttles(), 0, 3 - 0 + 1), array('Columbia', 'Challenger', 'Discovery', 'Atlantis'), 'sublist first # complex');
|
|
1329
|
+
check_number_of_calls('sublist first # complex');
|
|
1330
|
+
$number_of_calls = 0;
|
|
1331
|
+
assertEquals(lists_get_sublist(get_space_shuttles(), 'FIRST', 0, 'FROM_END', 3), array('Columbia', 'Challenger'), 'sublist first #-end complex');
|
|
1332
|
+
check_number_of_calls('sublist first #-end complex');
|
|
1333
|
+
$number_of_calls = 0;
|
|
1334
|
+
assertEquals(lists_get_sublist(get_space_shuttles(), 'FROM_START', 3, 'LAST', 0), array('Atlantis', 'Endeavour'), 'sublist # last complex');
|
|
1335
|
+
check_number_of_calls('sublist # last complex');
|
|
1336
|
+
$number_of_calls = 0;
|
|
1337
|
+
assertEquals(lists_get_sublist(get_space_shuttles(), 'FROM_END', 3, 'LAST', 0), array('Challenger', 'Discovery', 'Atlantis', 'Endeavour'), 'sublist #-end last simple');
|
|
1338
|
+
check_number_of_calls('sublist #-end last simple');
|
|
1339
|
+
$number_of_calls = 0;
|
|
1340
|
+
assertEquals(lists_get_sublist(get_space_shuttles(), 'FROM_START', 0, 'FROM_END', 0), $list2, 'sublist all with # #-end complex');
|
|
1341
|
+
check_number_of_calls('sublist all with # #-end complex');
|
|
1342
|
+
$number_of_calls = 0;
|
|
1343
|
+
assertEquals(lists_get_sublist(get_space_shuttles(), 'FROM_END', 4, 'FROM_START', 4), $list2, 'sublist all with #-end # complex');
|
|
1344
|
+
check_number_of_calls('sublist all with #-end # complex');
|
|
1345
|
+
$number_of_calls = 0;
|
|
1346
|
+
// Checks that the whole list is properly retrieved even if the value for start and end is not a simple number. This is especially important in generators where sublist uses [x:length - y] for # #-end.
|
|
1347
|
+
assertEquals(lists_get_sublist(get_space_shuttles(), 'FROM_START', ((0 + 1) - 1), 'FROM_END', ((0 + 1) - 1)), $list2, 'sublist all with # #-end math complex');
|
|
1348
|
+
check_number_of_calls('sublist all with # #-end math complex');
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
// Tests the "join" block.
|
|
1352
|
+
function test_join() {
|
|
1353
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1354
|
+
$list2 = array('Vulcan', 'Klingon', 'Borg');
|
|
1355
|
+
assertEquals(implode(',', $list2), 'Vulcan,Klingon,Borg', 'join');
|
|
1356
|
+
assertEquals(implode(',', true ? $list2 : null), 'Vulcan,Klingon,Borg', 'join order');
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
// Tests the "split" block.
|
|
1360
|
+
function test_split() {
|
|
1361
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1362
|
+
$text = 'Vulcan,Klingon,Borg';
|
|
1363
|
+
assertEquals(explode(',', $text), array('Vulcan', 'Klingon', 'Borg'), 'split');
|
|
1364
|
+
assertEquals(explode(',', true ? $text : null), array('Vulcan', 'Klingon', 'Borg'), 'split order');
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
function lists_sort($list, $type, $direction) {
|
|
1368
|
+
$sortCmpFuncs = array(
|
|
1369
|
+
'NUMERIC' => 'strnatcasecmp',
|
|
1370
|
+
'TEXT' => 'strcmp',
|
|
1371
|
+
'IGNORE_CASE' => 'strcasecmp'
|
|
1372
|
+
);
|
|
1373
|
+
$sortCmp = $sortCmpFuncs[$type];
|
|
1374
|
+
$list2 = $list;
|
|
1375
|
+
usort($list2, $sortCmp);
|
|
1376
|
+
if ($direction == -1) {
|
|
1377
|
+
$list2 = array_reverse($list2);
|
|
1378
|
+
}
|
|
1379
|
+
return $list2;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
// Tests the "alphabetic sort" block.
|
|
1383
|
+
function test_sort_alphabetic() {
|
|
1384
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1385
|
+
$list2 = array('Vulcan', 'klingon', 'Borg');
|
|
1386
|
+
assertEquals(lists_sort($list2, "TEXT", 1), array('Borg', 'Vulcan', 'klingon'), 'sort alphabetic ascending');
|
|
1387
|
+
assertEquals(lists_sort(true ? $list2 : null, "TEXT", 1), array('Borg', 'Vulcan', 'klingon'), 'sort alphabetic ascending order');
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
// Tests the "alphabetic sort ignore case" block.
|
|
1391
|
+
function test_sort_ignoreCase() {
|
|
1392
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1393
|
+
$list2 = array('Vulcan', 'klingon', 'Borg');
|
|
1394
|
+
assertEquals(lists_sort($list2, "IGNORE_CASE", 1), array('Borg', 'klingon', 'Vulcan'), 'sort ignore case ascending');
|
|
1395
|
+
assertEquals(lists_sort(true ? $list2 : null, "IGNORE_CASE", 1), array('Borg', 'klingon', 'Vulcan'), 'sort ignore case ascending order');
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
// Tests the "numeric sort" block.
|
|
1399
|
+
function test_sort_numeric() {
|
|
1400
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1401
|
+
$list2 = array(8, 18, -1);
|
|
1402
|
+
assertEquals(lists_sort($list2, "NUMERIC", -1), array(18, 8, -1), 'sort numeric descending');
|
|
1403
|
+
assertEquals(lists_sort(true ? $list2 : null, "NUMERIC", -1), array(18, 8, -1), 'sort numeric descending order');
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
// Tests the "list reverse" block.
|
|
1407
|
+
function test_lists_reverse() {
|
|
1408
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1409
|
+
$list2 = array(8, 18, -1, 64);
|
|
1410
|
+
assertEquals(array_reverse($list2), array(64, -1, 18, 8), 'reverse a copy');
|
|
1411
|
+
assertEquals($list2, array(8, 18, -1, 64), 'reverse a copy original');
|
|
1412
|
+
$list2 = array();
|
|
1413
|
+
assertEquals(array_reverse($list2), array(), 'empty list');
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
// Describe this function...
|
|
1417
|
+
function test_procedure() {
|
|
1418
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1419
|
+
procedure_1(8, 2);
|
|
1420
|
+
assertEquals($proc_z, 4, 'procedure with global');
|
|
1421
|
+
$proc_w = false;
|
|
1422
|
+
procedure_2(false);
|
|
1423
|
+
assertEquals($proc_w, true, 'procedure no return');
|
|
1424
|
+
$proc_w = false;
|
|
1425
|
+
procedure_2(true);
|
|
1426
|
+
assertEquals($proc_w, false, 'procedure return');
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
// Describe this function...
|
|
1430
|
+
function procedure_1($proc_x, $proc_y) {
|
|
1431
|
+
global $test_name, $naked, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1432
|
+
$proc_z = $proc_x / $proc_y;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
// Describe this function...
|
|
1436
|
+
function procedure_2($proc_x) {
|
|
1437
|
+
global $test_name, $naked, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1438
|
+
if ($proc_x) {
|
|
1439
|
+
return;
|
|
1440
|
+
}
|
|
1441
|
+
$proc_w = true;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
// Describe this function...
|
|
1445
|
+
function test_function() {
|
|
1446
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1447
|
+
assertEquals(function_1(2, 3), -1, 'function with arguments');
|
|
1448
|
+
assertEquals($func_z, 'side effect', 'function with side effect');
|
|
1449
|
+
$func_a = 'unchanged';
|
|
1450
|
+
$func_c = 'global';
|
|
1451
|
+
assertEquals(function_2(2), '3global', 'function with global');
|
|
1452
|
+
assertEquals($func_a, 'unchanged', 'function with scope');
|
|
1453
|
+
assertEquals(function_3(true), true, 'function return');
|
|
1454
|
+
assertEquals(function_3(false), false, 'function no return');
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
// Describe this function...
|
|
1458
|
+
function function_1($func_x, $func_y) {
|
|
1459
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_a, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1460
|
+
$func_z = 'side effect';
|
|
1461
|
+
return $func_x - $func_y;
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
// Describe this function...
|
|
1465
|
+
function function_2($func_a) {
|
|
1466
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1467
|
+
$func_a += 1;
|
|
1468
|
+
return $func_a . $func_c;
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
// Describe this function...
|
|
1472
|
+
function function_3($func_a) {
|
|
1473
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $n, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1474
|
+
if ($func_a) {
|
|
1475
|
+
return true;
|
|
1476
|
+
}
|
|
1477
|
+
return false;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
// Describe this function...
|
|
1481
|
+
function recurse($n) {
|
|
1482
|
+
global $test_name, $naked, $proc_x, $proc_y, $func_x, $func_y, $func_a, $ok, $log, $count, $varToChange, $rand, $item, $text, $number_of_calls, $list2, $proc_z, $func_z, $x, $proc_w, $func_c, $if2, $loglist, $changing_list, $list_copy, $unittestResults;
|
|
1483
|
+
if ($n > 0) {
|
|
1484
|
+
$text = implode('', array(recurse($n - 1),$n,recurse($n - 1)));
|
|
1485
|
+
} else {
|
|
1486
|
+
$text = '-';
|
|
1487
|
+
}
|
|
1488
|
+
return $text;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
|
|
1492
|
+
$unittestResults = array();
|
|
1493
|
+
print("\n====================\n\nRunning suite: Logic\n");
|
|
1494
|
+
assertEquals(true, true, 'True');
|
|
1495
|
+
assertEquals(false, false, 'False');
|
|
1496
|
+
assertEquals(!false, true, 'Not true');
|
|
1497
|
+
assertEquals(!true, false, 'Not false');
|
|
1498
|
+
test_if();
|
|
1499
|
+
test_ifelse();
|
|
1500
|
+
test_equalities();
|
|
1501
|
+
test_and();
|
|
1502
|
+
test_or();
|
|
1503
|
+
test_ternary();
|
|
1504
|
+
print(unittest_report());
|
|
1505
|
+
$unittestResults = null;
|
|
1506
|
+
|
|
1507
|
+
$unittestResults = array();
|
|
1508
|
+
print("\n====================\n\nRunning suite: Loops 1\n");
|
|
1509
|
+
test_repeat();
|
|
1510
|
+
test_repeat_ext();
|
|
1511
|
+
test_while();
|
|
1512
|
+
test_foreach();
|
|
1513
|
+
print(unittest_report());
|
|
1514
|
+
$unittestResults = null;
|
|
1515
|
+
|
|
1516
|
+
$unittestResults = array();
|
|
1517
|
+
print("\n====================\n\nRunning suite: Loops 2\n");
|
|
1518
|
+
test_count_loops();
|
|
1519
|
+
test_count_by();
|
|
1520
|
+
print(unittest_report());
|
|
1521
|
+
$unittestResults = null;
|
|
1522
|
+
|
|
1523
|
+
$unittestResults = array();
|
|
1524
|
+
print("\n====================\n\nRunning suite: Loops 3\n");
|
|
1525
|
+
test_break();
|
|
1526
|
+
test_continue();
|
|
1527
|
+
print(unittest_report());
|
|
1528
|
+
$unittestResults = null;
|
|
1529
|
+
|
|
1530
|
+
$unittestResults = array();
|
|
1531
|
+
print("\n====================\n\nRunning suite: Math\n");
|
|
1532
|
+
test_arithmetic();
|
|
1533
|
+
test_single();
|
|
1534
|
+
test_trig();
|
|
1535
|
+
test_constant();
|
|
1536
|
+
test_change();
|
|
1537
|
+
test_number_properties();
|
|
1538
|
+
test_round();
|
|
1539
|
+
test_operations_on_list();
|
|
1540
|
+
test_constraint();
|
|
1541
|
+
test_mod();
|
|
1542
|
+
test_random_integer();
|
|
1543
|
+
test_random_fraction();
|
|
1544
|
+
test_atan2();
|
|
1545
|
+
print(unittest_report());
|
|
1546
|
+
$unittestResults = null;
|
|
1547
|
+
|
|
1548
|
+
$unittestResults = array();
|
|
1549
|
+
print("\n====================\n\nRunning suite: Text\n");
|
|
1550
|
+
test_text_length();
|
|
1551
|
+
test_empty_text();
|
|
1552
|
+
test_create_text();
|
|
1553
|
+
test_append();
|
|
1554
|
+
test_find_text_simple();
|
|
1555
|
+
test_find_text_complex();
|
|
1556
|
+
test_get_text_simple();
|
|
1557
|
+
test_get_text_complex();
|
|
1558
|
+
test_substring_simple();
|
|
1559
|
+
test_substring_complex();
|
|
1560
|
+
test_case();
|
|
1561
|
+
test_trim();
|
|
1562
|
+
test_count_text();
|
|
1563
|
+
test_text_reverse();
|
|
1564
|
+
test_replace();
|
|
1565
|
+
print(unittest_report());
|
|
1566
|
+
$unittestResults = null;
|
|
1567
|
+
|
|
1568
|
+
$unittestResults = array();
|
|
1569
|
+
print("\n====================\n\nRunning suite: Lists\n");
|
|
1570
|
+
test_create_lists();
|
|
1571
|
+
test_lists_empty();
|
|
1572
|
+
test_lists_length();
|
|
1573
|
+
test_find_lists_simple();
|
|
1574
|
+
test_find_lists_complex();
|
|
1575
|
+
test_get_lists_simple();
|
|
1576
|
+
test_get_lists_create_list();
|
|
1577
|
+
test_get_lists_complex();
|
|
1578
|
+
test_getRemove();
|
|
1579
|
+
test_remove();
|
|
1580
|
+
test_set();
|
|
1581
|
+
test_insert();
|
|
1582
|
+
test_sublist_simple();
|
|
1583
|
+
test_sublist_complex();
|
|
1584
|
+
test_join();
|
|
1585
|
+
test_split();
|
|
1586
|
+
test_sort_alphabetic();
|
|
1587
|
+
test_sort_ignoreCase();
|
|
1588
|
+
test_sort_numeric();
|
|
1589
|
+
test_lists_reverse();
|
|
1590
|
+
print(unittest_report());
|
|
1591
|
+
$unittestResults = null;
|
|
1592
|
+
|
|
1593
|
+
$unittestResults = array();
|
|
1594
|
+
print("\n====================\n\nRunning suite: Variables\n");
|
|
1595
|
+
$item = 123;
|
|
1596
|
+
assertEquals($item, 123, 'variable');
|
|
1597
|
+
$if2 = 123;
|
|
1598
|
+
assertEquals($if2, 123, 'reserved variable');
|
|
1599
|
+
print(unittest_report());
|
|
1600
|
+
$unittestResults = null;
|
|
1601
|
+
|
|
1602
|
+
// Intentionally non-connected variable.
|
|
1603
|
+
$naked;
|
|
1604
|
+
|
|
1605
|
+
$unittestResults = array();
|
|
1606
|
+
print("\n====================\n\nRunning suite: Functions\n");
|
|
1607
|
+
test_procedure();
|
|
1608
|
+
test_function();
|
|
1609
|
+
assertEquals(recurse(3), '-1-2-1-3-1-2-1-', 'test recurse');
|
|
1610
|
+
print(unittest_report());
|
|
1611
|
+
$unittestResults = null;
|