busser-robot 0.1.3
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.
- checksums.yaml +7 -0
- data/.cane +0 -0
- data/.gitignore +17 -0
- data/.tailor +4 -0
- data/.travis.yml +11 -0
- data/CHANGELOG.md +3 -0
- data/Gemfile +3 -0
- data/LICENSE +15 -0
- data/README.md +41 -0
- data/Rakefile +68 -0
- data/busser-robot.gemspec +30 -0
- data/features/plugin_install_command.feature +11 -0
- data/features/plugin_list_command.feature +8 -0
- data/features/support/env.rb +13 -0
- data/features/test_command.feature +31 -0
- data/lib/busser/robot/version.rb +26 -0
- data/lib/busser/runner_plugin/robot.rb +37 -0
- data/vendor/robot/.gitignore +19 -0
- data/vendor/robot/AUTHORS.txt +76 -0
- data/vendor/robot/BUILD.rst +212 -0
- data/vendor/robot/CONTRIBUTING.rst +309 -0
- data/vendor/robot/COPYRIGHT.txt +14 -0
- data/vendor/robot/INSTALL.rst +726 -0
- data/vendor/robot/LICENSE.txt +202 -0
- data/vendor/robot/MANIFEST.in +4 -0
- data/vendor/robot/README.rst +150 -0
- data/vendor/robot/atest/README.rst +235 -0
- data/vendor/robot/atest/genrunner.py +52 -0
- data/vendor/robot/atest/interpreter.py +217 -0
- data/vendor/robot/atest/requirements.txt +12 -0
- data/vendor/robot/atest/resources/TestCheckerLibrary.py +258 -0
- data/vendor/robot/atest/resources/TestHelper.py +31 -0
- data/vendor/robot/atest/resources/atest_resource.robot +335 -0
- data/vendor/robot/atest/resources/atest_variables.py +10 -0
- data/vendor/robot/atest/resources/read_interpreter.py +27 -0
- data/vendor/robot/atest/resources/rebot_resource.robot +25 -0
- data/vendor/robot/atest/resources/unicode_vars.py +15 -0
- data/vendor/robot/atest/robot/cli/console/colors_and_width.robot +66 -0
- data/vendor/robot/atest/robot/cli/console/console_resource.robot +24 -0
- data/vendor/robot/atest/robot/cli/console/console_type.robot +54 -0
- data/vendor/robot/atest/robot/cli/console/encoding_from_env_vars.robot +31 -0
- data/vendor/robot/atest/robot/cli/console/expected_output/ExpectedOutputLibrary.py +27 -0
- data/vendor/robot/atest/robot/cli/console/expected_output/dotted_fatal_error.txt +14 -0
- data/vendor/robot/atest/robot/cli/console/expected_output/empty.txt +0 -0
- data/vendor/robot/atest/robot/cli/console/expected_output/warnings_and_errors_stderr.txt +6 -0
- data/vendor/robot/atest/robot/cli/console/expected_output/warnings_and_errors_stdout.txt +14 -0
- data/vendor/robot/atest/robot/cli/console/expected_output/warnings_and_errors_stdout_dotted.txt +11 -0
- data/vendor/robot/atest/robot/cli/console/expected_output/warnings_and_errors_stdout_dotted_10.txt +19 -0
- data/vendor/robot/atest/robot/cli/console/markers.robot +81 -0
- data/vendor/robot/atest/robot/cli/console/non_ascii.robot +15 -0
- data/vendor/robot/atest/robot/cli/console/verbose_layout.robot +50 -0
- data/vendor/robot/atest/robot/cli/dryrun/args.robot +22 -0
- data/vendor/robot/atest/robot/cli/dryrun/dryrun.robot +149 -0
- data/vendor/robot/atest/robot/cli/dryrun/executed_builtin_keywords.robot +15 -0
- data/vendor/robot/atest/robot/cli/dryrun/java_arguments.robot +62 -0
- data/vendor/robot/atest/robot/cli/dryrun/kwargs.robot +16 -0
- data/vendor/robot/atest/robot/cli/dryrun/run_keyword_variants.robot +101 -0
- data/vendor/robot/atest/robot/cli/dryrun/run_keyword_variants_in_suite_teardown.robot +10 -0
- data/vendor/robot/atest/robot/cli/model_modifiers/ModelModifier.py +18 -0
- data/vendor/robot/atest/robot/cli/model_modifiers/modifier_resource.robot +38 -0
- data/vendor/robot/atest/robot/cli/model_modifiers/pre_rebot.robot +64 -0
- data/vendor/robot/atest/robot/cli/model_modifiers/pre_rebot_when_running.robot +59 -0
- data/vendor/robot/atest/robot/cli/model_modifiers/pre_run.robot +57 -0
- data/vendor/robot/atest/robot/cli/rebot/REBOT_OPTIONS.robot +22 -0
- data/vendor/robot/atest/robot/cli/rebot/__init__.robot +3 -0
- data/vendor/robot/atest/robot/cli/rebot/argumentfile.robot +28 -0
- data/vendor/robot/atest/robot/cli/rebot/help_and_version.robot +26 -0
- data/vendor/robot/atest/robot/cli/rebot/invalid_usage.robot +55 -0
- data/vendor/robot/atest/robot/cli/rebot/log_level.robot +48 -0
- data/vendor/robot/atest/robot/cli/rebot/output_files.robot +56 -0
- data/vendor/robot/atest/robot/cli/rebot/process_empty_suite.robot +38 -0
- data/vendor/robot/atest/robot/cli/rebot/rebot_cli_resource.robot +24 -0
- data/vendor/robot/atest/robot/cli/rebot/remove_keywords/all_passed_tag_and_name.robot +159 -0
- data/vendor/robot/atest/robot/cli/rebot/remove_keywords/combinations.robot +43 -0
- data/vendor/robot/atest/robot/cli/rebot/remove_keywords/for_loop_keywords.robot +51 -0
- data/vendor/robot/atest/robot/cli/rebot/remove_keywords/remove_keywords_resource.robot +25 -0
- data/vendor/robot/atest/robot/cli/rebot/remove_keywords/wait_until_keyword_succeeds.robot +37 -0
- data/vendor/robot/atest/robot/cli/rebot/status_rc.robot +53 -0
- data/vendor/robot/atest/robot/cli/rebot/suite_name_doc_and_metadata.robot +39 -0
- data/vendor/robot/atest/robot/cli/rebot/syslog.robot +46 -0
- data/vendor/robot/atest/robot/cli/rebot/timestamp_outputs.robot +16 -0
- data/vendor/robot/atest/robot/cli/runner/ROBOT_OPTIONS.robot +17 -0
- data/vendor/robot/atest/robot/cli/runner/argumentfile.robot +111 -0
- data/vendor/robot/atest/robot/cli/runner/cli_resource.robot +44 -0
- data/vendor/robot/atest/robot/cli/runner/debugfile.robot +75 -0
- data/vendor/robot/atest/robot/cli/runner/exit_on_error.robot +67 -0
- data/vendor/robot/atest/robot/cli/runner/exit_on_failure.robot +71 -0
- data/vendor/robot/atest/robot/cli/runner/extension.robot +25 -0
- data/vendor/robot/atest/robot/cli/runner/help_and_version.robot +33 -0
- data/vendor/robot/atest/robot/cli/runner/invalid_usage.robot +34 -0
- data/vendor/robot/atest/robot/cli/runner/log_level.robot +88 -0
- data/vendor/robot/atest/robot/cli/runner/multisource.robot +57 -0
- data/vendor/robot/atest/robot/cli/runner/output_files.robot +75 -0
- data/vendor/robot/atest/robot/cli/runner/pythonpath.robot +31 -0
- data/vendor/robot/atest/robot/cli/runner/randomize.robot +112 -0
- data/vendor/robot/atest/robot/cli/runner/remove_keywords.robot +147 -0
- data/vendor/robot/atest/robot/cli/runner/report_background.robot +26 -0
- data/vendor/robot/atest/robot/cli/runner/rerunfailed.robot +50 -0
- data/vendor/robot/atest/robot/cli/runner/rerunfailed_corners.robot +44 -0
- data/vendor/robot/atest/robot/cli/runner/rerunfailedsuites.robot +44 -0
- data/vendor/robot/atest/robot/cli/runner/rerunfailedsuites_corners.robot +44 -0
- data/vendor/robot/atest/robot/cli/runner/run_empty_suite.robot +36 -0
- data/vendor/robot/atest/robot/cli/runner/status_rc.robot +39 -0
- data/vendor/robot/atest/robot/cli/runner/suite_name_doc_and_metadata.robot +40 -0
- data/vendor/robot/atest/robot/cli/runner/syslog.robot +56 -0
- data/vendor/robot/atest/robot/cli/runner/timestamp_outputs.robot +25 -0
- data/vendor/robot/atest/robot/core/binary_data.robot +54 -0
- data/vendor/robot/atest/robot/core/empty_tc_and_uk.robot +35 -0
- data/vendor/robot/atest/robot/core/filter_by_names.robot +191 -0
- data/vendor/robot/atest/robot/core/keyword_teardown.robot +69 -0
- data/vendor/robot/atest/robot/core/overriding_default_settings_with_none.robot +48 -0
- data/vendor/robot/atest/robot/core/resource_and_variable_imports.robot +164 -0
- data/vendor/robot/atest/robot/core/same_test_multiple_times_in_suite.robot +30 -0
- data/vendor/robot/atest/robot/core/suite_execution_order.robot +10 -0
- data/vendor/robot/atest/robot/core/suite_setup_and_teardown.robot +183 -0
- data/vendor/robot/atest/robot/core/test_case_status.robot +52 -0
- data/vendor/robot/atest/robot/core/test_suite_dir.robot +55 -0
- data/vendor/robot/atest/robot/core/test_suite_init_file.robot +111 -0
- data/vendor/robot/atest/robot/core/timeouts.robot +153 -0
- data/vendor/robot/atest/robot/core/timeouts_with_custom_messages.robot +69 -0
- data/vendor/robot/atest/robot/core/unicode.robot +46 -0
- data/vendor/robot/atest/robot/core/unicode_with_java_libs.robot +21 -0
- data/vendor/robot/atest/robot/external/unit_tests.robot +15 -0
- data/vendor/robot/atest/robot/keywords/dots_in_keyword_name.robot +48 -0
- data/vendor/robot/atest/robot/keywords/duplicate_dynamic_keywords.robot +26 -0
- data/vendor/robot/atest/robot/keywords/duplicate_hybrid_keywords.robot +26 -0
- data/vendor/robot/atest/robot/keywords/duplicate_static_keywords.robot +31 -0
- data/vendor/robot/atest/robot/keywords/duplicate_user_keywords.robot +37 -0
- data/vendor/robot/atest/robot/keywords/embedded_arguments.robot +153 -0
- data/vendor/robot/atest/robot/keywords/embedded_arguments_library_keywords.robot +97 -0
- data/vendor/robot/atest/robot/keywords/java_argument_type_coercion.robot +23 -0
- data/vendor/robot/atest/robot/keywords/java_arguments.robot +98 -0
- data/vendor/robot/atest/robot/keywords/keyword_names.robot +138 -0
- data/vendor/robot/atest/robot/keywords/keyword_namespaces.robot +67 -0
- data/vendor/robot/atest/robot/keywords/keyword_not_found.robot +25 -0
- data/vendor/robot/atest/robot/keywords/keyword_recommendations.robot +145 -0
- data/vendor/robot/atest/robot/keywords/keyword_tags.robot +48 -0
- data/vendor/robot/atest/robot/keywords/named_args/variables_in_names.robot +34 -0
- data/vendor/robot/atest/robot/keywords/named_args/with_dynamic_keywords.robot +55 -0
- data/vendor/robot/atest/robot/keywords/named_args/with_dynamic_kwargs_support.robot +79 -0
- data/vendor/robot/atest/robot/keywords/named_args/with_python_keywords.robot +95 -0
- data/vendor/robot/atest/robot/keywords/named_args/with_user_keywords.robot +58 -0
- data/vendor/robot/atest/robot/keywords/optional_given_when_then.robot +48 -0
- data/vendor/robot/atest/robot/keywords/python_arguments.robot +42 -0
- data/vendor/robot/atest/robot/keywords/trace_log_keyword_arguments.robot +104 -0
- data/vendor/robot/atest/robot/keywords/trace_log_return_value.robot +60 -0
- data/vendor/robot/atest/robot/keywords/user_keyword_arguments.robot +98 -0
- data/vendor/robot/atest/robot/keywords/user_keyword_kwargs.robot +62 -0
- data/vendor/robot/atest/robot/keywords/user_keyword_return_values.robot +34 -0
- data/vendor/robot/atest/robot/libdoc/LibDocLib.py +49 -0
- data/vendor/robot/atest/robot/libdoc/__init__.robot +4 -0
- data/vendor/robot/atest/robot/libdoc/cli.robot +58 -0
- data/vendor/robot/atest/robot/libdoc/console_viewer.robot +97 -0
- data/vendor/robot/atest/robot/libdoc/doc_format.robot +72 -0
- data/vendor/robot/atest/robot/libdoc/dynamic_library.robot +67 -0
- data/vendor/robot/atest/robot/libdoc/dynamic_library_without_get_kw_args_and_doc.robot +38 -0
- data/vendor/robot/atest/robot/libdoc/internal_linking.robot +83 -0
- data/vendor/robot/atest/robot/libdoc/invalid_library_keywords.robot +30 -0
- data/vendor/robot/atest/robot/libdoc/invalid_usage.robot +61 -0
- data/vendor/robot/atest/robot/libdoc/invalid_user_keywords.robot +29 -0
- data/vendor/robot/atest/robot/libdoc/java_library.robot +80 -0
- data/vendor/robot/atest/robot/libdoc/libdoc_resource.robot +141 -0
- data/vendor/robot/atest/robot/libdoc/library_version.robot +31 -0
- data/vendor/robot/atest/robot/libdoc/module_library.robot +60 -0
- data/vendor/robot/atest/robot/libdoc/no_inits.robot +29 -0
- data/vendor/robot/atest/robot/libdoc/python_library.robot +68 -0
- data/vendor/robot/atest/robot/libdoc/resource_file.robot +81 -0
- data/vendor/robot/atest/robot/libdoc/spec_library.robot +64 -0
- data/vendor/robot/atest/robot/output/flatten_keyword.robot +106 -0
- data/vendor/robot/atest/robot/output/html_output_stats.py +41 -0
- data/vendor/robot/atest/robot/output/js_model.robot +49 -0
- data/vendor/robot/atest/robot/output/listener_interface/importing_listeners.robot +84 -0
- data/vendor/robot/atest/robot/output/listener_interface/listener_failing.robot +61 -0
- data/vendor/robot/atest/robot/output/listener_interface/listener_logging.robot +99 -0
- data/vendor/robot/atest/robot/output/listener_interface/listener_methods.robot +169 -0
- data/vendor/robot/atest/robot/output/listener_interface/listener_resource.robot +50 -0
- data/vendor/robot/atest/robot/output/listener_interface/listener_v3.robot +68 -0
- data/vendor/robot/atest/robot/output/listener_interface/listening_imports.robot +53 -0
- data/vendor/robot/atest/robot/output/listener_interface/log_levels.robot +39 -0
- data/vendor/robot/atest/robot/output/listener_interface/output_files.robot +42 -0
- data/vendor/robot/atest/robot/output/listener_interface/unsupported_listener_version.robot +34 -0
- data/vendor/robot/atest/robot/output/names_needing_escaping.robot +37 -0
- data/vendor/robot/atest/robot/output/outputs_have_correct_line_separators.robot +32 -0
- data/vendor/robot/atest/robot/output/processing_output.robot +118 -0
- data/vendor/robot/atest/robot/output/statistics.robot +90 -0
- data/vendor/robot/atest/robot/output/statistics_in_log_and_report.robot +79 -0
- data/vendor/robot/atest/robot/output/statistics_with_rebot.robot +70 -0
- data/vendor/robot/atest/robot/output/suite_and_test_id_in_output.robot +23 -0
- data/vendor/robot/atest/robot/output/test_criticality.robot +22 -0
- data/vendor/robot/atest/robot/output/timeouts.robot +27 -0
- data/vendor/robot/atest/robot/output/xunit.robot +84 -0
- data/vendor/robot/atest/robot/parsing/caching_libs_and_resources.robot +59 -0
- data/vendor/robot/atest/robot/parsing/data_formats/formats_resource.robot +71 -0
- data/vendor/robot/atest/robot/parsing/data_formats/html.robot +19 -0
- data/vendor/robot/atest/robot/parsing/data_formats/mixed.robot +99 -0
- data/vendor/robot/atest/robot/parsing/data_formats/rest.robot +22 -0
- data/vendor/robot/atest/robot/parsing/data_formats/rest_directives.robot +8 -0
- data/vendor/robot/atest/robot/parsing/data_formats/robot.robot +18 -0
- data/vendor/robot/atest/robot/parsing/data_formats/tsv.robot +18 -0
- data/vendor/robot/atest/robot/parsing/data_formats/txt.robot +18 -0
- data/vendor/robot/atest/robot/parsing/data_formats/txt_special_cases.robot +49 -0
- data/vendor/robot/atest/robot/parsing/deprecated_settings.robot +66 -0
- data/vendor/robot/atest/robot/parsing/escaping.robot +87 -0
- data/vendor/robot/atest/robot/parsing/failing_init.robot +12 -0
- data/vendor/robot/atest/robot/parsing/html_entityrefs.robot +22 -0
- data/vendor/robot/atest/robot/parsing/ignore_bom.robot +21 -0
- data/vendor/robot/atest/robot/parsing/invalid.robot +57 -0
- data/vendor/robot/atest/robot/parsing/multirow.robot +63 -0
- data/vendor/robot/atest/robot/parsing/non_ascii_paths.robot +54 -0
- data/vendor/robot/atest/robot/parsing/non_breaking_space.robot +19 -0
- data/vendor/robot/atest/robot/parsing/paths_are_not_case_normalized.robot +14 -0
- data/vendor/robot/atest/robot/parsing/same_setting_multiple_times.robot +127 -0
- data/vendor/robot/atest/robot/parsing/suite_metadata.robot +32 -0
- data/vendor/robot/atest/robot/parsing/suite_settings.robot +61 -0
- data/vendor/robot/atest/robot/parsing/table_names.robot +55 -0
- data/vendor/robot/atest/robot/parsing/test_case_settings.robot +162 -0
- data/vendor/robot/atest/robot/parsing/test_suite_names.robot +47 -0
- data/vendor/robot/atest/robot/parsing/user_keyword_settings.robot +103 -0
- data/vendor/robot/atest/robot/parsing/utf8_data/utf8_in_html.robot +25 -0
- data/vendor/robot/atest/robot/parsing/utf8_data/utf8_in_html5.robot +25 -0
- data/vendor/robot/atest/robot/parsing/utf8_data/utf8_in_tsv.robot +25 -0
- data/vendor/robot/atest/robot/parsing/utf8_data/utf8_in_txt.robot +25 -0
- data/vendor/robot/atest/robot/rebot/combine.robot +208 -0
- data/vendor/robot/atest/robot/rebot/filter_by_names.robot +160 -0
- data/vendor/robot/atest/robot/rebot/merge.robot +237 -0
- data/vendor/robot/atest/robot/rebot/output_file.robot +23 -0
- data/vendor/robot/atest/robot/rebot/start_and_endtime_from_cli.robot +75 -0
- data/vendor/robot/atest/robot/rebot/xunit.robot +61 -0
- data/vendor/robot/atest/robot/running/ProcessManager.py +73 -0
- data/vendor/robot/atest/robot/running/continue_for_loop.robot +54 -0
- data/vendor/robot/atest/robot/running/continue_on_failure.robot +106 -0
- data/vendor/robot/atest/robot/running/dynamic_teardown.robot +7 -0
- data/vendor/robot/atest/robot/running/empty_and_none_setup_and_teardown_are_ignored.robot +31 -0
- data/vendor/robot/atest/robot/running/exit_for_loop.robot +57 -0
- data/vendor/robot/atest/robot/running/failures_in_teardown.robot +60 -0
- data/vendor/robot/atest/robot/running/fatal_exception.robot +72 -0
- data/vendor/robot/atest/robot/running/for.robot +437 -0
- data/vendor/robot/atest/robot/running/html_error_message.robot +57 -0
- data/vendor/robot/atest/robot/running/long_error_messages.robot +65 -0
- data/vendor/robot/atest/robot/running/non_ascii_bytes.robot +33 -0
- data/vendor/robot/atest/robot/running/pass_execution.robot +162 -0
- data/vendor/robot/atest/robot/running/prevent_recursion.robot +22 -0
- data/vendor/robot/atest/robot/running/return_from_keyword.robot +60 -0
- data/vendor/robot/atest/robot/running/stopping_with_signal.robot +128 -0
- data/vendor/robot/atest/robot/running/test_template.robot +86 -0
- data/vendor/robot/atest/robot/running/test_template_with_embeded_args.robot +47 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/builtin_resource.robot +16 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/call_method.robot +34 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/convert_to_bytes.robot +88 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/converter.robot +72 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/count.robot +42 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/create_dictionary.robot +70 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/evaluate.robot +66 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/exit_on_failure.robot +24 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/fail.robot +49 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/fatal_error.robot +15 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/get_library_instance.robot +42 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/get_time.robot +38 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/get_variable_value.robot +26 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/get_variables.robot +47 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/import_library.robot +39 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/import_resource.robot +29 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/import_variables.robot +31 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/imports_without_path_set.robot +20 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/keyword_should_exist.robot +48 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/length.robot +52 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/listener_printing_start_end_kw.py +14 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/listener_using_builtin.py +9 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/log.robot +165 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/log_variables.robot +180 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/misc.robot +19 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/reload_library.robot +39 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/reload_with_name.robot +14 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/repeat_keyword.robot +96 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/replace_variables.robot +22 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword.robot +84 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_and_continue_on_failure.robot +40 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_and_return.robot +56 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_and_return_status.robot +12 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_based_on_suite_stats.robot +51 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_if_test_passed_failed.robot +81 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_if_timeout_occurred.robot +37 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_if_unless.robot +127 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_variants_registering.robot +23 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_variants_variable_handling.robot +54 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_variants_with_escaping_control_arguments.robot +36 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keyword_with_errors.robot +148 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keywords.robot +58 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/run_keywords_with_arguments.robot +56 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/set_documentation.robot +39 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/set_library_search_order.robot +41 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/set_log_level.robot +30 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/set_resource_search_order.robot +40 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/set_suite_metadata.robot +63 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/set_test_message.robot +70 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/set_variable_if.robot +48 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/setting_variables.robot +140 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/should_be_equal.robot +64 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/should_be_equal_as_xxx.robot +50 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/should_be_true.robot +28 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/should_contain.robot +22 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/should_contain_any.robot +34 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/should_match.robot +36 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/should_xxx_with.robot +34 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/sleep.robot +28 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/tags.robot +89 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/used_in_custom_libs_and_listeners.robot +20 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/variable_should_exist.robot +82 -0
- data/vendor/robot/atest/robot/standard_libraries/builtin/wait_until_keyword_succeeds.robot +96 -0
- data/vendor/robot/atest/robot/standard_libraries/collections/dictionary.robot +159 -0
- data/vendor/robot/atest/robot/standard_libraries/collections/list.robot +318 -0
- data/vendor/robot/atest/robot/standard_libraries/datetime/add_time_to_date.robot +10 -0
- data/vendor/robot/atest/robot/standard_libraries/datetime/convert_date_input_format.robot +28 -0
- data/vendor/robot/atest/robot/standard_libraries/datetime/convert_date_result_format.robot +28 -0
- data/vendor/robot/atest/robot/standard_libraries/datetime/convert_time_input_format.robot +28 -0
- data/vendor/robot/atest/robot/standard_libraries/datetime/convert_time_result_format.robot +28 -0
- data/vendor/robot/atest/robot/standard_libraries/datetime/date_ranges.robot +22 -0
- data/vendor/robot/atest/robot/standard_libraries/datetime/get_current_date.robot +28 -0
- data/vendor/robot/atest/robot/standard_libraries/datetime/subtract_date_from_date.robot +10 -0
- data/vendor/robot/atest/robot/standard_libraries/datetime/subtract_time_from_date.robot +10 -0
- data/vendor/robot/atest/robot/standard_libraries/datetime/time_calculations.robot +10 -0
- data/vendor/robot/atest/robot/standard_libraries/dialogs/dialogs.robot +55 -0
- data/vendor/robot/atest/robot/standard_libraries/easter.robot +14 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/create_and_remove_dir.robot +37 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/create_file.robot +40 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/env_vars.robot +64 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/file_and_dir_empty_or_not.robot +52 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/file_and_dir_existence.robot +82 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/get_file.robot +113 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/get_file_size.robot +21 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/list_dir.robot +64 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/modified_time.robot +56 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/move_copy_directory.robot +34 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/move_copy_file.robot +93 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/move_copy_files.robot +76 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/path.robot +28 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/path_expansion.robot +11 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/remove_file.robot +33 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/run.robot +44 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/special_names.robot +32 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/touch.robot +28 -0
- data/vendor/robot/atest/robot/standard_libraries/operating_system/wait_until_removed_created.robot +52 -0
- data/vendor/robot/atest/robot/standard_libraries/process/active_process.robot +22 -0
- data/vendor/robot/atest/robot/standard_libraries/process/commandline.robot +25 -0
- data/vendor/robot/atest/robot/standard_libraries/process/env_config.robot +25 -0
- data/vendor/robot/atest/robot/standard_libraries/process/get_process_result.robot +25 -0
- data/vendor/robot/atest/robot/standard_libraries/process/is_process_alive.robot +13 -0
- data/vendor/robot/atest/robot/standard_libraries/process/newlines.robot +13 -0
- data/vendor/robot/atest/robot/standard_libraries/process/no_active_process.robot +13 -0
- data/vendor/robot/atest/robot/standard_libraries/process/output_encoding.robot +19 -0
- data/vendor/robot/atest/robot/standard_libraries/process/passing_arguments.robot +68 -0
- data/vendor/robot/atest/robot/standard_libraries/process/process_library.robot +27 -0
- data/vendor/robot/atest/robot/standard_libraries/process/run_process_with_timeout.robot +38 -0
- data/vendor/robot/atest/robot/standard_libraries/process/sending_signal.robot +48 -0
- data/vendor/robot/atest/robot/standard_libraries/process/stdout_and_stderr.robot +43 -0
- data/vendor/robot/atest/robot/standard_libraries/process/terminate_process.robot +51 -0
- data/vendor/robot/atest/robot/standard_libraries/process/wait_for_process.robot +32 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/argument_coersion.robot +97 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/arguments.robot +64 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/binary_result.robot +27 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/dict_result.robot +10 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/documentation.robot +52 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/invalid.robot +20 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/keyword_tags.robot +29 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/remote_resource.robot +30 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/simple_server.robot +42 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/special_errors.robot +19 -0
- data/vendor/robot/atest/robot/standard_libraries/remote/timeouts.robot +10 -0
- data/vendor/robot/atest/robot/standard_libraries/reserved.robot +20 -0
- data/vendor/robot/atest/robot/standard_libraries/screenshot/set_screenshot_directory.robot +8 -0
- data/vendor/robot/atest/robot/standard_libraries/screenshot/take_screenshot.robot +42 -0
- data/vendor/robot/atest/robot/standard_libraries/string/convert_to.robot +10 -0
- data/vendor/robot/atest/robot/standard_libraries/string/encode_decode.robot +36 -0
- data/vendor/robot/atest/robot/standard_libraries/string/generate_random_string.robot +29 -0
- data/vendor/robot/atest/robot/standard_libraries/string/get_matching_lines.robot +90 -0
- data/vendor/robot/atest/robot/standard_libraries/string/get_regexp_matches.robot +28 -0
- data/vendor/robot/atest/robot/standard_libraries/string/remove_from_string.robot +25 -0
- data/vendor/robot/atest/robot/standard_libraries/string/replace_string.robot +32 -0
- data/vendor/robot/atest/robot/standard_libraries/string/should_be.robot +64 -0
- data/vendor/robot/atest/robot/standard_libraries/string/split_string.robot +65 -0
- data/vendor/robot/atest/robot/standard_libraries/string/string.robot +71 -0
- data/vendor/robot/atest/robot/standard_libraries/telnet/__init__.robot +2 -0
- data/vendor/robot/atest/robot/standard_libraries/telnet/configuration.robot +108 -0
- data/vendor/robot/atest/robot/standard_libraries/telnet/connections.robot +22 -0
- data/vendor/robot/atest/robot/standard_libraries/telnet/login.robot +40 -0
- data/vendor/robot/atest/robot/standard_libraries/telnet/read_and_write.robot +101 -0
- data/vendor/robot/atest/robot/standard_libraries/telnet/telnet_resource.robot +3 -0
- data/vendor/robot/atest/robot/standard_libraries/telnet/terminal_emulation.robot +68 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/add_and_remove_elements.robot +75 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/add_and_remove_elements_with_lxml.robot +74 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/clear_element.robot +17 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/clear_element_with_lxml.robot +17 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/copy_element.robot +17 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/copy_element_with_lxml.robot +17 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/element_attribute.robot +52 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/element_attribute_with_lxml.robot +51 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/element_should_exist.robot +39 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/element_should_exist_with_lxml.robot +39 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/element_text.robot +52 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/element_text_with_lxml.robot +53 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/elements_should_be_equal.robot +40 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/elements_should_be_equal_with_lxml.robot +41 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/elements_should_match.robot +38 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/elements_should_match_with_lxml.robot +38 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/etree_namespaces.robot +23 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/etree_namespaces_with_lxml.robot +23 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/get_elements.robot +44 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/get_elements_with_lxml.robot +44 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/namespaces.robot +26 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/namespaces_with_lxml.robot +26 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/parsing.robot +25 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/parsing_with_lxml.robot +26 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/save_xml.robot +52 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/save_xml_with_lxml.robot +47 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/set_element_information.robot +64 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/set_element_information_with_lxml.robot +65 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/strip_namespaces.robot +19 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/strip_namespaces_with_lxml.robot +20 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/to_string.robot +23 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/to_string_with_lxml.robot +24 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/xml_resource.robot +6 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/xpath.robot +69 -0
- data/vendor/robot/atest/robot/standard_libraries/xml/xpath_with_lxml.robot +59 -0
- data/vendor/robot/atest/robot/tags/critical_tags.robot +58 -0
- data/vendor/robot/atest/robot/tags/critical_tags_with_rebot.robot +64 -0
- data/vendor/robot/atest/robot/tags/default_and_force_tags.robot +13 -0
- data/vendor/robot/atest/robot/tags/default_tags.robot +13 -0
- data/vendor/robot/atest/robot/tags/force_tags.robot +13 -0
- data/vendor/robot/atest/robot/tags/include_and_exclude.robot +122 -0
- data/vendor/robot/atest/robot/tags/include_and_exclude_with_rebot.robot +171 -0
- data/vendor/robot/atest/robot/tags/no_force_nor_default_tags.robot +13 -0
- data/vendor/robot/atest/robot/tags/set_tag.robot +33 -0
- data/vendor/robot/atest/robot/tags/set_tag_with_rebot.robot +38 -0
- data/vendor/robot/atest/robot/tags/tag_doc.robot +40 -0
- data/vendor/robot/atest/robot/tags/tag_doc_with_rebot.robot +43 -0
- data/vendor/robot/atest/robot/tags/tag_stat_include_and_exclude.robot +73 -0
- data/vendor/robot/atest/robot/tags/tag_stat_include_and_exclude_with_rebot.robot +77 -0
- data/vendor/robot/atest/robot/tags/tag_stat_link.robot +42 -0
- data/vendor/robot/atest/robot/tags/tag_stat_link_with_rebot.robot +44 -0
- data/vendor/robot/atest/robot/tags/tags_are_not_normalized.robot +37 -0
- data/vendor/robot/atest/robot/test_libraries/as_listener.robot +87 -0
- data/vendor/robot/atest/robot/test_libraries/as_listener_in_java.robot +26 -0
- data/vendor/robot/atest/robot/test_libraries/as_listener_with_empty_library.robot +13 -0
- data/vendor/robot/atest/robot/test_libraries/as_listener_with_import_library.robot +10 -0
- data/vendor/robot/atest/robot/test_libraries/as_listener_with_log_level.robot +15 -0
- data/vendor/robot/atest/robot/test_libraries/as_listenerv3.robot +41 -0
- data/vendor/robot/atest/robot/test_libraries/avoid_properties_when_creating_libraries.robot +18 -0
- data/vendor/robot/atest/robot/test_libraries/deprecated_keywords.robot +45 -0
- data/vendor/robot/atest/robot/test_libraries/dynamic_kwargs_support_java.robot +26 -0
- data/vendor/robot/atest/robot/test_libraries/dynamic_kwargs_support_python.robot +44 -0
- data/vendor/robot/atest/robot/test_libraries/dynamic_libraries_with_invalid_argspec.robot +48 -0
- data/vendor/robot/atest/robot/test_libraries/dynamic_library_args_and_docs.robot +92 -0
- data/vendor/robot/atest/robot/test_libraries/dynamic_library_java.robot +19 -0
- data/vendor/robot/atest/robot/test_libraries/dynamic_library_python.robot +60 -0
- data/vendor/robot/atest/robot/test_libraries/dynamic_library_tags.robot +25 -0
- data/vendor/robot/atest/robot/test_libraries/error_msg_and_details.robot +130 -0
- data/vendor/robot/atest/robot/test_libraries/hybrid_library.robot +49 -0
- data/vendor/robot/atest/robot/test_libraries/import_and_init_logging.robot +57 -0
- data/vendor/robot/atest/robot/test_libraries/internal_modules_not_importable.robot +28 -0
- data/vendor/robot/atest/robot/test_libraries/invalid_java_libraries.robot +42 -0
- data/vendor/robot/atest/robot/test_libraries/java_libraries.robot +89 -0
- data/vendor/robot/atest/robot/test_libraries/java_library_imports_with_args.robot +48 -0
- data/vendor/robot/atest/robot/test_libraries/libraries_extending_existing_classes.robot +45 -0
- data/vendor/robot/atest/robot/test_libraries/library_import_by_path.robot +60 -0
- data/vendor/robot/atest/robot/test_libraries/library_import_failing.robot +58 -0
- data/vendor/robot/atest/robot/test_libraries/library_import_from_archive.robot +19 -0
- data/vendor/robot/atest/robot/test_libraries/library_imports.robot +70 -0
- data/vendor/robot/atest/robot/test_libraries/library_imports_with_args.robot +49 -0
- data/vendor/robot/atest/robot/test_libraries/library_scope.robot +18 -0
- data/vendor/robot/atest/robot/test_libraries/library_version.robot +21 -0
- data/vendor/robot/atest/robot/test_libraries/logging_api.robot +58 -0
- data/vendor/robot/atest/robot/test_libraries/logging_with_logging.robot +66 -0
- data/vendor/robot/atest/robot/test_libraries/module_library.robot +76 -0
- data/vendor/robot/atest/robot/test_libraries/named_args_in_imports.robot +20 -0
- data/vendor/robot/atest/robot/test_libraries/new_style_classes.robot +18 -0
- data/vendor/robot/atest/robot/test_libraries/non_main_threads_logging.robot +16 -0
- data/vendor/robot/atest/robot/test_libraries/package_library.robot +58 -0
- data/vendor/robot/atest/robot/test_libraries/print_logging.robot +77 -0
- data/vendor/robot/atest/robot/test_libraries/print_logging_java.robot +45 -0
- data/vendor/robot/atest/robot/test_libraries/resource_for_importing_libs_with_args.robot +15 -0
- data/vendor/robot/atest/robot/test_libraries/timestamps_for_stdout_messages.robot +33 -0
- data/vendor/robot/atest/robot/test_libraries/with_name.robot +159 -0
- data/vendor/robot/atest/robot/testdoc/testdoc.robot +92 -0
- data/vendor/robot/atest/robot/tidy/TidyLib.py +86 -0
- data/vendor/robot/atest/robot/tidy/empty_tables.robot +12 -0
- data/vendor/robot/atest/robot/tidy/format_documentation.robot +21 -0
- data/vendor/robot/atest/robot/tidy/inplace.robot +24 -0
- data/vendor/robot/atest/robot/tidy/line_separator.robot +33 -0
- data/vendor/robot/atest/robot/tidy/tidy.robot +71 -0
- data/vendor/robot/atest/robot/tidy/tidy_resource.robot +31 -0
- data/vendor/robot/atest/robot/variables/automatic_variables.robot +69 -0
- data/vendor/robot/atest/robot/variables/builtin_variables.robot +67 -0
- data/vendor/robot/atest/robot/variables/catenate_scalars_in_variable_table.robot +59 -0
- data/vendor/robot/atest/robot/variables/commandline_variable_files.robot +64 -0
- data/vendor/robot/atest/robot/variables/commandline_variables.robot +27 -0
- data/vendor/robot/atest/robot/variables/dict_variable_in_variable_table.robot +65 -0
- data/vendor/robot/atest/robot/variables/dict_variable_items.robot +34 -0
- data/vendor/robot/atest/robot/variables/environment_variables.robot +58 -0
- data/vendor/robot/atest/robot/variables/extended_assign.robot +38 -0
- data/vendor/robot/atest/robot/variables/extended_variables.robot +76 -0
- data/vendor/robot/atest/robot/variables/getting_vars_from_dynamic_var_file.robot +23 -0
- data/vendor/robot/atest/robot/variables/keyword_status_and_message.robot +40 -0
- data/vendor/robot/atest/robot/variables/list_and_dict_from_variable_file.robot +64 -0
- data/vendor/robot/atest/robot/variables/list_as_scalar.robot +19 -0
- data/vendor/robot/atest/robot/variables/list_variable_items.robot +32 -0
- data/vendor/robot/atest/robot/variables/non_string_variables.robot +18 -0
- data/vendor/robot/atest/robot/variables/outputfile_variables.robot +26 -0
- data/vendor/robot/atest/robot/variables/recursive_definition.robot +67 -0
- data/vendor/robot/atest/robot/variables/reserved_syntax.robot +22 -0
- data/vendor/robot/atest/robot/variables/return_values.robot +213 -0
- data/vendor/robot/atest/robot/variables/return_values_java.robot +71 -0
- data/vendor/robot/atest/robot/variables/same_variable_file_names.robot +16 -0
- data/vendor/robot/atest/robot/variables/scalar_as_list.robot +25 -0
- data/vendor/robot/atest/robot/variables/shared_scope.robot +13 -0
- data/vendor/robot/atest/robot/variables/suite_source.robot +16 -0
- data/vendor/robot/atest/robot/variables/using_dict_variables.robot +62 -0
- data/vendor/robot/atest/robot/variables/variable_file_implemented_as_class.robot +37 -0
- data/vendor/robot/atest/robot/variables/variable_priorities.robot +36 -0
- data/vendor/robot/atest/robot/variables/variable_recommendations.robot +82 -0
- data/vendor/robot/atest/robot/variables/variable_scopes.robot +17 -0
- data/vendor/robot/atest/robot/variables/variable_table.robot +94 -0
- data/vendor/robot/atest/robot/variables/variable_table_in_resource_file.robot +88 -0
- data/vendor/robot/atest/robot/variables/variables_from_resource_files.robot +61 -0
- data/vendor/robot/atest/robot/variables/variables_from_variable_files.robot +52 -0
- data/vendor/robot/atest/robot/variables/variables_in_import_settings.robot +14 -0
- data/vendor/robot/atest/robot/variables/variables_inside_variables.robot +26 -0
- data/vendor/robot/atest/robot/variables/yaml_variable_file.robot +62 -0
- data/vendor/robot/atest/run.py +135 -0
- data/vendor/robot/atest/testdata/cli/console/markers.robot +64 -0
- data/vendor/robot/atest/testdata/cli/dryrun/EmbeddedArgs.py +7 -0
- data/vendor/robot/atest/testdata/cli/dryrun/Library.py +22 -0
- data/vendor/robot/atest/testdata/cli/dryrun/args.robot +50 -0
- data/vendor/robot/atest/testdata/cli/dryrun/dryrun.robot +172 -0
- data/vendor/robot/atest/testdata/cli/dryrun/executed_builtin_keywords.robot +20 -0
- data/vendor/robot/atest/testdata/cli/dryrun/kwargs.robot +27 -0
- data/vendor/robot/atest/testdata/cli/dryrun/more_tests.robot +9 -0
- data/vendor/robot/atest/testdata/cli/dryrun/resource.robot +17 -0
- data/vendor/robot/atest/testdata/cli/dryrun/run_keyword_variants.robot +226 -0
- data/vendor/robot/atest/testdata/cli/dryrun/run_keyword_variants_in_suite_teardown.robot +24 -0
- data/vendor/robot/atest/testdata/cli/dryrun/vars.py +1 -0
- data/vendor/robot/atest/testdata/cli/error/import_error.robot +8 -0
- data/vendor/robot/atest/testdata/cli/error/parsing_error.robot +8 -0
- data/vendor/robot/atest/testdata/cli/error/resource_error.robot +8 -0
- data/vendor/robot/atest/testdata/cli/error/resource_with_error.robot +6 -0
- data/vendor/robot/atest/testdata/cli/error/runtime_error.robot +14 -0
- data/vendor/robot/atest/testdata/cli/remove_keywords/all_combinations.robot +147 -0
- data/vendor/robot/atest/testdata/cli/remove_keywords/wait_until_keyword_succeeds.robot +39 -0
- data/vendor/robot/atest/testdata/cli/runfailed/onlypassing/passing.robot +3 -0
- data/vendor/robot/atest/testdata/cli/runfailed/runfailed1.robot +11 -0
- data/vendor/robot/atest/testdata/cli/runfailed/runfailed2.robot +8 -0
- data/vendor/robot/atest/testdata/cli/runfailed/suite/subsuite/suite_failed.robot +7 -0
- data/vendor/robot/atest/testdata/cli/runfailed/suite/subsuite/suite_failed_with_excluded_tag.robot +8 -0
- data/vendor/robot/atest/testdata/cli/runfailed/suite/subsuite/suite_succeed.robot +4 -0
- data/vendor/robot/atest/testdata/cli/runfailed/suite/suite_teardown_failing.robot +7 -0
- data/vendor/robot/atest/testdata/core/binary_data.robot +20 -0
- data/vendor/robot/atest/testdata/core/empty_testcase_and_uk.robot +68 -0
- data/vendor/robot/atest/testdata/core/erroring_suite_setup.robot +19 -0
- data/vendor/robot/atest/testdata/core/erroring_suite_teardown.robot +22 -0
- data/vendor/robot/atest/testdata/core/failing_higher_level_suite_setup/__init__.robot +2 -0
- data/vendor/robot/atest/testdata/core/failing_higher_level_suite_setup/suite1.robot +14 -0
- data/vendor/robot/atest/testdata/core/failing_higher_level_suite_setup/suite2.robot +5 -0
- data/vendor/robot/atest/testdata/core/failing_suite_setup.robot +12 -0
- data/vendor/robot/atest/testdata/core/failing_suite_setup_and_teardown.robot +24 -0
- data/vendor/robot/atest/testdata/core/failing_suite_teardown.robot +29 -0
- data/vendor/robot/atest/testdata/core/failing_suite_teardown_2.robot +41 -0
- data/vendor/robot/atest/testdata/core/failing_suite_teardown_dir/__init__.robot +2 -0
- data/vendor/robot/atest/testdata/core/failing_suite_teardown_dir/failing_teardown.robot +23 -0
- data/vendor/robot/atest/testdata/core/failing_suite_teardown_dir/failing_teardown_dir/__init__.robot +2 -0
- data/vendor/robot/atest/testdata/core/failing_suite_teardown_dir/failing_teardown_dir/ftd_failing_teardown.robot +29 -0
- data/vendor/robot/atest/testdata/core/failing_suite_teardown_dir/failing_teardown_dir/ftd_passing_teardown.robot +20 -0
- data/vendor/robot/atest/testdata/core/failing_suite_teardown_dir/passing_teardown.robot +14 -0
- data/vendor/robot/atest/testdata/core/failing_suite_teardown_dir/passing_teardown_dir/ptd_failing_teardown.robot +23 -0
- data/vendor/robot/atest/testdata/core/failing_suite_teardown_dir/passing_teardown_dir/ptd_passing_teardown.robot +14 -0
- data/vendor/robot/atest/testdata/core/keyword_teardown.robot +109 -0
- data/vendor/robot/atest/testdata/core/long_suite_setup_and_teardown_errors.robot +21 -0
- data/vendor/robot/atest/testdata/core/overriding_default_settings_with_none.robot +60 -0
- data/vendor/robot/atest/testdata/core/passing_suite_setup.robot +6 -0
- data/vendor/robot/atest/testdata/core/passing_suite_setup_and_teardown.robot +26 -0
- data/vendor/robot/atest/testdata/core/passing_suite_teardown.robot +11 -0
- data/vendor/robot/atest/testdata/core/resource_and_variable_imports.robot +130 -0
- data/vendor/robot/atest/testdata/core/resources.robot +8 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/dynamicVariables.py +6 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/dynamic_variables.py +20 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/empty_resource.robot +1 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/invalid_list_variable.py +2 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/invalid_variable_file.py +1 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/resource_with_testcase_table.robot +4 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/resources.robot +17 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/resources2.robot +7 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/resources_imported_by_resource.robot +7 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/variables.py +6 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/variables2.py +1 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/variables_imported_by_resource.py +1 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/vars_from_cli.py +5 -0
- data/vendor/robot/atest/testdata/core/resources_and_variables/vars_from_cli2.py +11 -0
- data/vendor/robot/atest/testdata/core/same_test_multiple_times_in_suite.robot +27 -0
- data/vendor/robot/atest/testdata/core/test_case_status.robot +81 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir/_ignore_this_dir/ignore_this_file.robot +3 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir/_ignore_this_file.robot +3 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir/no_extension +2 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir/no_tests_dir_1/some.txt +1 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir/no_tests_file_1.robot +7 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir/test_dir_1/no_tests_dir_2/no_tests_file_3.robot +7 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir/test_dir_1/no_tests_file_2.robot +7 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir/test_dir_1/test_dir_2/test_dir_3/test_file_3.robot +3 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir/test_dir_1/test_file_2.robot +3 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir/test_file_1.robot +3 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir_with_init_file/__init__.robot +31 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir_with_init_file/sub_suite_with_init_file/__INIT__.robot +23 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir_with_init_file/sub_suite_with_init_file/test_cases_1.robot +26 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir_with_init_file/sub_suite_with_init_file/test_cases_2.robot +16 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir_with_init_file/sub_suite_without_init_file/test_cases_1.robot +26 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir_with_init_file/sub_suite_without_init_file/test_cases_2.robot +16 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir_with_init_file/test_cases_1.robot +26 -0
- data/vendor/robot/atest/testdata/core/test_suite_dir_with_init_file/test_cases_2.robot +16 -0
- data/vendor/robot/atest/testdata/core/timeouts.robot +329 -0
- data/vendor/robot/atest/testdata/core/timeouts_with_custom_messages.robot +61 -0
- data/vendor/robot/atest/testdata/core/unicode_failure_in_suite_setup_and_teardown.robot +13 -0
- data/vendor/robot/atest/testdata/core/unicode_with_java_libs.robot +14 -0
- data/vendor/robot/atest/testdata/core/variables.py +3 -0
- data/vendor/robot/atest/testdata/keywords/DupeDynamicKeywords.py +10 -0
- data/vendor/robot/atest/testdata/keywords/DupeHybridKeywords.py +12 -0
- data/vendor/robot/atest/testdata/keywords/DupeKeywords.py +26 -0
- data/vendor/robot/atest/testdata/keywords/DynamicLibraryWithKeywordTags.py +10 -0
- data/vendor/robot/atest/testdata/keywords/LibraryWithKeywordTags.py +32 -0
- data/vendor/robot/atest/testdata/keywords/TraceLogArgsLibrary.py +42 -0
- data/vendor/robot/atest/testdata/keywords/dots_in_keyword_name.robot +85 -0
- data/vendor/robot/atest/testdata/keywords/dupe_keywords.robot +12 -0
- data/vendor/robot/atest/testdata/keywords/duplicate_dynamic_keywords.robot +20 -0
- data/vendor/robot/atest/testdata/keywords/duplicate_hybrid_keywords.robot +20 -0
- data/vendor/robot/atest/testdata/keywords/duplicate_static_keywords.robot +28 -0
- data/vendor/robot/atest/testdata/keywords/duplicate_user_keywords.robot +61 -0
- data/vendor/robot/atest/testdata/keywords/embedded_arguments.robot +274 -0
- data/vendor/robot/atest/testdata/keywords/embedded_arguments_library_keywords.robot +152 -0
- data/vendor/robot/atest/testdata/keywords/embedded_arguments_match_all.robot +14 -0
- data/vendor/robot/atest/testdata/keywords/java_argument_type_coercion.robot +41 -0
- data/vendor/robot/atest/testdata/keywords/java_arguments.robot +276 -0
- data/vendor/robot/atest/testdata/keywords/keyword_names.robot +127 -0
- data/vendor/robot/atest/testdata/keywords/keyword_namespaces.robot +106 -0
- data/vendor/robot/atest/testdata/keywords/keyword_not_found.robot +38 -0
- data/vendor/robot/atest/testdata/keywords/keyword_recommendations.robot +315 -0
- data/vendor/robot/atest/testdata/keywords/keyword_tags.robot +67 -0
- data/vendor/robot/atest/testdata/keywords/library/__init__.py +0 -0
- data/vendor/robot/atest/testdata/keywords/library/with/__init__.py +0 -0
- data/vendor/robot/atest/testdata/keywords/library/with/dots/__init__.py +8 -0
- data/vendor/robot/atest/testdata/keywords/library/with/dots/in/__init__.py +0 -0
- data/vendor/robot/atest/testdata/keywords/library/with/dots/in/name/__init__.py +12 -0
- data/vendor/robot/atest/testdata/keywords/library_with_keywords_with_dots_in_name.py +9 -0
- data/vendor/robot/atest/testdata/keywords/named_args/DynamicLibrary.py +40 -0
- data/vendor/robot/atest/testdata/keywords/named_args/DynamicLibraryWithKwargsSupport.py +15 -0
- data/vendor/robot/atest/testdata/keywords/named_args/KwargsLibrary.py +16 -0
- data/vendor/robot/atest/testdata/keywords/named_args/helper.py +21 -0
- data/vendor/robot/atest/testdata/keywords/named_args/python_library.py +19 -0
- data/vendor/robot/atest/testdata/keywords/named_args/variables_in_names.robot +63 -0
- data/vendor/robot/atest/testdata/keywords/named_args/with_dynamic_keywords.robot +131 -0
- data/vendor/robot/atest/testdata/keywords/named_args/with_dynamic_kwargs_support.robot +94 -0
- data/vendor/robot/atest/testdata/keywords/named_args/with_python_keywords.robot +250 -0
- data/vendor/robot/atest/testdata/keywords/named_args/with_user_keywords.robot +172 -0
- data/vendor/robot/atest/testdata/keywords/optional_given_when_then.robot +71 -0
- data/vendor/robot/atest/testdata/keywords/python_arguments.robot +95 -0
- data/vendor/robot/atest/testdata/keywords/resource.with.dots.in.name.robot +12 -0
- data/vendor/robot/atest/testdata/keywords/resource_with_keywords_with_dots_in_name.robot +9 -0
- data/vendor/robot/atest/testdata/keywords/resources/MyLibrary1.py +78 -0
- data/vendor/robot/atest/testdata/keywords/resources/MyLibrary2.py +34 -0
- data/vendor/robot/atest/testdata/keywords/resources/RecLibrary1.py +82 -0
- data/vendor/robot/atest/testdata/keywords/resources/RecLibrary2.py +21 -0
- data/vendor/robot/atest/testdata/keywords/resources/embedded_args_in_lk_1.py +118 -0
- data/vendor/robot/atest/testdata/keywords/resources/embedded_args_in_lk_2.py +7 -0
- data/vendor/robot/atest/testdata/keywords/resources/embedded_args_in_uk_1.robot +10 -0
- data/vendor/robot/atest/testdata/keywords/resources/embedded_args_in_uk_2.robot +4 -0
- data/vendor/robot/atest/testdata/keywords/resources/my_resource_1.robot +42 -0
- data/vendor/robot/atest/testdata/keywords/resources/my_resource_2.robot +15 -0
- data/vendor/robot/atest/testdata/keywords/resources/optional_given_when_then.robot +10 -0
- data/vendor/robot/atest/testdata/keywords/resources/recommendation_resource_1.robot +18 -0
- data/vendor/robot/atest/testdata/keywords/resources/recommendation_resource_2.robot +15 -0
- data/vendor/robot/atest/testdata/keywords/trace_log_keyword_arguments.robot +115 -0
- data/vendor/robot/atest/testdata/keywords/trace_log_return_value.robot +36 -0
- data/vendor/robot/atest/testdata/keywords/user_keyword_arguments.robot +306 -0
- data/vendor/robot/atest/testdata/keywords/user_keyword_kwargs.robot +186 -0
- data/vendor/robot/atest/testdata/keywords/user_keyword_return_values.robot +84 -0
- data/vendor/robot/atest/testdata/libdoc/DocFormat.py +39 -0
- data/vendor/robot/atest/testdata/libdoc/DocFormatHtml.java +20 -0
- data/vendor/robot/atest/testdata/libdoc/DocFormatHtml.py +8 -0
- data/vendor/robot/atest/testdata/libdoc/DocFormatInvalid.py +8 -0
- data/vendor/robot/atest/testdata/libdoc/DocSetInInit.py +4 -0
- data/vendor/robot/atest/testdata/libdoc/DynamicLibrary.py +48 -0
- data/vendor/robot/atest/testdata/libdoc/DynamicLibraryWithoutGetKwArgsAndDoc.py +13 -0
- data/vendor/robot/atest/testdata/libdoc/Example.java +113 -0
- data/vendor/robot/atest/testdata/libdoc/ExampleSpec.xml +56 -0
- data/vendor/robot/atest/testdata/libdoc/InternalLinking.py +68 -0
- data/vendor/robot/atest/testdata/libdoc/InvalidKeywords.py +23 -0
- data/vendor/robot/atest/testdata/libdoc/NewStyleNoInit.py +5 -0
- data/vendor/robot/atest/testdata/libdoc/NoArgConstructor.java +17 -0
- data/vendor/robot/atest/testdata/libdoc/NoConstructor.java +5 -0
- data/vendor/robot/atest/testdata/libdoc/invalid_user_keywords.robot +13 -0
- data/vendor/robot/atest/testdata/libdoc/module.py +54 -0
- data/vendor/robot/atest/testdata/libdoc/no_arg_init.py +8 -0
- data/vendor/robot/atest/testdata/libdoc/resource.robot +62 -0
- data/vendor/robot/atest/testdata/misc/dummy_lib_test.robot +6 -0
- data/vendor/robot/atest/testdata/misc/for_loops.robot +12 -0
- data/vendor/robot/atest/testdata/misc/formatting_and_escaping.robot +26 -0
- data/vendor/robot/atest/testdata/misc/many_tests.robot +24 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/01__suite_first.robot +36 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/02__sub.suite.1/first__suite4.robot +36 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/02__sub.suite.1/second__.Sui.te.2..robot +36 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/03__suite3.robot +36 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/04__suite4.robot +36 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/05__suite5.robot +36 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/10__suite10.robot +36 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/SUite7.robot +39 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/suiTe_8.robot +36 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/suite 6.robot +39 -0
- data/vendor/robot/atest/testdata/misc/multiple_suites/suite_9_name.robot +36 -0
- data/vendor/robot/atest/testdata/misc/normal.robot +24 -0
- data/vendor/robot/atest/testdata/misc/pass_and_fail.robot +28 -0
- data/vendor/robot/atest/testdata/misc/setups_and_teardowns.robot +61 -0
- data/vendor/robot/atest/testdata/misc/suites/__init__.robot +7 -0
- data/vendor/robot/atest/testdata/misc/suites/fourth.robot +15 -0
- data/vendor/robot/atest/testdata/misc/suites/subsuites/sub1.robot +20 -0
- data/vendor/robot/atest/testdata/misc/suites/subsuites/sub2.robot +14 -0
- data/vendor/robot/atest/testdata/misc/suites/subsuites2/sub.suite.4.robot +3 -0
- data/vendor/robot/atest/testdata/misc/suites/subsuites2/subsuite3.robot +15 -0
- data/vendor/robot/atest/testdata/misc/suites/tsuite1.robot +18 -0
- data/vendor/robot/atest/testdata/misc/suites/tsuite2.robot +11 -0
- data/vendor/robot/atest/testdata/misc/suites/tsuite3.robot +12 -0
- data/vendor/robot/atest/testdata/misc/timeouts.robot +26 -0
- data/vendor/robot/atest/testdata/misc/unicode.robot +38 -0
- data/vendor/robot/atest/testdata/misc/warnings_and_errors.robot +29 -0
- data/vendor/robot/atest/testdata/output/flatten_keywords.robot +45 -0
- data/vendor/robot/atest/testdata/output/js_model.robot +22 -0
- data/vendor/robot/atest/testdata/output/listeners/LibraryWithFailingListener.py +4 -0
- data/vendor/robot/atest/testdata/output/listeners/RunKeywordWithNonStringArguments.py +5 -0
- data/vendor/robot/atest/testdata/output/listeners/failing_library_listener.robot +10 -0
- data/vendor/robot/atest/testdata/output/listeners/failing_listener.py +19 -0
- data/vendor/robot/atest/testdata/output/listeners/imports/another_resource.robot +3 -0
- data/vendor/robot/atest/testdata/output/listeners/imports/dynamically_imported_resource.robot +3 -0
- data/vendor/robot/atest/testdata/output/listeners/imports/imports.robot +29 -0
- data/vendor/robot/atest/testdata/output/listeners/imports/local_lib.py +7 -0
- data/vendor/robot/atest/testdata/output/listeners/imports/resource_with_imports.robot +7 -0
- data/vendor/robot/atest/testdata/output/listeners/imports/vars.py +2 -0
- data/vendor/robot/atest/testdata/output/listeners/keyword_argument_types.robot +16 -0
- data/vendor/robot/atest/testdata/output/listeners/logging_listener.py +23 -0
- data/vendor/robot/atest/testdata/output/listeners/test_template.robot +22 -0
- data/vendor/robot/atest/testdata/output/listeners/v3.py +103 -0
- data/vendor/robot/atest/testdata/output/listeners/verify_template_listener.py +12 -0
- data/vendor/robot/atest/testdata/output/names_needing_escaping.robot +46 -0
- data/vendor/robot/atest/testdata/parsing/bom.robot +9 -0
- data/vendor/robot/atest/testdata/parsing/bom.tsv +10 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/html/empty.html +0 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/html/invalid.html +1 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/html/malformed.html +11 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/html/not_a_picture.jpg +1 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/html/sample.html +787 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/html/with_init/__init__.html +303 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/html/with_init/sub_suite1.html +291 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/html/with_init/sub_suite2.html +397 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/mixed_data/HTML.html +309 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/mixed_data/REST.rest +71 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/mixed_data/TSV.tsv +30 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/mixed_data/TXT.txt +30 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/html_resource.html +226 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/html_resource2.html +213 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/rest_resource.rst +23 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/rest_resource2.rest +11 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/robot_resource.robot +11 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/robot_resource2.robot +6 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/tsv_resource.tsv +11 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/tsv_resource2.tsv +6 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/txt_resource.txt +11 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/txt_resource2.txt +6 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/resources/variables.py +4 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/rest/empty.rest +0 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/rest/include.rst +9 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/rest/invalid.rest +5 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/rest/sample.rst +240 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/rest/with_init/__init__.rest +24 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/rest/with_init/sub_suite1.rst +5 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/rest/with_init/sub_suite2.rst +16 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/rest_directives/include.rst +9 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/rest_directives/sample.rst +150 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/robot/empty.robot +0 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/robot/invalid.robot +5 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/robot/sample.robot +116 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/robot/with_init/__init__.robot +9 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/robot/with_init/sub_suite1.robot +23 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/robot/with_init/sub_suite2.robot +11 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/tsv/empty.tsv +0 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/tsv/invalid.tsv +5 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/tsv/sample.tsv +113 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/tsv/with_init/__init__.tsv +9 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/tsv/with_init/sub_suite1.tsv +23 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/tsv/with_init/sub_suite2.tsv +10 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/txt/empty.txt +0 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/txt/invalid.txt +5 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/txt/sample.txt +117 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/txt/with_init/__init__.txt +9 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/txt/with_init/sub_suite1.txt +23 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/txt/with_init/sub_suite2.txt +11 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/txt_special_cases/escaping.txt +12 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/txt_special_cases/pipes.txt +73 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/txt_special_cases/spaces.txt +31 -0
- data/vendor/robot/atest/testdata/parsing/data_formats/txt_special_cases/txt_with_tabs.txt +10 -0
- data/vendor/robot/atest/testdata/parsing/deprecated_settings.robot +22 -0
- data/vendor/robot/atest/testdata/parsing/empty_testcase_table.robot +1 -0
- data/vendor/robot/atest/testdata/parsing/escaping.robot +185 -0
- data/vendor/robot/atest/testdata/parsing/escaping_variables.py +15 -0
- data/vendor/robot/atest/testdata/parsing/failing_init/__init__.robot +6 -0
- data/vendor/robot/atest/testdata/parsing/failing_init/failing_init.robot +3 -0
- data/vendor/robot/atest/testdata/parsing/html_entityrefs.html +223 -0
- data/vendor/robot/atest/testdata/parsing/html_entityrefs_variables.py +3 -0
- data/vendor/robot/atest/testdata/parsing/invalid_table_names.html +47 -0
- data/vendor/robot/atest/testdata/parsing/invalid_table_names.robot +21 -0
- data/vendor/robot/atest/testdata/parsing/invalid_tables_resource.html +40 -0
- data/vendor/robot/atest/testdata/parsing/invalid_tables_resource.robot +15 -0
- data/vendor/robot/atest/testdata/parsing/library_caching/file1.robot +11 -0
- data/vendor/robot/atest/testdata/parsing/library_caching/file2.robot +11 -0
- data/vendor/robot/atest/testdata/parsing/library_caching/resource.robot +6 -0
- data/vendor/robot/atest/testdata/parsing/multirow.robot +208 -0
- data/vendor/robot/atest/testdata/parsing/nbsp.html +22 -0
- data/vendor/robot/atest/testdata/parsing/nbsp.robot +6 -0
- data/vendor/robot/atest/testdata/parsing/nbsp.tsv +3 -0
- data/vendor/robot/atest/testdata/parsing/non_ascii_paths/Ty-ouml/sect-test-sect.robot +3 -0
- data/vendor/robot/atest/testdata/parsing/non_ascii_paths/Ty-ouml/tyhj-auml.robot +0 -0
- data/vendor/robot/atest/testdata/parsing/non_ascii_paths/test-auml-ouml.robot +3 -0
- data/vendor/robot/atest/testdata/parsing/notests/empty.tsv +0 -0
- data/vendor/robot/atest/testdata/parsing/notests/no_tests.txt +1 -0
- data/vendor/robot/atest/testdata/parsing/notests/subdir/content +1 -0
- data/vendor/robot/atest/testdata/parsing/resource_parsing/01_tests.robot +7 -0
- data/vendor/robot/atest/testdata/parsing/resource_parsing/02_resource.robot +6 -0
- data/vendor/robot/atest/testdata/parsing/resource_parsing/03_resource.robot +11 -0
- data/vendor/robot/atest/testdata/parsing/resource_parsing/04_tests.robot +12 -0
- data/vendor/robot/atest/testdata/parsing/same_setting_multiple_times.robot +67 -0
- data/vendor/robot/atest/testdata/parsing/suite_metadata.robot +20 -0
- data/vendor/robot/atest/testdata/parsing/suite_settings.robot +28 -0
- data/vendor/robot/atest/testdata/parsing/table_names.robot +41 -0
- data/vendor/robot/atest/testdata/parsing/test_case_settings.robot +167 -0
- data/vendor/robot/atest/testdata/parsing/unsupported.log +1 -0
- data/vendor/robot/atest/testdata/parsing/user_keyword_settings.robot +183 -0
- data/vendor/robot/atest/testdata/parsing/utf8_data.html +342 -0
- data/vendor/robot/atest/testdata/parsing/utf8_data.robot +38 -0
- data/vendor/robot/atest/testdata/parsing/utf8_data.tsv +40 -0
- data/vendor/robot/atest/testdata/parsing/utf8_data_in_html5.html +341 -0
- data/vendor/robot/atest/testdata/rebot/created_normal.xml +23 -0
- data/vendor/robot/atest/testdata/rebot/times.xml +77 -0
- data/vendor/robot/atest/testdata/running/NonAsciiByteLibrary.py +11 -0
- data/vendor/robot/atest/testdata/running/binary_list.py +2 -0
- data/vendor/robot/atest/testdata/running/continue_for_loop.robot +146 -0
- data/vendor/robot/atest/testdata/running/continue_on_failure.robot +221 -0
- data/vendor/robot/atest/testdata/running/continue_on_failure_in_suite_setup.robot +14 -0
- data/vendor/robot/atest/testdata/running/dynamic_teardown.robot +8 -0
- data/vendor/robot/atest/testdata/running/empty_setup_and_teardown_are_ignored.robot +15 -0
- data/vendor/robot/atest/testdata/running/exit_for_loop.robot +128 -0
- data/vendor/robot/atest/testdata/running/expbytevalues.py +41 -0
- data/vendor/robot/atest/testdata/running/failures_in_teardown.robot +158 -0
- data/vendor/robot/atest/testdata/running/fatal_error_in_suite_teardown.robot +12 -0
- data/vendor/robot/atest/testdata/running/fatal_exception/01__python_library_kw.robot +14 -0
- data/vendor/robot/atest/testdata/running/fatal_exception/02__irrelevant.robot +16 -0
- data/vendor/robot/atest/testdata/running/fatal_exception/03__java_library_kw.robot +12 -0
- data/vendor/robot/atest/testdata/running/fatal_exception_suite_setup/01__suite_setup.robot +9 -0
- data/vendor/robot/atest/testdata/running/fatal_exception_suite_setup/02__irrelevant.robot +14 -0
- data/vendor/robot/atest/testdata/running/for.robot +552 -0
- data/vendor/robot/atest/testdata/running/html_error_message.robot +67 -0
- data/vendor/robot/atest/testdata/running/long_error_messages.robot +64 -0
- data/vendor/robot/atest/testdata/running/non_ascii_bytes.robot +30 -0
- data/vendor/robot/atest/testdata/running/none_setup_and_teardown_are_ignored.robot +15 -0
- data/vendor/robot/atest/testdata/running/pass_execution.robot +253 -0
- data/vendor/robot/atest/testdata/running/pass_execution_in_suite_setup_and_teardown.robot +15 -0
- data/vendor/robot/atest/testdata/running/pass_execution_in_suite_teardown_invalid.robot +12 -0
- data/vendor/robot/atest/testdata/running/pass_execution_library.py +10 -0
- data/vendor/robot/atest/testdata/running/prevent_recursion.robot +66 -0
- data/vendor/robot/atest/testdata/running/return_from_keyword.robot +173 -0
- data/vendor/robot/atest/testdata/running/stopping_with_signal/Library.py +15 -0
- data/vendor/robot/atest/testdata/running/stopping_with_signal/keyword_timeout.robot +21 -0
- data/vendor/robot/atest/testdata/running/stopping_with_signal/run_keyword.robot +15 -0
- data/vendor/robot/atest/testdata/running/stopping_with_signal/swallow_exception.robot +15 -0
- data/vendor/robot/atest/testdata/running/stopping_with_signal/test_timeout.robot +16 -0
- data/vendor/robot/atest/testdata/running/stopping_with_signal/with_teardown.robot +21 -0
- data/vendor/robot/atest/testdata/running/stopping_with_signal/without_any_timeout.robot +15 -0
- data/vendor/robot/atest/testdata/running/test_template.robot +305 -0
- data/vendor/robot/atest/testdata/running/test_template_with_embeded_args.robot +47 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/DynamicRegisteredLibrary.py +14 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/FailUntilSucceeds.py +14 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/NotRegisteringLibrary.py +5 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/RegisteredClass.py +12 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/RegisteringLibrary.py +13 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/UseBuiltIn.py +17 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/call_method.robot +60 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/convert_to_bytes.robot +170 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/converter.robot +220 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/count.robot +74 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/create_dictionary.robot +120 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/documentation/__init__.robot +4 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/documentation/set_documentation.robot +39 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/evaluate.robot +147 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/exit_on_failure.robot +20 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/fail.robot +40 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/fatal_error.robot +21 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/get_library_instance.robot +111 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/get_time.robot +73 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/get_user_dict.py +8 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/get_variable_value.robot +54 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/get_variables.robot +92 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/import_library.robot +55 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/import_resource.robot +89 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/import_resource_resource_1.robot +13 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/import_resource_resource_2.robot +12 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/import_resource_resource_3.robot +10 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/import_resource_resource_resource.robot +14 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/import_resource_vars.py +2 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/import_variables.robot +95 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/keyword_should_exist.robot +83 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/keyword_should_exist_resource_1.robot +6 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/keyword_should_exist_resource_2.robot +3 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/length.robot +114 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/length_variables.py +44 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/log.robot +115 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/log_variables.robot +37 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/misc.robot +46 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/numbers_to_convert.py +33 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/objects_for_call_method.py +32 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/reload_library/Reloadable.py +34 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/reload_library/StaticLibrary.py +11 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/reload_library/module_library.py +6 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/reload_library/reload_library.robot +66 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/reload_library/reload_with_name.robot +24 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/repeat_keyword.robot +97 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/replace_variables.robot +56 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/resource_for_get_variables.robot +7 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword.robot +95 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_and_continue_on_failure.robot +92 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_and_return.robot +176 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_and_return_status.robot +9 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_based_on_suite_stats/run_keyword_if_all_critical_tests_passed_when_critical_fails.robot +8 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_based_on_suite_stats/run_keyword_if_all_critical_tests_passed_when_criticals_pass.robot +21 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_based_on_suite_stats/run_keyword_if_all_tests_passed_when_all_pass.robot +18 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_based_on_suite_stats/run_keyword_if_all_tests_passed_when_test_fails.robot +7 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_based_on_suite_stats/run_keyword_if_any_critical_tests_failed_when_critical_fails.robot +14 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_based_on_suite_stats/run_keyword_if_any_critical_tests_failed_when_criticals_pass.robot +7 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_based_on_suite_stats/run_keyword_if_any_tests_failed_when_all_pass.robot +6 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_based_on_suite_stats/run_keyword_if_any_tests_failed_when_test_fails.robot +13 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_based_on_suite_stats/run_kw_variants_used_outside_suite_teardown.robot +16 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_if_test_passed_failed/run_keyword_if_test_failed_in_suite_fixtures.robot +12 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_if_test_passed_failed/run_keyword_if_test_passed_failed.robot +138 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_if_test_passed_failed/run_keyword_if_test_passed_in_suite_fixtures.robot +13 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_if_timeout_occurred.robot +86 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_if_unless.robot +183 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_variants_registering.robot +43 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_variants_variable_handling.robot +56 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_variants_with_escaping_control_arguments.robot +55 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keyword_with_errors.robot +236 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keywords.robot +123 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/run_keywords_with_arguments.robot +54 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_library_search_order/TestLibrary.py +13 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_library_search_order/setting_library_order.robot +71 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_library_search_order/setting_library_order_does_not_affect_next_suite.robot +11 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_log_level.robot +41 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_resource_search_order/resource1.robot +3 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_resource_search_order/resource2.robot +3 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_resource_search_order/setting_resource_order.robot +68 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_resource_search_order/setting_resource_order_does_not_affect_next_suite.robot +11 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_suite_metadata.robot +49 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_test_message.robot +102 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_test_message_in_suite_level.robot +7 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/set_variable_if.robot +148 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/setting_variables/__init__.robot +31 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/setting_variables/variables.robot +611 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/setting_variables/variables2.robot +43 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/should_be_equal.robot +101 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/should_be_equal_as_xxx.robot +107 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/should_be_true.robot +48 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/should_contain.robot +62 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/should_contain_any.robot +100 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/should_match.robot +72 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/should_xxx_with.robot +66 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/sleep.robot +29 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/tags/__init__.robot +8 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/tags/sub1.robot +95 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/tags/sub2.robot +37 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/template.txt +2 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/times.py +8 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/used_in_custom_libs_and_listeners.robot +17 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/variable.py +9 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/variable_should_exist.robot +142 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/variables_to_import_1.py +2 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/variables_to_import_2.py +4 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/variables_to_verify.py +62 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/vars_for_get_variables.py +1 -0
- data/vendor/robot/atest/testdata/standard_libraries/builtin/wait_until_keyword_succeeds.robot +131 -0
- data/vendor/robot/atest/testdata/standard_libraries/collections/CollectionsHelperLibrary.py +9 -0
- data/vendor/robot/atest/testdata/standard_libraries/collections/collections_resources.robot +8 -0
- data/vendor/robot/atest/testdata/standard_libraries/collections/dictionary.robot +250 -0
- data/vendor/robot/atest/testdata/standard_libraries/collections/list.robot +598 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/add_time_to_date.robot +27 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/convert_date_input_format.robot +74 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/convert_date_result_format.robot +101 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/convert_time_input_format.robot +80 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/convert_time_result_format.robot +72 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/date_ranges.robot +48 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/datesandtimes.py +28 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/get_current_date.robot +43 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/subtract_date_from_date.robot +30 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/subtract_time_from_date.robot +25 -0
- data/vendor/robot/atest/testdata/standard_libraries/datetime/time_calculations.robot +27 -0
- data/vendor/robot/atest/testdata/standard_libraries/dialogs/dialogs.robot +76 -0
- data/vendor/robot/atest/testdata/standard_libraries/easter.robot +7 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/create_and_remove_dir.robot +66 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/create_file.robot +95 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/env_vars.robot +134 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/file_and_dir_empty_or_not.robot +101 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/file_and_dir_existence.robot +178 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/HelperLib.py +7 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/ascii.txt +1 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/latin-1.txt +1 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/latin-1_multiple_rows.txt +5 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/prog.py +14 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/utf-16BE.txt +0 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/utf-16BEBOM.txt +0 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/utf-16LE.txt +0 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/utf-16LEBOM.txt +0 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/utf-8.txt +1 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/utf-8_multiple_rows.txt +5 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/utf-8_windows_line_endings.txt +5 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/files/writable_prog.py +5 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/get_file.robot +185 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/get_file_size.robot +26 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/list_dir.robot +105 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/modified_time.robot +109 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/move_copy_directory.robot +88 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/move_copy_file.robot +169 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/move_copy_files.robot +220 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/os_resource.robot +31 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/path.robot +121 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/path_expansion.robot +28 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/remove_file.robot +63 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/run.robot +91 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/special_names.robot +87 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/touch.robot +42 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/wait_until_library.py +23 -0
- data/vendor/robot/atest/testdata/standard_libraries/operating_system/wait_until_removed_created.robot +112 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/CustomLib.py +4 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/PlatformLib.py +10 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/active_process.robot +48 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/commandline.robot +99 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/env_config.robot +51 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/files/countdown.py +22 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/files/encoding.py +25 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/files/non_terminable.py +31 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/files/script.py +11 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/files/timeout.py +12 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/get_process_result.robot +67 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/is_process_alive.robot +24 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/newlines.robot +20 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/no_active_process.robot +16 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/output_encoding.robot +51 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/passing_arguments.robot +51 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/process_library.robot +54 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/process_resource.robot +122 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/run_process_with_timeout.robot +54 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/sending_signal.robot +71 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/stdout_and_stderr.robot +93 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/terminate_process.robot +107 -0
- data/vendor/robot/atest/testdata/standard_libraries/process/wait_for_process.robot +43 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/Conflict.py +2 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/Helper.py +4 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/argument_coersion.robot +143 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/arguments.py +88 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/arguments.robot +133 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/binary_result.robot +70 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/binaryresult.py +44 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/dict_result.robot +35 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/dictresult.py +19 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/documentation.py +40 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/documentation.robot +20 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/invalid.py +24 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/invalid.robot +27 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/keyword_tags.robot +25 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/keywordtags.py +38 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/remoteserver.py +77 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/simple_server.robot +47 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/simpleserver.py +41 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/special_errors.robot +26 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/specialerrors.py +20 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/timeouts.py +13 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/timeouts.robot +43 -0
- data/vendor/robot/atest/testdata/standard_libraries/remote/variables.py +28 -0
- data/vendor/robot/atest/testdata/standard_libraries/reserved.robot +25 -0
- data/vendor/robot/atest/testdata/standard_libraries/screenshot/screenshot_resource.robot +22 -0
- data/vendor/robot/atest/testdata/standard_libraries/screenshot/set_screenshot_directory.robot +33 -0
- data/vendor/robot/atest/testdata/standard_libraries/screenshot/take_screenshot.robot +49 -0
- data/vendor/robot/atest/testdata/standard_libraries/string/convert_to.robot +31 -0
- data/vendor/robot/atest/testdata/standard_libraries/string/encode_decode.robot +72 -0
- data/vendor/robot/atest/testdata/standard_libraries/string/generate_random_string.robot +49 -0
- data/vendor/robot/atest/testdata/standard_libraries/string/get_matching_lines.robot +115 -0
- data/vendor/robot/atest/testdata/standard_libraries/string/get_regexp_matches.robot +54 -0
- data/vendor/robot/atest/testdata/standard_libraries/string/remove_from_string.robot +33 -0
- data/vendor/robot/atest/testdata/standard_libraries/string/replace_string.robot +43 -0
- data/vendor/robot/atest/testdata/standard_libraries/string/should_be.robot +79 -0
- data/vendor/robot/atest/testdata/standard_libraries/string/split_string.robot +95 -0
- data/vendor/robot/atest/testdata/standard_libraries/string/string.robot +112 -0
- data/vendor/robot/atest/testdata/standard_libraries/telnet/README.rst +15 -0
- data/vendor/robot/atest/testdata/standard_libraries/telnet/configuration.robot +272 -0
- data/vendor/robot/atest/testdata/standard_libraries/telnet/connections.robot +53 -0
- data/vendor/robot/atest/testdata/standard_libraries/telnet/login.robot +38 -0
- data/vendor/robot/atest/testdata/standard_libraries/telnet/read_and_write.robot +173 -0
- data/vendor/robot/atest/testdata/standard_libraries/telnet/telnet_resource.robot +24 -0
- data/vendor/robot/atest/testdata/standard_libraries/telnet/telnet_variables.py +10 -0
- data/vendor/robot/atest/testdata/standard_libraries/telnet/terminal_emulation.robot +159 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/add_and_remove_elements.robot +118 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/add_and_remove_elements_with_lxml.robot +120 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/clear_element.robot +27 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/clear_element_with_lxml.robot +28 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/copy_element.robot +35 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/copy_element_with_lxml.robot +36 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/element_attribute.robot +81 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/element_attribute_with_lxml.robot +82 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/element_should_exist.robot +47 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/element_should_exist_with_lxml.robot +48 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/element_text.robot +89 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/element_text_with_lxml.robot +90 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/elements_should_be_equal.robot +91 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/elements_should_be_equal_with_lxml.robot +92 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/elements_should_match.robot +87 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/elements_should_match_with_lxml.robot +88 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/etree_namespaces.robot +97 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/etree_namespaces_with_lxml.robot +54 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/get_elements.robot +71 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/get_elements_with_lxml.robot +72 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/namespaces.robot +76 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/namespaces.xml +17 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/namespaces_with_lxml.robot +60 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/parsing.robot +39 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/parsing_with_lxml.robot +40 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/save_xml.robot +83 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/save_xml_with_lxml.robot +81 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/set_element_information.robot +125 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/set_element_information_with_lxml.robot +126 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/strip_namespaces.robot +63 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/strip_namespaces_with_lxml.robot +63 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/test.xml +24 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/to_string.robot +36 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/to_string_with_lxml.robot +38 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/xml_resource.robot +88 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/xpath.robot +102 -0
- data/vendor/robot/atest/testdata/standard_libraries/xml/xpath_with_lxml.robot +127 -0
- data/vendor/robot/atest/testdata/tags/default_and_force_tags.robot +19 -0
- data/vendor/robot/atest/testdata/tags/default_tags.robot +14 -0
- data/vendor/robot/atest/testdata/tags/force_tags.robot +14 -0
- data/vendor/robot/atest/testdata/tags/include_and_exclude.robot +28 -0
- data/vendor/robot/atest/testdata/tags/no_force_no_default_tags.robot +11 -0
- data/vendor/robot/atest/testdata/tags/tags_are_not_normalized.robot +55 -0
- data/vendor/robot/atest/testdata/test_libraries/AbstractJavaLibrary.class +0 -0
- data/vendor/robot/atest/testdata/test_libraries/AbstractJavaLibrary.java +2 -0
- data/vendor/robot/atest/testdata/test_libraries/ConstructorLogging.class +0 -0
- data/vendor/robot/atest/testdata/test_libraries/ConstructorLogging.java +12 -0
- data/vendor/robot/atest/testdata/test_libraries/DeprecatedKeywords.py +34 -0
- data/vendor/robot/atest/testdata/test_libraries/DynamicLibraryTags.py +26 -0
- data/vendor/robot/atest/testdata/test_libraries/ImportLogging.py +10 -0
- data/vendor/robot/atest/testdata/test_libraries/ImportRobotModuleTestLibrary.py +24 -0
- data/vendor/robot/atest/testdata/test_libraries/InitImportingAndIniting.py +31 -0
- data/vendor/robot/atest/testdata/test_libraries/InitLogging.py +17 -0
- data/vendor/robot/atest/testdata/test_libraries/InitializationFailJavaLibrary.class +0 -0
- data/vendor/robot/atest/testdata/test_libraries/InitializationFailJavaLibrary.java +7 -0
- data/vendor/robot/atest/testdata/test_libraries/InitializationFailLibrary.py +4 -0
- data/vendor/robot/atest/testdata/test_libraries/JavaLibUsingTimestamps.class +0 -0
- data/vendor/robot/atest/testdata/test_libraries/JavaLibUsingTimestamps.java +16 -0
- data/vendor/robot/atest/testdata/test_libraries/JavaLibraryWithoutPublicConstructor.class +0 -0
- data/vendor/robot/atest/testdata/test_libraries/JavaLibraryWithoutPublicConstructor.java +3 -0
- data/vendor/robot/atest/testdata/test_libraries/LibUsingLoggingApi.py +41 -0
- data/vendor/robot/atest/testdata/test_libraries/LibUsingPyLogging.py +67 -0
- data/vendor/robot/atest/testdata/test_libraries/MyInvalidLibFile.py +2 -0
- data/vendor/robot/atest/testdata/test_libraries/MyJavaLib.class +0 -0
- data/vendor/robot/atest/testdata/test_libraries/MyJavaLib.java +6 -0
- data/vendor/robot/atest/testdata/test_libraries/MyJavaLib2.class +0 -0
- data/vendor/robot/atest/testdata/test_libraries/MyJavaLib2.java +6 -0
- data/vendor/robot/atest/testdata/test_libraries/MyLibDir/ClassLib.py +4 -0
- data/vendor/robot/atest/testdata/test_libraries/MyLibDir/SubModuleLib.py +2 -0
- data/vendor/robot/atest/testdata/test_libraries/MyLibDir/SubPackage/ClassLib.py +4 -0
- data/vendor/robot/atest/testdata/test_libraries/MyLibDir/SubPackage/SubModuleLib.py +2 -0
- data/vendor/robot/atest/testdata/test_libraries/MyLibDir/SubPackage/__init__.py +4 -0
- data/vendor/robot/atest/testdata/test_libraries/MyLibDir/SubPackage2/__init__.py +2 -0
- data/vendor/robot/atest/testdata/test_libraries/MyLibDir/__init__.py +9 -0
- data/vendor/robot/atest/testdata/test_libraries/MyLibFile.py +7 -0
- data/vendor/robot/atest/testdata/test_libraries/NamedArgsImportLibrary.py +11 -0
- data/vendor/robot/atest/testdata/test_libraries/PrintLib.py +23 -0
- data/vendor/robot/atest/testdata/test_libraries/PythonLibUsingTimestamps.py +19 -0
- data/vendor/robot/atest/testdata/test_libraries/ThreadLoggingLib.py +23 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/LogLevels.py +15 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/empty_library.robot +6 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/empty_listenerlibrary.py +26 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/global_listenerlibrary.py +5 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/global_scope.robot +35 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/global_scope_2.robot +55 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/import_library.robot +42 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/listener_library3.robot +9 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/listenerlibrary.py +55 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/listenerlibrary3.py +52 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/log_levels.robot +31 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/module_v1_listenerlibrary.py +12 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/module_v1_listenerlibrary.robot +7 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/multiple_listenerlibrary.py +24 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/multiple_listeners.robot +11 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/multiple_listeners_java.robot +7 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/nested_scopes/01__no_listener.robot +3 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/nested_scopes/02__yes_listener.robot +141 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/nested_scopes/03__no_listener.robot +3 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/nested_scopes/__init__.robot +92 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/suite_listenerlibrary.py +5 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/suite_scope.robot +35 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/suite_scope_2.robot +35 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/suite_scope_java.robot +25 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/test_scope.robot +29 -0
- data/vendor/robot/atest/testdata/test_libraries/as_listener/test_scope_2.robot +17 -0
- data/vendor/robot/atest/testdata/test_libraries/avoid_properties_when_creating_libraries.robot +16 -0
- data/vendor/robot/atest/testdata/test_libraries/deprecated_keywords.robot +52 -0
- data/vendor/robot/atest/testdata/test_libraries/dir_for_libs/MyLibDir2/__init__.py +2 -0
- data/vendor/robot/atest/testdata/test_libraries/dir_for_libs/MyLibFile2.py +4 -0
- data/vendor/robot/atest/testdata/test_libraries/dir_for_libs/lib1/Lib.py +7 -0
- data/vendor/robot/atest/testdata/test_libraries/dir_for_libs/lib2/Lib.py +5 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_kwargs_support_java.robot +26 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_kwargs_support_python.robot +33 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_libraries/DynamicLibraryWithKwargsSupportWithoutArgspec.py +12 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_libraries/DynamicLibraryWithoutArgspec.py +19 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_libraries/EmbeddedArgs.py +8 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_libraries/InvalidArgSpecs.py +20 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_libraries/InvalidKeywordNames.py +8 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_libraries/NonAsciiKeywordNames.py +17 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_libraries_with_invalid_argspec.robot +36 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_library_args_and_docs.robot +54 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_library_java.robot +35 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_library_python.robot +72 -0
- data/vendor/robot/atest/testdata/test_libraries/dynamic_library_tags.robot +17 -0
- data/vendor/robot/atest/testdata/test_libraries/error_msg_and_details.robot +89 -0
- data/vendor/robot/atest/testdata/test_libraries/hybrid_library.robot +41 -0
- data/vendor/robot/atest/testdata/test_libraries/import_and_init_logging.robot +21 -0
- data/vendor/robot/atest/testdata/test_libraries/internal_modules_not_importable.robot +21 -0
- data/vendor/robot/atest/testdata/test_libraries/invalid_java_libraries.robot +10 -0
- data/vendor/robot/atest/testdata/test_libraries/java_libraries.robot +113 -0
- data/vendor/robot/atest/testdata/test_libraries/java_library_imports_with_args.robot +42 -0
- data/vendor/robot/atest/testdata/test_libraries/java_vars_for_imports.py +6 -0
- data/vendor/robot/atest/testdata/test_libraries/libraries_extending_existing_classes.robot +39 -0
- data/vendor/robot/atest/testdata/test_libraries/library_import_by_path.robot +52 -0
- data/vendor/robot/atest/testdata/test_libraries/library_import_failing.robot +24 -0
- data/vendor/robot/atest/testdata/test_libraries/library_import_from_archive.robot +11 -0
- data/vendor/robot/atest/testdata/test_libraries/library_import_normal.robot +28 -0
- data/vendor/robot/atest/testdata/test_libraries/library_import_with_variable.robot +18 -0
- data/vendor/robot/atest/testdata/test_libraries/library_import_with_variable_from_resource.robot +14 -0
- data/vendor/robot/atest/testdata/test_libraries/library_imports_with_args.robot +76 -0
- data/vendor/robot/atest/testdata/test_libraries/library_scope/01_tests.robot +33 -0
- data/vendor/robot/atest/testdata/test_libraries/library_scope/02_tests.robot +35 -0
- data/vendor/robot/atest/testdata/test_libraries/library_scope/__init__.robot +19 -0
- data/vendor/robot/atest/testdata/test_libraries/library_scope/resource.robot +26 -0
- data/vendor/robot/atest/testdata/test_libraries/library_scope_java/01_tests.robot +33 -0
- data/vendor/robot/atest/testdata/test_libraries/library_scope_java/02_tests.robot +35 -0
- data/vendor/robot/atest/testdata/test_libraries/library_scope_java/__init__.robot +19 -0
- data/vendor/robot/atest/testdata/test_libraries/library_scope_java/resource.robot +32 -0
- data/vendor/robot/atest/testdata/test_libraries/library_version.robot +11 -0
- data/vendor/robot/atest/testdata/test_libraries/library_with_0_parameters.robot +9 -0
- data/vendor/robot/atest/testdata/test_libraries/library_with_1_parameters.robot +10 -0
- data/vendor/robot/atest/testdata/test_libraries/library_with_2_parameters.robot +10 -0
- data/vendor/robot/atest/testdata/test_libraries/logging_api.robot +33 -0
- data/vendor/robot/atest/testdata/test_libraries/logging_with_logging.robot +36 -0
- data/vendor/robot/atest/testdata/test_libraries/module_lib_with_all.py +15 -0
- data/vendor/robot/atest/testdata/test_libraries/module_library.robot +105 -0
- data/vendor/robot/atest/testdata/test_libraries/named_args_in_imports.robot +30 -0
- data/vendor/robot/atest/testdata/test_libraries/new_style_classes.robot +20 -0
- data/vendor/robot/atest/testdata/test_libraries/non_main_threads_logging.robot +10 -0
- data/vendor/robot/atest/testdata/test_libraries/package_library.robot +50 -0
- data/vendor/robot/atest/testdata/test_libraries/print_logging.robot +48 -0
- data/vendor/robot/atest/testdata/test_libraries/print_logging_java.robot +28 -0
- data/vendor/robot/atest/testdata/test_libraries/spaces in path/SpacePathLib.py +2 -0
- data/vendor/robot/atest/testdata/test_libraries/timestamps_for_stdout_messages.robot +15 -0
- data/vendor/robot/atest/testdata/test_libraries/variables_for_library_import.robot +4 -0
- data/vendor/robot/atest/testdata/test_libraries/with_name_1.robot +48 -0
- data/vendor/robot/atest/testdata/test_libraries/with_name_2.robot +124 -0
- data/vendor/robot/atest/testdata/test_libraries/with_name_3.robot +28 -0
- data/vendor/robot/atest/testdata/test_libraries/with_name_4.robot +23 -0
- data/vendor/robot/atest/testdata/testdoc/testdoc.robot +13 -0
- data/vendor/robot/atest/testdata/tidy/__init__.robot +10 -0
- data/vendor/robot/atest/testdata/tidy/documentation.robot +31 -0
- data/vendor/robot/atest/testdata/tidy/documentation_expected.html +195 -0
- data/vendor/robot/atest/testdata/tidy/documentation_expected.robot +39 -0
- data/vendor/robot/atest/testdata/tidy/documentation_expected.tsv +32 -0
- data/vendor/robot/atest/testdata/tidy/documentation_expected.txt +39 -0
- data/vendor/robot/atest/testdata/tidy/else_tidy.robot +83 -0
- data/vendor/robot/atest/testdata/tidy/else_untidy.robot +51 -0
- data/vendor/robot/atest/testdata/tidy/golden.html +358 -0
- data/vendor/robot/atest/testdata/tidy/golden.robot +37 -0
- data/vendor/robot/atest/testdata/tidy/golden.tsv +34 -0
- data/vendor/robot/atest/testdata/tidy/golden_pipes.robot +37 -0
- data/vendor/robot/atest/testdata/tidy/golden_pipes_resource.robot +24 -0
- data/vendor/robot/atest/testdata/tidy/golden_resource.html +278 -0
- data/vendor/robot/atest/testdata/tidy/golden_resource.robot +24 -0
- data/vendor/robot/atest/testdata/tidy/golden_resource.tsv +23 -0
- data/vendor/robot/atest/testdata/tidy/golden_two_spaces.robot +37 -0
- data/vendor/robot/atest/testdata/tidy/golden_with_headers.robot +12 -0
- data/vendor/robot/atest/testdata/tidy/resource_with_empty_tables.robot +5 -0
- data/vendor/robot/atest/testdata/tidy/tests/__init__.robot +2 -0
- data/vendor/robot/atest/testdata/tidy/tests/sub/sub1.robot +4 -0
- data/vendor/robot/atest/testdata/tidy/tests/suite1.robot +15 -0
- data/vendor/robot/atest/testdata/tidy/testsuite_with_empty_tables.robot +7 -0
- data/vendor/robot/atest/testdata/variables/DynamicJavaClass.class +0 -0
- data/vendor/robot/atest/testdata/variables/DynamicJavaClass.java +13 -0
- data/vendor/robot/atest/testdata/variables/DynamicPythonClass.py +5 -0
- data/vendor/robot/atest/testdata/variables/InvalidClass.py +4 -0
- data/vendor/robot/atest/testdata/variables/JavaClass.class +0 -0
- data/vendor/robot/atest/testdata/variables/JavaClass.java +21 -0
- data/vendor/robot/atest/testdata/variables/PythonClass.py +14 -0
- data/vendor/robot/atest/testdata/variables/automatic_variables/HelperLib.py +23 -0
- data/vendor/robot/atest/testdata/variables/automatic_variables/__init__.robot +6 -0
- data/vendor/robot/atest/testdata/variables/automatic_variables/auto1.robot +108 -0
- data/vendor/robot/atest/testdata/variables/automatic_variables/auto2.robot +18 -0
- data/vendor/robot/atest/testdata/variables/automatic_variables/resource.robot +49 -0
- data/vendor/robot/atest/testdata/variables/builtin_variables.robot +168 -0
- data/vendor/robot/atest/testdata/variables/catenate_scalars_in_variable_table.robot +107 -0
- data/vendor/robot/atest/testdata/variables/commandline_variable_files.robot +27 -0
- data/vendor/robot/atest/testdata/variables/commandline_variables.robot +10 -0
- data/vendor/robot/atest/testdata/variables/dict_variable_in_variable_table.robot +140 -0
- data/vendor/robot/atest/testdata/variables/dict_variable_items.robot +55 -0
- data/vendor/robot/atest/testdata/variables/dict_vars.py +17 -0
- data/vendor/robot/atest/testdata/variables/dynamic_variable_files/dyn_vars.py +63 -0
- data/vendor/robot/atest/testdata/variables/dynamic_variable_files/getting_vars_from_dynamic_var_file.robot +32 -0
- data/vendor/robot/atest/testdata/variables/environment_variables.robot +94 -0
- data/vendor/robot/atest/testdata/variables/extended_assign.robot +78 -0
- data/vendor/robot/atest/testdata/variables/extended_assign_vars.py +30 -0
- data/vendor/robot/atest/testdata/variables/extended_variables.py +20 -0
- data/vendor/robot/atest/testdata/variables/extended_variables.robot +132 -0
- data/vendor/robot/atest/testdata/variables/get_file_lib.py +2 -0
- data/vendor/robot/atest/testdata/variables/invalid.YAML +1 -0
- data/vendor/robot/atest/testdata/variables/invalid_encoding.yaml +3 -0
- data/vendor/robot/atest/testdata/variables/keyword_status_and_message.robot +142 -0
- data/vendor/robot/atest/testdata/variables/list_and_dict_from_variable_file.robot +89 -0
- data/vendor/robot/atest/testdata/variables/list_and_dict_variable_file.py +37 -0
- data/vendor/robot/atest/testdata/variables/list_as_scalar.robot +37 -0
- data/vendor/robot/atest/testdata/variables/list_variable_items.robot +47 -0
- data/vendor/robot/atest/testdata/variables/non_dict.yaml +2 -0
- data/vendor/robot/atest/testdata/variables/non_string_variables.py +36 -0
- data/vendor/robot/atest/testdata/variables/non_string_variables.robot +27 -0
- data/vendor/robot/atest/testdata/variables/outputfile_variables/subdir/sub_level_tests.robot +4 -0
- data/vendor/robot/atest/testdata/variables/outputfile_variables/top_level_tests.robot +4 -0
- data/vendor/robot/atest/testdata/variables/recursive_definition.robot +37 -0
- data/vendor/robot/atest/testdata/variables/reserved_syntax.robot +9 -0
- data/vendor/robot/atest/testdata/variables/resource_for_variable_table_in_resource_file.robot +33 -0
- data/vendor/robot/atest/testdata/variables/resvarfiles/cli_vars.py +6 -0
- data/vendor/robot/atest/testdata/variables/resvarfiles/cli_vars_2.py +10 -0
- data/vendor/robot/atest/testdata/variables/resvarfiles/pythonpath_dir/pythonpath_varfile.py +3 -0
- data/vendor/robot/atest/testdata/variables/resvarfiles/resource.robot +31 -0
- data/vendor/robot/atest/testdata/variables/resvarfiles/resource_2.robot +6 -0
- data/vendor/robot/atest/testdata/variables/resvarfiles/resource_3.robot +13 -0
- data/vendor/robot/atest/testdata/variables/resvarfiles/variables.py +34 -0
- data/vendor/robot/atest/testdata/variables/resvarfiles/variables_2.py +2 -0
- data/vendor/robot/atest/testdata/variables/return_values.robot +347 -0
- data/vendor/robot/atest/testdata/variables/return_values_java.robot +66 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite1/subsuite1/testcase.robot +13 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite1/subsuite1/variable.py +1 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite1/testcase.robot +13 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite1/variable.py +2 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite2/testcase.robot +13 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite2/variable.py +1 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite3/subsuite1/testcase.robot +13 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite3/subsuite1/variable.py +1 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite3/subsuite2/testcase.robot +13 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite3/subsuite2/variable.py +1 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite3/testcase.robot +13 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/different_variable_files/suite3/variable.py +1 -0
- data/vendor/robot/atest/testdata/variables/same_variable_file_names/same_file.robot +22 -0
- data/vendor/robot/atest/testdata/variables/scalar_as_list.robot +41 -0
- data/vendor/robot/atest/testdata/variables/scalar_lists.py +17 -0
- data/vendor/robot/atest/testdata/variables/shared_scope.robot +23 -0
- data/vendor/robot/atest/testdata/variables/suite_source/__init__.robot +10 -0
- data/vendor/robot/atest/testdata/variables/suite_source/resource.robot +7 -0
- data/vendor/robot/atest/testdata/variables/suite_source/suite_source_in_file_suite.robot +25 -0
- data/vendor/robot/atest/testdata/variables/using_dict_variables.robot +149 -0
- data/vendor/robot/atest/testdata/variables/valid.yaml +16 -0
- data/vendor/robot/atest/testdata/variables/valid2.yaml +1 -0
- data/vendor/robot/atest/testdata/variables/variable_file_implemented_as_class.robot +41 -0
- data/vendor/robot/atest/testdata/variables/variable_priorities.robot +61 -0
- data/vendor/robot/atest/testdata/variables/variable_recommendation_vars.py +6 -0
- data/vendor/robot/atest/testdata/variables/variable_recommendations.robot +174 -0
- data/vendor/robot/atest/testdata/variables/variable_scopes.robot +73 -0
- data/vendor/robot/atest/testdata/variables/variable_table.robot +133 -0
- data/vendor/robot/atest/testdata/variables/variable_table_in_resource_file.robot +93 -0
- data/vendor/robot/atest/testdata/variables/variables_from_resource_files.robot +120 -0
- data/vendor/robot/atest/testdata/variables/variables_from_variable_files.robot +104 -0
- data/vendor/robot/atest/testdata/variables/variables_in_import_settings/common_resource.robot +3 -0
- data/vendor/robot/atest/testdata/variables/variables_in_import_settings/resource1.robot +4 -0
- data/vendor/robot/atest/testdata/variables/variables_in_import_settings/resource2.robot +4 -0
- data/vendor/robot/atest/testdata/variables/variables_in_import_settings/test_cases1.robot +9 -0
- data/vendor/robot/atest/testdata/variables/variables_in_import_settings/test_cases2.robot +9 -0
- data/vendor/robot/atest/testdata/variables/variables_in_import_settings/variables1.py +1 -0
- data/vendor/robot/atest/testdata/variables/variables_in_import_settings/variables2.py +1 -0
- data/vendor/robot/atest/testdata/variables/variables_inside_variables.robot +57 -0
- data/vendor/robot/atest/testdata/variables/yaml_variable_file.robot +42 -0
- data/vendor/robot/atest/testresources/compile_java.sh +9 -0
- data/vendor/robot/atest/testresources/listeners/JavaAttributeVerifyingListener$1.class +0 -0
- data/vendor/robot/atest/testresources/listeners/JavaAttributeVerifyingListener.class +0 -0
- data/vendor/robot/atest/testresources/listeners/JavaAttributeVerifyingListener.java +94 -0
- data/vendor/robot/atest/testresources/listeners/JavaListener.class +0 -0
- data/vendor/robot/atest/testresources/listeners/JavaListener.java +119 -0
- data/vendor/robot/atest/testresources/listeners/JavaListenerWithArgs.class +0 -0
- data/vendor/robot/atest/testresources/listeners/JavaListenerWithArgs.java +14 -0
- data/vendor/robot/atest/testresources/listeners/JavaSuiteAndTestCountListener$1.class +0 -0
- data/vendor/robot/atest/testresources/listeners/JavaSuiteAndTestCountListener.class +0 -0
- data/vendor/robot/atest/testresources/listeners/JavaSuiteAndTestCountListener.java +37 -0
- data/vendor/robot/atest/testresources/listeners/JavaTempDir.class +0 -0
- data/vendor/robot/atest/testresources/listeners/JavaTempDir.java +5 -0
- data/vendor/robot/atest/testresources/listeners/ListenAll.py +84 -0
- data/vendor/robot/atest/testresources/listeners/ListenImports.py +40 -0
- data/vendor/robot/atest/testresources/listeners/OldJavaListener.class +0 -0
- data/vendor/robot/atest/testresources/listeners/OldJavaListener.java +10 -0
- data/vendor/robot/atest/testresources/listeners/attributeverifyinglistener.py +108 -0
- data/vendor/robot/atest/testresources/listeners/listeners.py +139 -0
- data/vendor/robot/atest/testresources/listeners/module_listener.py +67 -0
- data/vendor/robot/atest/testresources/listeners/unsupported_listeners.py +19 -0
- data/vendor/robot/atest/testresources/res_and_var_files/cli.yaml +1 -0
- data/vendor/robot/atest/testresources/res_and_var_files/different_variables.py +3 -0
- data/vendor/robot/atest/testresources/res_and_var_files/pythonpath.yaml +1 -0
- data/vendor/robot/atest/testresources/res_and_var_files/resource_in_pythonpath.robot +8 -0
- data/vendor/robot/atest/testresources/res_and_var_files/resvar_subdir/resource_in_pythonpath_2.robot +8 -0
- data/vendor/robot/atest/testresources/res_and_var_files/resvar_subdir/variables_in_pythonpath_2.py +3 -0
- data/vendor/robot/atest/testresources/res_and_var_files/variables_in_pythonpath.py +1 -0
- data/vendor/robot/atest/testresources/testlibs/ArgDocDynamicJavaLibrary.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/ArgDocDynamicJavaLibrary.java +61 -0
- data/vendor/robot/atest/testresources/testlibs/ArgDocDynamicJavaLibraryWithKwargsSupport.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/ArgDocDynamicJavaLibraryWithKwargsSupport.java +26 -0
- data/vendor/robot/atest/testresources/testlibs/ArgTypeCoercion.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/ArgTypeCoercion.java +73 -0
- data/vendor/robot/atest/testresources/testlibs/ArgumentTypes.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/ArgumentTypes.java +202 -0
- data/vendor/robot/atest/testresources/testlibs/ArgumentsJava.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/ArgumentsJava.java +118 -0
- data/vendor/robot/atest/testresources/testlibs/ArgumentsPython.py +35 -0
- data/vendor/robot/atest/testresources/testlibs/BinaryDataLibrary.py +18 -0
- data/vendor/robot/atest/testresources/testlibs/DefaultArgs.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/DefaultArgs.java +19 -0
- data/vendor/robot/atest/testresources/testlibs/DynamicJavaLibraryWithLists.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/DynamicJavaLibraryWithLists.java +22 -0
- data/vendor/robot/atest/testresources/testlibs/DynamicLibraryWithKwargsAndOnlyOneRunKeyword.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/DynamicLibraryWithKwargsAndOnlyOneRunKeyword.java +26 -0
- data/vendor/robot/atest/testresources/testlibs/ExampleJavaLibrary$1.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/ExampleJavaLibrary$MyJavaException.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/ExampleJavaLibrary.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/ExampleJavaLibrary.java +164 -0
- data/vendor/robot/atest/testresources/testlibs/ExampleLibrary.py +180 -0
- data/vendor/robot/atest/testresources/testlibs/Exceptions.py +11 -0
- data/vendor/robot/atest/testresources/testlibs/ExtendPythonLib.py +12 -0
- data/vendor/robot/atest/testresources/testlibs/Extended.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/Extended.java +10 -0
- data/vendor/robot/atest/testresources/testlibs/FatalCatastrophyException.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/FatalCatastrophyException.java +3 -0
- data/vendor/robot/atest/testresources/testlibs/GetKeywordNamesLibrary.py +54 -0
- data/vendor/robot/atest/testresources/testlibs/InvalidAttributeArgDocDynamicJavaLibrary.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/InvalidAttributeArgDocDynamicJavaLibrary.java +15 -0
- data/vendor/robot/atest/testresources/testlibs/InvalidSignatureArgDocDynamicJavaLibrary.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/InvalidSignatureArgDocDynamicJavaLibrary.java +18 -0
- data/vendor/robot/atest/testresources/testlibs/JarLib.jar +0 -0
- data/vendor/robot/atest/testresources/testlibs/JavaExceptions.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/JavaExceptions.java +48 -0
- data/vendor/robot/atest/testresources/testlibs/JavaListenerLibrary.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/JavaListenerLibrary.java +58 -0
- data/vendor/robot/atest/testresources/testlibs/JavaMultipleListenerLibrary.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/JavaMultipleListenerLibrary.java +18 -0
- data/vendor/robot/atest/testresources/testlibs/JavaObject.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/JavaObject.java +36 -0
- data/vendor/robot/atest/testresources/testlibs/JavaVersionLibrary.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/JavaVersionLibrary.java +9 -0
- data/vendor/robot/atest/testresources/testlibs/ListArgumentsJava.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/ListArgumentsJava.java +24 -0
- data/vendor/robot/atest/testresources/testlibs/MandatoryArgs.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/MandatoryArgs.java +12 -0
- data/vendor/robot/atest/testresources/testlibs/MultipleArguments.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/MultipleArguments.java +17 -0
- data/vendor/robot/atest/testresources/testlibs/MultipleSignatures.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/MultipleSignatures.java +42 -0
- data/vendor/robot/atest/testresources/testlibs/NamespaceUsingLibrary.py +13 -0
- data/vendor/robot/atest/testresources/testlibs/NoHandlers.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/NoHandlers.java +9 -0
- data/vendor/robot/atest/testresources/testlibs/OverrideGetName.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/OverrideGetName.java +11 -0
- data/vendor/robot/atest/testresources/testlibs/ParameterLibrary.py +23 -0
- data/vendor/robot/atest/testresources/testlibs/PythonVarArgsConstructor.py +9 -0
- data/vendor/robot/atest/testresources/testlibs/ReturnTypes.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/ReturnTypes.java +64 -0
- data/vendor/robot/atest/testresources/testlibs/RunKeywordButNoGetKeywordNamesLibraryJava.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/RunKeywordButNoGetKeywordNamesLibraryJava.java +16 -0
- data/vendor/robot/atest/testresources/testlibs/RunKeywordLibrary.py +41 -0
- data/vendor/robot/atest/testresources/testlibs/RunKeywordLibraryJava.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/RunKeywordLibraryJava.java +44 -0
- data/vendor/robot/atest/testresources/testlibs/RunKeywordLibraryJavaWithKwargsSupport.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/RunKeywordLibraryJavaWithKwargsSupport.java +16 -0
- data/vendor/robot/atest/testresources/testlibs/SameNamesAsInBuiltIn.py +4 -0
- data/vendor/robot/atest/testresources/testlibs/UnicodeJavaLibrary.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/UnicodeJavaLibrary.java +44 -0
- data/vendor/robot/atest/testresources/testlibs/UnicodeLibrary.py +38 -0
- data/vendor/robot/atest/testresources/testlibs/archive_src/ZipLib.py +5 -0
- data/vendor/robot/atest/testresources/testlibs/archive_src/org/robotframework/JarLib.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/archive_src/org/robotframework/JarLib.java +8 -0
- data/vendor/robot/atest/testresources/testlibs/classes.py +186 -0
- data/vendor/robot/atest/testresources/testlibs/dynlibs.py +41 -0
- data/vendor/robot/atest/testresources/testlibs/extendingjava.py +37 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/BaseLib.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/BaseLib.java +26 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/Global.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/Global.java +7 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidEmpty.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidEmpty.java +5 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidMethod.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidMethod.java +9 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidNull.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidNull.java +7 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidPrivate.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidPrivate.java +7 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidProtected.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidProtected.java +7 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidValue.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/InvalidValue.java +7 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/Suite.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/Suite.java +7 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/Test.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javalibraryscope/Test.java +7 -0
- data/vendor/robot/atest/testresources/testlibs/javapkg/JavaPackageExample.class +0 -0
- data/vendor/robot/atest/testresources/testlibs/javapkg/JavaPackageExample.java +26 -0
- data/vendor/robot/atest/testresources/testlibs/libmodule.py +11 -0
- data/vendor/robot/atest/testresources/testlibs/libraryscope.py +51 -0
- data/vendor/robot/atest/testresources/testlibs/libswithargs.py +32 -0
- data/vendor/robot/atest/testresources/testlibs/module_library.py +54 -0
- data/vendor/robot/atest/testresources/testlibs/newstyleclasses.py +27 -0
- data/vendor/robot/atest/testresources/testlibs/newstyleclasses2.py +15 -0
- data/vendor/robot/atest/testresources/testlibs/newstyleclasses3.py +14 -0
- data/vendor/robot/atest/testresources/testlibs/objecttoreturn.py +14 -0
- data/vendor/robot/atest/testresources/testlibs/pythonmodule/__init__.py +8 -0
- data/vendor/robot/atest/testresources/testlibs/pythonmodule/library.py +5 -0
- data/vendor/robot/atest/testresources/testlibs/pythonmodule/submodule/__init__.py +1 -0
- data/vendor/robot/atest/testresources/testlibs/pythonmodule/submodule/sublib.py +9 -0
- data/vendor/robot/atest/testresources/testlibs/ziplib.zip +0 -0
- data/vendor/robot/pom.xml +34 -0
- data/vendor/robot/rundevel.py +58 -0
- data/vendor/robot/setup.py +100 -0
- data/vendor/robot/src/bin/ipybot +6 -0
- data/vendor/robot/src/bin/ipybot.bat +2 -0
- data/vendor/robot/src/bin/ipyrebot +6 -0
- data/vendor/robot/src/bin/ipyrebot.bat +2 -0
- data/vendor/robot/src/bin/jybot +6 -0
- data/vendor/robot/src/bin/jybot.bat +2 -0
- data/vendor/robot/src/bin/jyrebot +6 -0
- data/vendor/robot/src/bin/jyrebot.bat +2 -0
- data/vendor/robot/src/bin/pybot +6 -0
- data/vendor/robot/src/bin/pybot.bat +2 -0
- data/vendor/robot/src/bin/rebot +9 -0
- data/vendor/robot/src/bin/rebot.bat +2 -0
- data/vendor/robot/src/bin/robot +9 -0
- data/vendor/robot/src/bin/robot.bat +2 -0
- data/vendor/robot/src/java/org/robotframework/RobotFramework.java +64 -0
- data/vendor/robot/src/java/org/robotframework/RobotPythonRunner.java +27 -0
- data/vendor/robot/src/java/org/robotframework/RobotRunner.java +83 -0
- data/vendor/robot/src/robot/__init__.py +47 -0
- data/vendor/robot/src/robot/__main__.py +28 -0
- data/vendor/robot/src/robot/api/__init__.py +74 -0
- data/vendor/robot/src/robot/api/deco.py +54 -0
- data/vendor/robot/src/robot/api/logger.py +144 -0
- data/vendor/robot/src/robot/conf/__init__.py +27 -0
- data/vendor/robot/src/robot/conf/gatherfailed.py +76 -0
- data/vendor/robot/src/robot/conf/settings.py +588 -0
- data/vendor/robot/src/robot/errors.py +296 -0
- data/vendor/robot/src/robot/htmldata/__init__.py +27 -0
- data/vendor/robot/src/robot/htmldata/common/doc_formatting.css +49 -0
- data/vendor/robot/src/robot/htmldata/common/js_disabled.css +21 -0
- data/vendor/robot/src/robot/htmldata/common/storage.js +24 -0
- data/vendor/robot/src/robot/htmldata/htmlfilewriter.py +115 -0
- data/vendor/robot/src/robot/htmldata/jartemplate.py +46 -0
- data/vendor/robot/src/robot/htmldata/jsonwriter.py +146 -0
- data/vendor/robot/src/robot/htmldata/lib/jquery.highlight.min.js +11 -0
- data/vendor/robot/src/robot/htmldata/lib/jquery.min.js +2 -0
- data/vendor/robot/src/robot/htmldata/lib/jquery.tablesorter.min.js +5 -0
- data/vendor/robot/src/robot/htmldata/lib/jquery.tmpl.min.js +10 -0
- data/vendor/robot/src/robot/htmldata/lib/jsxcompressor.min.js +19 -0
- data/vendor/robot/src/robot/htmldata/lib/versions.txt +29 -0
- data/vendor/robot/src/robot/htmldata/libdoc/libdoc.css +148 -0
- data/vendor/robot/src/robot/htmldata/libdoc/libdoc.html +379 -0
- data/vendor/robot/src/robot/htmldata/libdoc/print.css +11 -0
- data/vendor/robot/src/robot/htmldata/libdoc/pygments.css +69 -0
- data/vendor/robot/src/robot/htmldata/normaltemplate.py +29 -0
- data/vendor/robot/src/robot/htmldata/rebot/common.css +222 -0
- data/vendor/robot/src/robot/htmldata/rebot/fileloading.js +44 -0
- data/vendor/robot/src/robot/htmldata/rebot/log.css +183 -0
- data/vendor/robot/src/robot/htmldata/rebot/log.html +389 -0
- data/vendor/robot/src/robot/htmldata/rebot/log.js +213 -0
- data/vendor/robot/src/robot/htmldata/rebot/model.js +309 -0
- data/vendor/robot/src/robot/htmldata/rebot/print.css +38 -0
- data/vendor/robot/src/robot/htmldata/rebot/report.css +189 -0
- data/vendor/robot/src/robot/htmldata/rebot/report.html +841 -0
- data/vendor/robot/src/robot/htmldata/rebot/testdata.js +297 -0
- data/vendor/robot/src/robot/htmldata/rebot/util.js +224 -0
- data/vendor/robot/src/robot/htmldata/rebot/view.js +182 -0
- data/vendor/robot/src/robot/htmldata/template.py +19 -0
- data/vendor/robot/src/robot/htmldata/testdata/create_jsdata.py +64 -0
- data/vendor/robot/src/robot/htmldata/testdata/create_libdoc_data.py +22 -0
- data/vendor/robot/src/robot/htmldata/testdata/create_testdoc_data.py +25 -0
- data/vendor/robot/src/robot/htmldata/testdata/data.js +10 -0
- data/vendor/robot/src/robot/htmldata/testdata/dir.suite/__init__.txt +38 -0
- data/vendor/robot/src/robot/htmldata/testdata/dir.suite/test.suite.1.txt +22 -0
- data/vendor/robot/src/robot/htmldata/testdata/dir.suite/test.suite.2.txt +22 -0
- data/vendor/robot/src/robot/htmldata/testdata/dir.suite/tests.txt +119 -0
- data/vendor/robot/src/robot/htmldata/testdata/libdoc.js +1 -0
- data/vendor/robot/src/robot/htmldata/testdata/libdoc.txt +165 -0
- data/vendor/robot/src/robot/htmldata/testdata/testdoc.js +1 -0
- data/vendor/robot/src/robot/htmldata/testdoc/testdoc.css +9 -0
- data/vendor/robot/src/robot/htmldata/testdoc/testdoc.html +259 -0
- data/vendor/robot/src/robot/jarrunner.py +69 -0
- data/vendor/robot/src/robot/libdoc.py +228 -0
- data/vendor/robot/src/robot/libdocpkg/__init__.py +47 -0
- data/vendor/robot/src/robot/libdocpkg/builder.py +39 -0
- data/vendor/robot/src/robot/libdocpkg/consoleviewer.py +109 -0
- data/vendor/robot/src/robot/libdocpkg/htmlwriter.py +167 -0
- data/vendor/robot/src/robot/libdocpkg/javabuilder.py +129 -0
- data/vendor/robot/src/robot/libdocpkg/model.py +70 -0
- data/vendor/robot/src/robot/libdocpkg/output.py +38 -0
- data/vendor/robot/src/robot/libdocpkg/robotbuilder.py +121 -0
- data/vendor/robot/src/robot/libdocpkg/specbuilder.py +61 -0
- data/vendor/robot/src/robot/libdocpkg/writer.py +28 -0
- data/vendor/robot/src/robot/libdocpkg/xmlwriter.py +47 -0
- data/vendor/robot/src/robot/libraries/BuiltIn.py +3469 -0
- data/vendor/robot/src/robot/libraries/Collections.py +940 -0
- data/vendor/robot/src/robot/libraries/DateTime.py +678 -0
- data/vendor/robot/src/robot/libraries/Dialogs.py +115 -0
- data/vendor/robot/src/robot/libraries/Easter.py +27 -0
- data/vendor/robot/src/robot/libraries/OperatingSystem.py +1468 -0
- data/vendor/robot/src/robot/libraries/Process.py +952 -0
- data/vendor/robot/src/robot/libraries/Remote.py +286 -0
- data/vendor/robot/src/robot/libraries/Reserved.py +31 -0
- data/vendor/robot/src/robot/libraries/Screenshot.py +382 -0
- data/vendor/robot/src/robot/libraries/String.py +684 -0
- data/vendor/robot/src/robot/libraries/Telnet.py +1273 -0
- data/vendor/robot/src/robot/libraries/XML.py +1514 -0
- data/vendor/robot/src/robot/libraries/__init__.py +31 -0
- data/vendor/robot/src/robot/libraries/dialogs_ipy.py +201 -0
- data/vendor/robot/src/robot/libraries/dialogs_jy.py +113 -0
- data/vendor/robot/src/robot/libraries/dialogs_py.py +179 -0
- data/vendor/robot/src/robot/model/__init__.py +41 -0
- data/vendor/robot/src/robot/model/configurer.py +88 -0
- data/vendor/robot/src/robot/model/criticality.py +43 -0
- data/vendor/robot/src/robot/model/filter.py +102 -0
- data/vendor/robot/src/robot/model/imports.py +62 -0
- data/vendor/robot/src/robot/model/itemlist.py +102 -0
- data/vendor/robot/src/robot/model/keyword.py +182 -0
- data/vendor/robot/src/robot/model/message.py +75 -0
- data/vendor/robot/src/robot/model/metadata.py +33 -0
- data/vendor/robot/src/robot/model/modelobject.py +85 -0
- data/vendor/robot/src/robot/model/modifier.py +52 -0
- data/vendor/robot/src/robot/model/namepatterns.py +54 -0
- data/vendor/robot/src/robot/model/statistics.py +67 -0
- data/vendor/robot/src/robot/model/stats.py +196 -0
- data/vendor/robot/src/robot/model/suitestatistics.py +71 -0
- data/vendor/robot/src/robot/model/tags.py +180 -0
- data/vendor/robot/src/robot/model/tagsetter.py +39 -0
- data/vendor/robot/src/robot/model/tagstatistics.py +178 -0
- data/vendor/robot/src/robot/model/testcase.py +88 -0
- data/vendor/robot/src/robot/model/testsuite.py +168 -0
- data/vendor/robot/src/robot/model/totalstatistics.py +71 -0
- data/vendor/robot/src/robot/model/visitor.py +163 -0
- data/vendor/robot/src/robot/output/__init__.py +25 -0
- data/vendor/robot/src/robot/output/console/__init__.py +35 -0
- data/vendor/robot/src/robot/output/console/dotted.py +87 -0
- data/vendor/robot/src/robot/output/console/highlighting.py +190 -0
- data/vendor/robot/src/robot/output/console/quiet.py +32 -0
- data/vendor/robot/src/robot/output/console/verbose.py +175 -0
- data/vendor/robot/src/robot/output/debugfile.py +112 -0
- data/vendor/robot/src/robot/output/filelogger.py +62 -0
- data/vendor/robot/src/robot/output/librarylogger.py +75 -0
- data/vendor/robot/src/robot/output/listenerarguments.py +141 -0
- data/vendor/robot/src/robot/output/listenermethods.py +109 -0
- data/vendor/robot/src/robot/output/listeners.py +168 -0
- data/vendor/robot/src/robot/output/logger.py +220 -0
- data/vendor/robot/src/robot/output/loggerhelper.py +150 -0
- data/vendor/robot/src/robot/output/output.py +74 -0
- data/vendor/robot/src/robot/output/pyloggingconf.py +84 -0
- data/vendor/robot/src/robot/output/stdoutlogsplitter.py +58 -0
- data/vendor/robot/src/robot/output/xmllogger.py +161 -0
- data/vendor/robot/src/robot/parsing/__init__.py +66 -0
- data/vendor/robot/src/robot/parsing/comments.py +63 -0
- data/vendor/robot/src/robot/parsing/datarow.py +97 -0
- data/vendor/robot/src/robot/parsing/htmlreader.py +205 -0
- data/vendor/robot/src/robot/parsing/model.py +717 -0
- data/vendor/robot/src/robot/parsing/populators.py +215 -0
- data/vendor/robot/src/robot/parsing/restreader.py +52 -0
- data/vendor/robot/src/robot/parsing/restsupport.py +55 -0
- data/vendor/robot/src/robot/parsing/settings.py +393 -0
- data/vendor/robot/src/robot/parsing/tablepopulators.py +335 -0
- data/vendor/robot/src/robot/parsing/tsvreader.py +48 -0
- data/vendor/robot/src/robot/parsing/txtreader.py +36 -0
- data/vendor/robot/src/robot/pythonpathsetter.py +41 -0
- data/vendor/robot/src/robot/rebot.py +412 -0
- data/vendor/robot/src/robot/reporting/__init__.py +29 -0
- data/vendor/robot/src/robot/reporting/jsbuildingcontext.py +97 -0
- data/vendor/robot/src/robot/reporting/jsexecutionresult.py +105 -0
- data/vendor/robot/src/robot/reporting/jsmodelbuilders.py +189 -0
- data/vendor/robot/src/robot/reporting/jswriter.py +108 -0
- data/vendor/robot/src/robot/reporting/logreportwriters.py +70 -0
- data/vendor/robot/src/robot/reporting/outputwriter.py +38 -0
- data/vendor/robot/src/robot/reporting/resultwriter.py +142 -0
- data/vendor/robot/src/robot/reporting/stringcache.py +52 -0
- data/vendor/robot/src/robot/reporting/xunitwriter.py +100 -0
- data/vendor/robot/src/robot/result/__init__.py +47 -0
- data/vendor/robot/src/robot/result/configurer.py +76 -0
- data/vendor/robot/src/robot/result/executionerrors.py +51 -0
- data/vendor/robot/src/robot/result/executionresult.py +136 -0
- data/vendor/robot/src/robot/result/flattenkeywordmatcher.py +77 -0
- data/vendor/robot/src/robot/result/keywordremover.py +164 -0
- data/vendor/robot/src/robot/result/merger.py +87 -0
- data/vendor/robot/src/robot/result/messagefilter.py +28 -0
- data/vendor/robot/src/robot/result/model.py +295 -0
- data/vendor/robot/src/robot/result/resultbuilder.py +195 -0
- data/vendor/robot/src/robot/result/suiteteardownfailed.py +47 -0
- data/vendor/robot/src/robot/result/visitor.py +124 -0
- data/vendor/robot/src/robot/result/xmlelementhandlers.py +258 -0
- data/vendor/robot/src/robot/run.py +550 -0
- data/vendor/robot/src/robot/running/__init__.py +109 -0
- data/vendor/robot/src/robot/running/arguments/__init__.py +26 -0
- data/vendor/robot/src/robot/running/arguments/argumentmapper.py +73 -0
- data/vendor/robot/src/robot/running/arguments/argumentparser.py +192 -0
- data/vendor/robot/src/robot/running/arguments/argumentresolver.py +134 -0
- data/vendor/robot/src/robot/running/arguments/argumentspec.py +50 -0
- data/vendor/robot/src/robot/running/arguments/argumentvalidator.py +68 -0
- data/vendor/robot/src/robot/running/arguments/embedded.py +88 -0
- data/vendor/robot/src/robot/running/arguments/javaargumentcoercer.py +146 -0
- data/vendor/robot/src/robot/running/builder.py +231 -0
- data/vendor/robot/src/robot/running/context.py +198 -0
- data/vendor/robot/src/robot/running/defaults.py +43 -0
- data/vendor/robot/src/robot/running/dynamicmethods.py +145 -0
- data/vendor/robot/src/robot/running/handlers.py +269 -0
- data/vendor/robot/src/robot/running/handlerstore.py +85 -0
- data/vendor/robot/src/robot/running/importer.py +149 -0
- data/vendor/robot/src/robot/running/librarykeywordrunner.py +224 -0
- data/vendor/robot/src/robot/running/libraryscopes.py +101 -0
- data/vendor/robot/src/robot/running/model.py +319 -0
- data/vendor/robot/src/robot/running/namespace.py +440 -0
- data/vendor/robot/src/robot/running/outputcapture.py +137 -0
- data/vendor/robot/src/robot/running/randomizer.py +53 -0
- data/vendor/robot/src/robot/running/runkwregister.py +65 -0
- data/vendor/robot/src/robot/running/runner.py +220 -0
- data/vendor/robot/src/robot/running/signalhandler.py +89 -0
- data/vendor/robot/src/robot/running/status.py +234 -0
- data/vendor/robot/src/robot/running/statusreporter.py +74 -0
- data/vendor/robot/src/robot/running/steprunner.py +272 -0
- data/vendor/robot/src/robot/running/testlibraries.py +411 -0
- data/vendor/robot/src/robot/running/timeouts/__init__.py +133 -0
- data/vendor/robot/src/robot/running/timeouts/ironpython.py +56 -0
- data/vendor/robot/src/robot/running/timeouts/jython.py +55 -0
- data/vendor/robot/src/robot/running/timeouts/posix.py +40 -0
- data/vendor/robot/src/robot/running/timeouts/windows.py +71 -0
- data/vendor/robot/src/robot/running/usererrorhandler.py +66 -0
- data/vendor/robot/src/robot/running/userkeyword.py +114 -0
- data/vendor/robot/src/robot/running/userkeywordrunner.py +236 -0
- data/vendor/robot/src/robot/testdoc.py +303 -0
- data/vendor/robot/src/robot/tidy.py +330 -0
- data/vendor/robot/src/robot/utils/__init__.py +76 -0
- data/vendor/robot/src/robot/utils/application.py +130 -0
- data/vendor/robot/src/robot/utils/argumentparser.py +476 -0
- data/vendor/robot/src/robot/utils/asserts.py +239 -0
- data/vendor/robot/src/robot/utils/charwidth.py +139 -0
- data/vendor/robot/src/robot/utils/compat.py +76 -0
- data/vendor/robot/src/robot/utils/compress.py +54 -0
- data/vendor/robot/src/robot/utils/connectioncache.py +178 -0
- data/vendor/robot/src/robot/utils/dotdict.py +65 -0
- data/vendor/robot/src/robot/utils/encoding.py +104 -0
- data/vendor/robot/src/robot/utils/encodingsniffer.py +109 -0
- data/vendor/robot/src/robot/utils/error.py +206 -0
- data/vendor/robot/src/robot/utils/escaping.py +145 -0
- data/vendor/robot/src/robot/utils/etreewrapper.py +88 -0
- data/vendor/robot/src/robot/utils/frange.py +63 -0
- data/vendor/robot/src/robot/utils/htmlformatters.py +303 -0
- data/vendor/robot/src/robot/utils/importer.py +274 -0
- data/vendor/robot/src/robot/utils/markuputils.py +49 -0
- data/vendor/robot/src/robot/utils/markupwriters.py +108 -0
- data/vendor/robot/src/robot/utils/match.py +103 -0
- data/vendor/robot/src/robot/utils/misc.py +128 -0
- data/vendor/robot/src/robot/utils/normalizing.py +124 -0
- data/vendor/robot/src/robot/utils/ordereddict.py +127 -0
- data/vendor/robot/src/robot/utils/platform.py +32 -0
- data/vendor/robot/src/robot/utils/recommendations.py +75 -0
- data/vendor/robot/src/robot/utils/robotenv.py +44 -0
- data/vendor/robot/src/robot/utils/robotinspect.py +36 -0
- data/vendor/robot/src/robot/utils/robotio.py +43 -0
- data/vendor/robot/src/robot/utils/robotpath.py +174 -0
- data/vendor/robot/src/robot/utils/robottime.py +431 -0
- data/vendor/robot/src/robot/utils/robottypes.py +35 -0
- data/vendor/robot/src/robot/utils/robottypes2.py +74 -0
- data/vendor/robot/src/robot/utils/robottypes3.py +65 -0
- data/vendor/robot/src/robot/utils/setter.py +46 -0
- data/vendor/robot/src/robot/utils/sortable.py +53 -0
- data/vendor/robot/src/robot/utils/text.py +151 -0
- data/vendor/robot/src/robot/utils/unic.py +89 -0
- data/vendor/robot/src/robot/utils/utf8reader.py +52 -0
- data/vendor/robot/src/robot/variables/__init__.py +27 -0
- data/vendor/robot/src/robot/variables/assigner.py +252 -0
- data/vendor/robot/src/robot/variables/filesetter.py +144 -0
- data/vendor/robot/src/robot/variables/finders.py +150 -0
- data/vendor/robot/src/robot/variables/isvar.py +52 -0
- data/vendor/robot/src/robot/variables/notfound.py +46 -0
- data/vendor/robot/src/robot/variables/replacer.py +177 -0
- data/vendor/robot/src/robot/variables/scopes.py +256 -0
- data/vendor/robot/src/robot/variables/splitter.py +187 -0
- data/vendor/robot/src/robot/variables/store.py +116 -0
- data/vendor/robot/src/robot/variables/tablesetter.py +150 -0
- data/vendor/robot/src/robot/variables/variables.py +81 -0
- data/vendor/robot/src/robot/version.py +46 -0
- data/vendor/robot/src/robot/writer/__init__.py +26 -0
- data/vendor/robot/src/robot/writer/aligners.py +64 -0
- data/vendor/robot/src/robot/writer/dataextractor.py +57 -0
- data/vendor/robot/src/robot/writer/datafilewriter.py +126 -0
- data/vendor/robot/src/robot/writer/filewriters.py +149 -0
- data/vendor/robot/src/robot/writer/formatters.py +150 -0
- data/vendor/robot/src/robot/writer/htmlformatter.py +131 -0
- data/vendor/robot/src/robot/writer/htmltemplate.py +71 -0
- data/vendor/robot/src/robot/writer/rowsplitter.py +108 -0
- data/vendor/robot/tasks.py +265 -0
- data/vendor/robot/templates/README.rst +24 -0
- data/vendor/robot/templates/atdd_template.html +130 -0
- data/vendor/robot/templates/resource_template.html +154 -0
- data/vendor/robot/templates/resource_template.tsv +9 -0
- data/vendor/robot/templates/testcase_template.html +173 -0
- data/vendor/robot/templates/testcase_template.tsv +13 -0
- data/vendor/robot/utest/README.rst +55 -0
- data/vendor/robot/utest/__init__.py +0 -0
- data/vendor/robot/utest/api/import_test.robot +7 -0
- data/vendor/robot/utest/api/test_deco.py +32 -0
- data/vendor/robot/utest/api/test_exposed_api.py +71 -0
- data/vendor/robot/utest/api/test_logging_api.py +90 -0
- data/vendor/robot/utest/api/test_run_and_rebot.py +352 -0
- data/vendor/robot/utest/api/test_using_libraries.py +37 -0
- data/vendor/robot/utest/conf/test_settings.py +102 -0
- data/vendor/robot/utest/envjs.bootstrap.js +6 -0
- data/vendor/robot/utest/htmldata/test_htmltemplate.py +24 -0
- data/vendor/robot/utest/htmldata/test_jsonwriter.py +99 -0
- data/vendor/robot/utest/model/test_filter.py +168 -0
- data/vendor/robot/utest/model/test_itemlist.py +195 -0
- data/vendor/robot/utest/model/test_keyword.py +209 -0
- data/vendor/robot/utest/model/test_message.py +51 -0
- data/vendor/robot/utest/model/test_metadata.py +51 -0
- data/vendor/robot/utest/model/test_statistics.py +231 -0
- data/vendor/robot/utest/model/test_tags.py +364 -0
- data/vendor/robot/utest/model/test_tagstatistics.py +371 -0
- data/vendor/robot/utest/model/test_testcase.py +124 -0
- data/vendor/robot/utest/model/test_testsuite.py +127 -0
- data/vendor/robot/utest/output/NewStyleJavaListener.class +0 -0
- data/vendor/robot/utest/output/NewStyleJavaListener.java +79 -0
- data/vendor/robot/utest/output/test_console.py +123 -0
- data/vendor/robot/utest/output/test_filelogger.py +58 -0
- data/vendor/robot/utest/output/test_listeners.py +202 -0
- data/vendor/robot/utest/output/test_logger.py +202 -0
- data/vendor/robot/utest/output/test_loggerhelper.py +25 -0
- data/vendor/robot/utest/output/test_stdout_splitter.py +86 -0
- data/vendor/robot/utest/parsing/test_htmlreader.py +188 -0
- data/vendor/robot/utest/parsing/test_model.py +449 -0
- data/vendor/robot/utest/parsing/test_populator.py +609 -0
- data/vendor/robot/utest/parsing/test_tsvreader.py +81 -0
- data/vendor/robot/utest/parsing/test_txtreader.py +23 -0
- data/vendor/robot/utest/reporting/test_jsbuildingcontext.py +82 -0
- data/vendor/robot/utest/reporting/test_jsexecutionresult.py +94 -0
- data/vendor/robot/utest/reporting/test_jsmodelbuilders.py +430 -0
- data/vendor/robot/utest/reporting/test_jswriter.py +104 -0
- data/vendor/robot/utest/reporting/test_logreportwriters.py +39 -0
- data/vendor/robot/utest/reporting/test_reporting.py +175 -0
- data/vendor/robot/utest/reporting/test_stringcache.py +76 -0
- data/vendor/robot/utest/resources/Listener.py +26 -0
- data/vendor/robot/utest/resources/__init__.py +7 -0
- data/vendor/robot/utest/resources/golden_suite/__init__.txt +5 -0
- data/vendor/robot/utest/resources/golden_suite/all_settings.txt +27 -0
- data/vendor/robot/utest/resources/golden_suite/expected.js +3 -0
- data/vendor/robot/utest/resources/golden_suite/failing_suite.txt +15 -0
- data/vendor/robot/utest/resources/golden_suite/output.xml +206 -0
- data/vendor/robot/utest/resources/golden_suite/output2.xml +206 -0
- data/vendor/robot/utest/resources/runningtestcase.py +71 -0
- data/vendor/robot/utest/resources/test_resource.txt +4 -0
- data/vendor/robot/utest/resources/variables_file.py +1 -0
- data/vendor/robot/utest/result/golden.xml +61 -0
- data/vendor/robot/utest/result/goldenTwice.xml +110 -0
- data/vendor/robot/utest/result/suite_teardown_failed.xml +81 -0
- data/vendor/robot/utest/result/test_configurer.py +263 -0
- data/vendor/robot/utest/result/test_resultbuilder.py +248 -0
- data/vendor/robot/utest/result/test_resultmodel.py +209 -0
- data/vendor/robot/utest/result/test_resultserializer.py +63 -0
- data/vendor/robot/utest/result/test_visitor.py +72 -0
- data/vendor/robot/utest/run.py +100 -0
- data/vendor/robot/utest/run_jasmine.py +53 -0
- data/vendor/robot/utest/running/test_builder.py +132 -0
- data/vendor/robot/utest/running/test_handlers.py +309 -0
- data/vendor/robot/utest/running/test_importer.py +73 -0
- data/vendor/robot/utest/running/test_imports.py +75 -0
- data/vendor/robot/utest/running/test_namespace.py +16 -0
- data/vendor/robot/utest/running/test_randomizer.py +87 -0
- data/vendor/robot/utest/running/test_run_model.py +94 -0
- data/vendor/robot/utest/running/test_runkwregister.py +114 -0
- data/vendor/robot/utest/running/test_running.py +284 -0
- data/vendor/robot/utest/running/test_signalhandler.py +115 -0
- data/vendor/robot/utest/running/test_testlibrary.py +638 -0
- data/vendor/robot/utest/running/test_timeouts.py +193 -0
- data/vendor/robot/utest/running/test_userhandlers.py +165 -0
- data/vendor/robot/utest/running/test_userlibrary.py +128 -0
- data/vendor/robot/utest/running/thread_resources.py +27 -0
- data/vendor/robot/utest/testdoc/test_jsonconverter.py +225 -0
- data/vendor/robot/utest/tidy/test_argument_validation.py +106 -0
- data/vendor/robot/utest/utils/ImportByPath.class +0 -0
- data/vendor/robot/utest/utils/ImportByPath.java +6 -0
- data/vendor/robot/utest/utils/test_argumentparser.py +438 -0
- data/vendor/robot/utest/utils/test_asserts.py +148 -0
- data/vendor/robot/utest/utils/test_compat.py +36 -0
- data/vendor/robot/utest/utils/test_compress.py +28 -0
- data/vendor/robot/utest/utils/test_connectioncache.py +239 -0
- data/vendor/robot/utest/utils/test_dotdict.py +101 -0
- data/vendor/robot/utest/utils/test_encoding.py +34 -0
- data/vendor/robot/utest/utils/test_encodingsniffer.py +49 -0
- data/vendor/robot/utest/utils/test_error.py +123 -0
- data/vendor/robot/utest/utils/test_escaping.py +188 -0
- data/vendor/robot/utest/utils/test_etreesource.py +58 -0
- data/vendor/robot/utest/utils/test_frange.py +66 -0
- data/vendor/robot/utest/utils/test_htmlwriter.py +119 -0
- data/vendor/robot/utest/utils/test_importer_util.py +493 -0
- data/vendor/robot/utest/utils/test_markuputils.py +803 -0
- data/vendor/robot/utest/utils/test_match.py +170 -0
- data/vendor/robot/utest/utils/test_misc.py +183 -0
- data/vendor/robot/utest/utils/test_normalizing.py +318 -0
- data/vendor/robot/utest/utils/test_robotenv.py +61 -0
- data/vendor/robot/utest/utils/test_robotpath.py +215 -0
- data/vendor/robot/utest/utils/test_robottime.py +355 -0
- data/vendor/robot/utest/utils/test_robottypes.py +160 -0
- data/vendor/robot/utest/utils/test_setter.py +66 -0
- data/vendor/robot/utest/utils/test_sortable.py +54 -0
- data/vendor/robot/utest/utils/test_text.py +279 -0
- data/vendor/robot/utest/utils/test_timestampcache.py +56 -0
- data/vendor/robot/utest/utils/test_unic.py +224 -0
- data/vendor/robot/utest/utils/test_utf8reader.py +66 -0
- data/vendor/robot/utest/utils/test_xmlwriter.py +143 -0
- data/vendor/robot/utest/variables/test_isvar.py +36 -0
- data/vendor/robot/utest/variables/test_variableassigner.py +54 -0
- data/vendor/robot/utest/variables/test_variables.py +261 -0
- data/vendor/robot/utest/variables/test_variablesplitter.py +235 -0
- data/vendor/robot/utest/webcontent/SpecRunner.html +52 -0
- data/vendor/robot/utest/webcontent/jasmine-1.0.2/MIT.LICENSE +20 -0
- data/vendor/robot/utest/webcontent/jasmine-1.0.2/jasmine-html.js +188 -0
- data/vendor/robot/utest/webcontent/jasmine-1.0.2/jasmine.css +166 -0
- data/vendor/robot/utest/webcontent/jasmine-1.0.2/jasmine.js +2421 -0
- data/vendor/robot/utest/webcontent/spec/ContainsTag.js +106 -0
- data/vendor/robot/utest/webcontent/spec/LogLevelSpec.js +19 -0
- data/vendor/robot/utest/webcontent/spec/ParsingSpec.js +579 -0
- data/vendor/robot/utest/webcontent/spec/StatisticsSpec.js +172 -0
- data/vendor/robot/utest/webcontent/spec/UtilSpec.js +86 -0
- data/vendor/robot/utest/webcontent/spec/data/Messages.js +20 -0
- data/vendor/robot/utest/webcontent/spec/data/Messages.txt +10 -0
- data/vendor/robot/utest/webcontent/spec/data/PassingFailing.js +20 -0
- data/vendor/robot/utest/webcontent/spec/data/SetupsAndTeardowns.js +20 -0
- data/vendor/robot/utest/webcontent/spec/data/SetupsAndTeardowns.txt +15 -0
- data/vendor/robot/utest/webcontent/spec/data/Suite.js +20 -0
- data/vendor/robot/utest/webcontent/spec/data/Suite.txt +18 -0
- data/vendor/robot/utest/webcontent/spec/data/TeardownFailure.js +20 -0
- data/vendor/robot/utest/webcontent/spec/data/TestsAndKeywords.js +20 -0
- data/vendor/robot/utest/webcontent/spec/data/TestsAndKeywords.txt +22 -0
- data/vendor/robot/utest/webcontent/spec/data/allData.js +20 -0
- data/vendor/robot/utest/webcontent/spec/data/create_jsdata_for_specs.py +57 -0
- data/vendor/robot/utest/webcontent/spec/data/splitting.js +44 -0
- data/vendor/robot/utest/webcontent/spec/data/teardownFailure/PassingFailing.txt +5 -0
- data/vendor/robot/utest/webcontent/spec/data/teardownFailure/__init__.txt +2 -0
- data/vendor/robot/utest/writer/test_aligners.py +16 -0
- data/vendor/robot/utest/writer/test_extractor.py +55 -0
- data/vendor/robot/utest/writer/test_filewriters.py +82 -0
- data/vendor/robot/utest/writer/test_formatters.py +188 -0
- data/vendor/robot/utest/writer/test_rowsplitter.py +130 -0
- data/vendor/robot/utest/writer/test_write_configuration.py +40 -0
- metadata +2112 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Copyright 2008-2015 Nokia Networks
|
|
2
|
+
Copyright 2016- Robot Framework Foundation
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
@@ -0,0 +1,726 @@
|
|
|
1
|
+
Installation instructions
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
These instructions cover installing and uninstalling Robot Framework and its
|
|
5
|
+
preconditions on different operating systems. If you already have `pip
|
|
6
|
+
<http://pip-installer.org>`_ installed, it is enough to run::
|
|
7
|
+
|
|
8
|
+
pip install robotframework
|
|
9
|
+
|
|
10
|
+
.. contents::
|
|
11
|
+
:depth: 2
|
|
12
|
+
:local:
|
|
13
|
+
|
|
14
|
+
.. START USER GUIDE IGNORE
|
|
15
|
+
.. These instructions are included also in the User Guide. Following role
|
|
16
|
+
.. and link definitions are excluded when UG is built.
|
|
17
|
+
.. default-role:: code
|
|
18
|
+
.. role:: file(emphasis)
|
|
19
|
+
.. role:: option(code)
|
|
20
|
+
.. _supporting tools: http://robotframework.org/robotframework/#built-in-tools
|
|
21
|
+
.. _post-process outputs: `supporting tools`_
|
|
22
|
+
.. END USER GUIDE IGNORE
|
|
23
|
+
|
|
24
|
+
Introduction
|
|
25
|
+
------------
|
|
26
|
+
|
|
27
|
+
`Robot Framework <http://robotframework.org>`_ is implemented with `Python
|
|
28
|
+
<http://python.org>`_ and supports also `Jython <http://jython.org>`_ (JVM),
|
|
29
|
+
`IronPython <http://ironpython.net>`_ (.NET) and `PyPy <http://pypy.org>`_.
|
|
30
|
+
Before installing the framework, an obvious precondition_ is installing at
|
|
31
|
+
least one of these interpreters.
|
|
32
|
+
|
|
33
|
+
Different ways to install Robot Framework itself are listed below and explained
|
|
34
|
+
more thoroughly in the subsequent sections.
|
|
35
|
+
|
|
36
|
+
`Installing with pip`_
|
|
37
|
+
Using pip_ is the recommended way to install Robot Framework. As the
|
|
38
|
+
standard Python package manager it is included in the latest Python,
|
|
39
|
+
Jython and IronPython versions. If you already have pip available, you
|
|
40
|
+
can simply execute::
|
|
41
|
+
|
|
42
|
+
pip install robotframework
|
|
43
|
+
|
|
44
|
+
`Installing from source`_
|
|
45
|
+
This approach works regardless the operating system and the Python
|
|
46
|
+
interpreter used. You can get the source code either by downloading a
|
|
47
|
+
source distribution from `PyPI <https://pypi.python.org/pypi/robotframework>`_
|
|
48
|
+
and extracting it, or by cloning the
|
|
49
|
+
`GitHub repository <https://github.com/robotframework/robotframework>`_ .
|
|
50
|
+
|
|
51
|
+
`Standalone JAR distribution`_
|
|
52
|
+
If running tests with Jython is enough, the easiest approach is downloading
|
|
53
|
+
the standalone ``robotframework-<version>.jar`` from `Maven central
|
|
54
|
+
<http://search.maven.org/#search%7Cga%7C1%7Ca%3Arobotframework>`_.
|
|
55
|
+
The JAR distribution contains both Jython and Robot Framework and thus
|
|
56
|
+
only requires having `Java <http://java.com>`_ installed.
|
|
57
|
+
|
|
58
|
+
`Manual installation`_
|
|
59
|
+
If you have special needs and nothing else works, you can always do
|
|
60
|
+
a custom manual installation.
|
|
61
|
+
|
|
62
|
+
.. note:: Prior to Robot Framework 3.0, there were also separate Windows
|
|
63
|
+
installers for 32bit and 64bit Python versions. Because Python 2.7.9 and
|
|
64
|
+
newer contain pip_ on Windows and Python 3 would have needed two
|
|
65
|
+
more installers, it was decided that `Windows installers are not
|
|
66
|
+
created anymore`__. The recommend installation approach also on
|
|
67
|
+
Windows is `using pip`_.
|
|
68
|
+
|
|
69
|
+
__ https://github.com/robotframework/robotframework/issues/2218
|
|
70
|
+
|
|
71
|
+
Preconditions
|
|
72
|
+
-------------
|
|
73
|
+
|
|
74
|
+
Robot Framework is supported on Python_ (both Python 2 and Python 3), Jython_
|
|
75
|
+
(JVM) and IronPython_ (.NET) and PyPy_. The interpreter you want to use should
|
|
76
|
+
be installed before installing the framework itself.
|
|
77
|
+
|
|
78
|
+
Which interpreter to use depends on the needed test libraries and test
|
|
79
|
+
environment in general. Some libraries use tools or modules that only work
|
|
80
|
+
with Python, while others may use Java tools that require Jython or need
|
|
81
|
+
.NET and thus IronPython. There are also many tools and libraries that run
|
|
82
|
+
fine with all interpreters.
|
|
83
|
+
|
|
84
|
+
If you do not have special needs or just want to try out the framework,
|
|
85
|
+
it is recommended to use Python. It is the most mature implementation,
|
|
86
|
+
considerably faster than Jython or IronPython (especially start-up time is
|
|
87
|
+
faster), and also readily available on most UNIX-like operating systems.
|
|
88
|
+
Another good alternative is using the `standalone JAR distribution`_ that
|
|
89
|
+
only has Java as a precondition.
|
|
90
|
+
|
|
91
|
+
Python 2 vs Python 3
|
|
92
|
+
~~~~~~~~~~~~~~~~~~~~
|
|
93
|
+
|
|
94
|
+
Python 2 and Python 3 are mostly the same language, but they are not fully
|
|
95
|
+
compatible with each others. The main difference is that in Python 3 all
|
|
96
|
+
strings are Unicode while in Python 2 strings are bytes by default, but there
|
|
97
|
+
are also several other backwards incompatible changes. The last Python 2
|
|
98
|
+
release is Python 2.7 that was released in 2010 and will be supported until
|
|
99
|
+
2020. See `Should I use Python 2 or 3?`__ for more information about the
|
|
100
|
+
differences, which version to use, how to write code that works with both
|
|
101
|
+
versions, and so on.
|
|
102
|
+
|
|
103
|
+
Robot Framework 3.0 is the first Robot Framework version to support Python 3.
|
|
104
|
+
It supports also Python 2, and the plan is to continue Python 2 support as
|
|
105
|
+
long as Python 2 itself is officially supported. We hope that authors of the
|
|
106
|
+
libraries and tools in the wider Robot Framework ecosystem also start looking
|
|
107
|
+
at Python 3 support now that the core framework supports it.
|
|
108
|
+
|
|
109
|
+
__ https://wiki.python.org/moin/Python2orPython3
|
|
110
|
+
|
|
111
|
+
Python installation
|
|
112
|
+
~~~~~~~~~~~~~~~~~~~
|
|
113
|
+
|
|
114
|
+
On most UNIX-like systems such as Linux and OS X you have Python_ installed
|
|
115
|
+
by default. If you are on Windows or otherwise need to install Python yourself,
|
|
116
|
+
a good place to start is http://python.org. There you can download a suitable
|
|
117
|
+
installer and get more information about the installation process and Python
|
|
118
|
+
in general.
|
|
119
|
+
|
|
120
|
+
Robot Framework 3.0 supports Python 2.6, 2.7, 3.3 and newer, but the plan is
|
|
121
|
+
to `drop Python 2.6 support in RF 3.1`__. If you need to use older versions,
|
|
122
|
+
Robot Framework 2.5-2.8 support Python 2.5 and Robot Framework 2.0-2.1
|
|
123
|
+
support Python 2.3 and 2.4.
|
|
124
|
+
|
|
125
|
+
On Windows it is recommended to install Python to all users and to run the
|
|
126
|
+
installer as an administrator. Additionally, environment variable
|
|
127
|
+
``PYTHONCASEOK`` must not be set.
|
|
128
|
+
|
|
129
|
+
After installing Python, you probably still want to configure PATH_ to make
|
|
130
|
+
Python itself as well as the ``robot`` and ``rebot`` `runner scripts`_
|
|
131
|
+
executable on the command line.
|
|
132
|
+
|
|
133
|
+
.. tip:: Latest Python Windows installers allow setting ``PATH`` as part of
|
|
134
|
+
the installation. This is disabled by default, but `Add python.exe
|
|
135
|
+
to Path` can be enabled on the `Customize Python` screen.
|
|
136
|
+
|
|
137
|
+
__ https://github.com/robotframework/robotframework/issues/2276
|
|
138
|
+
|
|
139
|
+
Jython installation
|
|
140
|
+
~~~~~~~~~~~~~~~~~~~
|
|
141
|
+
|
|
142
|
+
Using test libraries implemented with Java_ or that use Java tools internally
|
|
143
|
+
requires running Robot Framework on Jython_, which in turn requires Java
|
|
144
|
+
Runtime Environment (JRE) or Java Development Kit (JDK). Installing either
|
|
145
|
+
of these Java distributions is out of the scope of these instructions, but
|
|
146
|
+
you can find more information, for example, from http://java.com.
|
|
147
|
+
|
|
148
|
+
Installing Jython is a fairly easy procedure, and the first step is getting
|
|
149
|
+
an installer from http://jython.org. The installer is an executable JAR
|
|
150
|
+
package, which you can run from the command line like `java -jar
|
|
151
|
+
jython_installer-<version>.jar`. Depending on the system configuration,
|
|
152
|
+
it may also be possible to just double-click the installer.
|
|
153
|
+
|
|
154
|
+
Robot Framework 3.0 supports Jython 2.7 which requires Java 7 or newer.
|
|
155
|
+
If older Jython or Java versions are needed, Robot Framework 2.5-2.8 support
|
|
156
|
+
Jython 2.5 (requires Java 5 or newer) and Robot Framework 2.0-2.1 support
|
|
157
|
+
Jython 2.2.
|
|
158
|
+
|
|
159
|
+
After installing Jython, you probably still want to configure PATH_ to make
|
|
160
|
+
Jython itself as well as the ``robot`` and ``rebot`` `runner scripts`_
|
|
161
|
+
executable on the command line.
|
|
162
|
+
|
|
163
|
+
IronPython installation
|
|
164
|
+
~~~~~~~~~~~~~~~~~~~~~~~
|
|
165
|
+
|
|
166
|
+
IronPython_ allows running Robot Framework on the `.NET platform
|
|
167
|
+
<http://www.microsoft.com/net>`__ and interacting with C# and other .NET
|
|
168
|
+
languages and APIs. Only IronPython 2.7 is supported.
|
|
169
|
+
|
|
170
|
+
When using IronPython, an additional dependency is installing
|
|
171
|
+
`elementtree <http://effbot.org/downloads/#elementtree>`__
|
|
172
|
+
module 1.2.7 preview release. This is required because the ``elementtree``
|
|
173
|
+
module distributed with IronPython is
|
|
174
|
+
`broken <https://github.com/IronLanguages/main/issues/968>`__. You can install
|
|
175
|
+
the package by downloading the source distribution, unzipping it, and running
|
|
176
|
+
``ipy setup.py install`` on the command prompt in the created directory.
|
|
177
|
+
|
|
178
|
+
After installing IronPython, you probably still want to configure PATH_ to make
|
|
179
|
+
IronPython itself as well as the ``robot`` and ``rebot`` `runner scripts`_
|
|
180
|
+
executable on the command line.
|
|
181
|
+
|
|
182
|
+
PyPy installation
|
|
183
|
+
~~~~~~~~~~~~~~~~~
|
|
184
|
+
|
|
185
|
+
PyPy_ is an alternative implementation of the Python language with both Python 2
|
|
186
|
+
and Python 3 compatible versions available. Its main advantage over the
|
|
187
|
+
standard Python implementation is that it can be faster and use less memory,
|
|
188
|
+
but this depends on the context where and how it is used. If execution speed
|
|
189
|
+
is important, at least testing PyPY is probably a good idea.
|
|
190
|
+
|
|
191
|
+
Installing PyPy is a straightforward procedure and you can find both installers
|
|
192
|
+
and installation instructions at http://pypy.org. After installation you
|
|
193
|
+
probably still want to configure PATH_ to make PyPy itself as well as the
|
|
194
|
+
``robot`` and ``rebot`` `runner scripts`_ executable on the command line.
|
|
195
|
+
|
|
196
|
+
Configuring ``PATH``
|
|
197
|
+
~~~~~~~~~~~~~~~~~~~~
|
|
198
|
+
|
|
199
|
+
The ``PATH`` environment variable lists locations where commands executed in
|
|
200
|
+
a system are searched from. To make using Robot Framework easier from the
|
|
201
|
+
command prompt, it is recommended to add the locations where the `runner
|
|
202
|
+
scripts`_ are installed into the ``PATH``. It is also often useful to have
|
|
203
|
+
the interpreter itself in the ``PATH`` to make executing it easy.
|
|
204
|
+
|
|
205
|
+
When using Python on UNIX-like machines both Python itself and scripts
|
|
206
|
+
installed with should be automatically in the ``PATH`` and no extra actions
|
|
207
|
+
needed. On Windows and with other interpreters the ``PATH`` must be configured
|
|
208
|
+
separately.
|
|
209
|
+
|
|
210
|
+
.. tip:: Latest Python Windows installers allow setting ``PATH`` as part of
|
|
211
|
+
the installation. This is disabled by default, but `Add python.exe
|
|
212
|
+
to Path` can be enabled on the `Customize Python` screen. It will
|
|
213
|
+
add both the Python installation directory and the :file:`Scripts`
|
|
214
|
+
directory to the ``PATH``.
|
|
215
|
+
|
|
216
|
+
What directories to add to ``PATH``
|
|
217
|
+
'''''''''''''''''''''''''''''''''''
|
|
218
|
+
|
|
219
|
+
What directories you need to add to the ``PATH`` depends on the interpreter and
|
|
220
|
+
the operating system. The first location is the installation directory of
|
|
221
|
+
the interpreter (e.g. :file:`C:\\Python27`) and the other is the location
|
|
222
|
+
where scripts are installed with that interpreter. Both Python and IronPython
|
|
223
|
+
install scripts to :file:`Scripts` directory under the installation directory
|
|
224
|
+
on Windows (e.g. :file:`C:\\Python27\\Scripts`) and Jython uses :file:`bin`
|
|
225
|
+
directory regardless the operating system (e.g. :file:`C:\\jython2.7.0\\bin`).
|
|
226
|
+
|
|
227
|
+
Notice that the :file:`Scripts` and :file:`bin` directories may not be created
|
|
228
|
+
as part of the interpreter installation, but only later when Robot Framework
|
|
229
|
+
or some other third party module is installed.
|
|
230
|
+
|
|
231
|
+
Setting ``PATH`` on Windows
|
|
232
|
+
'''''''''''''''''''''''''''
|
|
233
|
+
|
|
234
|
+
On Windows you can configure ``PATH`` by following the steps below. Notice
|
|
235
|
+
that the exact setting names may be different on different Windows versions,
|
|
236
|
+
but the basic approach should still be the same.
|
|
237
|
+
|
|
238
|
+
1. Open `Control Panel > System > Advanced > Environment Variables`. There
|
|
239
|
+
are `User variables` and `System variables`, and the difference between
|
|
240
|
+
them is that user variables affect only the current users, whereas system
|
|
241
|
+
variables affect all users.
|
|
242
|
+
|
|
243
|
+
2. To edit an existing ``PATH`` value, select `Edit` and add
|
|
244
|
+
`;<InstallationDir>;<ScriptsDir>` at the end of the value (e.g.
|
|
245
|
+
`;C:\Python27;C:\Python27\Scripts`). Note that the semicolons (`;`) are
|
|
246
|
+
important as they separate the different entries. To add a new ``PATH``
|
|
247
|
+
value, select `New` and set both the name and the value, this time without
|
|
248
|
+
the leading semicolon.
|
|
249
|
+
|
|
250
|
+
3. Exit the dialog with `Ok` to save the changes.
|
|
251
|
+
|
|
252
|
+
4. Start a new command prompt for the changes to take effect.
|
|
253
|
+
|
|
254
|
+
Notice that if you have multiple Python versions installed, the executed
|
|
255
|
+
``robot`` or ``rebot`` `runner script`_ will always use the one that is
|
|
256
|
+
*first* in the ``PATH`` regardless under what Python version that script is
|
|
257
|
+
installed. To avoid that, you can always execute the `installed robot module
|
|
258
|
+
directly`__ like `C:\Python27\python.exe -m robot`.
|
|
259
|
+
|
|
260
|
+
Notice also that you should not add quotes around directories you add into
|
|
261
|
+
the ``PATH`` (e.g. `"C:\Python27\Scripts"`). Quotes `can cause problems with
|
|
262
|
+
Python programs <http://bugs.python.org/issue17023>`_ and they are not needed
|
|
263
|
+
in this context even if the directory path would contain spaces.
|
|
264
|
+
|
|
265
|
+
__ `Executing installed robot module`_
|
|
266
|
+
|
|
267
|
+
Setting ``PATH`` on UNIX-like systems
|
|
268
|
+
'''''''''''''''''''''''''''''''''''''
|
|
269
|
+
|
|
270
|
+
On UNIX-like systems you typically need to edit either some system wide or user
|
|
271
|
+
specific configuration file. Which file to edit and how depends on the system,
|
|
272
|
+
and you need to consult your operating system documentation for more details.
|
|
273
|
+
|
|
274
|
+
Setting ``https_proxy``
|
|
275
|
+
~~~~~~~~~~~~~~~~~~~~~~~
|
|
276
|
+
|
|
277
|
+
If you are `installing with pip`_ and are behind a proxy, you need to set
|
|
278
|
+
the ``https_proxy`` environment variable. It is needed both when installing
|
|
279
|
+
pip itself and when using it to install Robot Framework and other Python
|
|
280
|
+
packages.
|
|
281
|
+
|
|
282
|
+
How to set the ``https_proxy`` depends on the operating system similarly as
|
|
283
|
+
`configuring PATH`_. The value of this variable must be an URL of the proxy,
|
|
284
|
+
for example, `http://10.0.0.42:8080`.
|
|
285
|
+
|
|
286
|
+
Installing with pip
|
|
287
|
+
-------------------
|
|
288
|
+
|
|
289
|
+
The standard Python package manager is pip_, but there are also other
|
|
290
|
+
alternatives such as `Buildout <http://buildout.org>`__ and `easy_install
|
|
291
|
+
<http://peak.telecommunity.com/DevCenter/EasyInstall>`__. These instructions
|
|
292
|
+
only cover using pip, but other package managers ought be able to install
|
|
293
|
+
Robot Framework as well.
|
|
294
|
+
|
|
295
|
+
Latest Python, Jython, IronPython and PyPy versions contain pip bundled in.
|
|
296
|
+
Which versions contain it and how to possibly activate it is discussed in
|
|
297
|
+
sections below. See pip_ project pages if for the latest installation
|
|
298
|
+
instructions if you need to install it.
|
|
299
|
+
|
|
300
|
+
.. note:: Only Robot Framework 2.7 and newer can be installed using pip. If you
|
|
301
|
+
need an older version, you must use other installation approaches.
|
|
302
|
+
|
|
303
|
+
Installing pip for Python
|
|
304
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
305
|
+
|
|
306
|
+
Starting from Python 2.7.9, the standard Windows installer by default installs
|
|
307
|
+
and activates pip. Assuming you also have configured PATH_ and possibly
|
|
308
|
+
set https_proxy_, you can run `pip install robotframework` right after
|
|
309
|
+
Python installation. With Python 3.4 and newer pip is officially part of the
|
|
310
|
+
interpreter and should be automatically available.
|
|
311
|
+
|
|
312
|
+
Outside Windows and with older Python versions you need to install pip yourself.
|
|
313
|
+
You may be able to do it using system package managers like Apt or Yum on Linux,
|
|
314
|
+
but you can always use the manual installation instructions found from the pip_
|
|
315
|
+
project pages.
|
|
316
|
+
|
|
317
|
+
If you have multiple Python versions with pip installed, the version that is
|
|
318
|
+
used when the ``pip`` command is executed depends on which pip is first in the
|
|
319
|
+
PATH_. An alternative is executing the ``pip`` module using the selected Python
|
|
320
|
+
version directly:
|
|
321
|
+
|
|
322
|
+
.. sourcecode:: bash
|
|
323
|
+
|
|
324
|
+
python -m pip install robotframework
|
|
325
|
+
python3 -m pip install robotframework
|
|
326
|
+
|
|
327
|
+
Installing pip for Jython
|
|
328
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
329
|
+
|
|
330
|
+
Jython 2.7 contain pip bundled in, but it needs to be activated before using it
|
|
331
|
+
by running the following command:
|
|
332
|
+
|
|
333
|
+
.. sourcecode:: bash
|
|
334
|
+
|
|
335
|
+
jython -m ensurepip
|
|
336
|
+
|
|
337
|
+
Jython installs its pip into :file:`<JythonInstallation>/bin` directory.
|
|
338
|
+
Does running `pip install robotframework` actually use it or possibly some
|
|
339
|
+
other pip version depends on which pip is first in the PATH_. An alternative
|
|
340
|
+
is executing the ``pip`` module using Jython directly:
|
|
341
|
+
|
|
342
|
+
.. sourcecode:: bash
|
|
343
|
+
|
|
344
|
+
jython -m pip install robotframework
|
|
345
|
+
|
|
346
|
+
Installing pip for IronPython
|
|
347
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
348
|
+
|
|
349
|
+
IronPython contains bundled pip starting from `version 2.7.5`__. Similarly as
|
|
350
|
+
with Jython, it needs to be activated first:
|
|
351
|
+
|
|
352
|
+
.. sourcecode:: bash
|
|
353
|
+
|
|
354
|
+
ipy -X:Frames -m ensurepip
|
|
355
|
+
|
|
356
|
+
Notice that with IronPython `-X:Frames` command line option is needed both
|
|
357
|
+
when activating and when using pip.
|
|
358
|
+
|
|
359
|
+
IronPython installs pip into :file:`<IronPythonInstallation>/Scripts` directory.
|
|
360
|
+
Does running `pip install robotframework` actually use it or possibly some
|
|
361
|
+
other pip version depends on which pip is first in the PATH_. An alternative
|
|
362
|
+
is executing the ``pip`` module using IronPython directly:
|
|
363
|
+
|
|
364
|
+
.. sourcecode:: bash
|
|
365
|
+
|
|
366
|
+
ipy -X:Frames -m pip install robotframework
|
|
367
|
+
|
|
368
|
+
IronPython versions prior to 2.7.5 do not officially support pip.
|
|
369
|
+
|
|
370
|
+
__ http://blog.ironpython.net/2014/12/pip-in-ironpython-275.html
|
|
371
|
+
|
|
372
|
+
Installing pip for PyPy
|
|
373
|
+
~~~~~~~~~~~~~~~~~~~~~~~
|
|
374
|
+
|
|
375
|
+
Also PyPy contains pip bundled in. It is not activated by default, but it can
|
|
376
|
+
be activated similarly as with the other interpreters:
|
|
377
|
+
|
|
378
|
+
.. sourcecode:: bash
|
|
379
|
+
|
|
380
|
+
pypy -m ensurepip
|
|
381
|
+
pypy3 -m ensurepip
|
|
382
|
+
|
|
383
|
+
If you have multiple Python versions with pip installed, the version that is
|
|
384
|
+
used when the ``pip`` command is executed depends on which pip is first in the
|
|
385
|
+
PATH_. An alternative is executing the ``pip`` module using PyPy directly:
|
|
386
|
+
|
|
387
|
+
.. sourcecode:: bash
|
|
388
|
+
|
|
389
|
+
pypy -m pip
|
|
390
|
+
pypy3 -m pip
|
|
391
|
+
|
|
392
|
+
Using pip
|
|
393
|
+
~~~~~~~~~
|
|
394
|
+
|
|
395
|
+
Once you have pip_ installed, and have set https_proxy_ if you are behind
|
|
396
|
+
a proxy, using pip on the command line is very easy. The easiest way to use
|
|
397
|
+
pip is by letting it find and download packages it installs from the
|
|
398
|
+
`Python Package Index (PyPI)`__, but it can also install packages
|
|
399
|
+
downloaded from the PyPI separately. The most common usages are shown below
|
|
400
|
+
and pip_ documentation has more information and examples.
|
|
401
|
+
|
|
402
|
+
__ PyPI_
|
|
403
|
+
|
|
404
|
+
.. sourcecode:: bash
|
|
405
|
+
|
|
406
|
+
# Install the latest version
|
|
407
|
+
pip install robotframework
|
|
408
|
+
|
|
409
|
+
# Upgrade to the latest version
|
|
410
|
+
pip install --upgrade robotframework
|
|
411
|
+
|
|
412
|
+
# Install a specific version
|
|
413
|
+
pip install robotframework==2.9.2
|
|
414
|
+
|
|
415
|
+
# Install separately downloaded package (no network connection needed)
|
|
416
|
+
pip install robotframework-3.0.tar.gz
|
|
417
|
+
|
|
418
|
+
# Uninstall
|
|
419
|
+
pip uninstall robotframework
|
|
420
|
+
|
|
421
|
+
Notice that pip 1.4 and newer will only install stable releases by default.
|
|
422
|
+
If you want to install an alpha, beta or release candidate, you need to either
|
|
423
|
+
specify the version explicitly or use the :option:`--pre` option:
|
|
424
|
+
|
|
425
|
+
.. sourcecode:: bash
|
|
426
|
+
|
|
427
|
+
# Install 3.0 beta 1
|
|
428
|
+
pip install robotframework==3.0b1
|
|
429
|
+
|
|
430
|
+
# Upgrade to the latest version even if it is a pre-release
|
|
431
|
+
pip install --pre --upgrade robotframework
|
|
432
|
+
|
|
433
|
+
Notice that on Windows pip, by default, does not recreate `robot.bat and
|
|
434
|
+
rebot.bat`__ start-up scripts if the same Robot Framework version is installed
|
|
435
|
+
multiple times using the same Python version. This mainly causes problems
|
|
436
|
+
when `using virtual environments`_, but is something to take into account
|
|
437
|
+
also if doing custom installations using pip. A workaround if using the
|
|
438
|
+
``--no-cache-dir`` option like ``pip install --no-cache-dir robotframework``.
|
|
439
|
+
Alternatively it is possible to ignore the start-up scripts altogether and
|
|
440
|
+
just use ``python -m robot`` and ``python -m robot.rebot`` commands instead.
|
|
441
|
+
|
|
442
|
+
__ `Executing Robot Framework`_
|
|
443
|
+
|
|
444
|
+
Installing from source
|
|
445
|
+
----------------------
|
|
446
|
+
|
|
447
|
+
This installation method can be used on any operating system with any of the
|
|
448
|
+
supported interpreters. Installing *from source* can sound a bit scary, but
|
|
449
|
+
the procedure is actually pretty straightforward.
|
|
450
|
+
|
|
451
|
+
Getting source code
|
|
452
|
+
~~~~~~~~~~~~~~~~~~~
|
|
453
|
+
|
|
454
|
+
You typically get the source by downloading a *source distribution* from PyPI_
|
|
455
|
+
as a `.tar.gz` package. Once you have downloaded the package, you need to
|
|
456
|
+
extract it somewhere and, as a result, you get a directory named
|
|
457
|
+
`robotframework-<version>`. The directory contains the source code and a
|
|
458
|
+
``setup.py`` script needed for installing it.
|
|
459
|
+
|
|
460
|
+
An alternative approach for getting the source code is cloning project's
|
|
461
|
+
`GitHub repository`_ directly. By default you will get the latest code, but
|
|
462
|
+
you can easily switch to different released versions or other tags.
|
|
463
|
+
|
|
464
|
+
Installation
|
|
465
|
+
~~~~~~~~~~~~
|
|
466
|
+
|
|
467
|
+
Robot Framework is installed from source using Python's standard ``setup.py``
|
|
468
|
+
script. The script is in the directory containing the sources and you can run
|
|
469
|
+
it from the command line using any of the supported interpreters:
|
|
470
|
+
|
|
471
|
+
.. sourcecode:: bash
|
|
472
|
+
|
|
473
|
+
python setup.py install
|
|
474
|
+
jython setup.py install
|
|
475
|
+
ipy setup.py install
|
|
476
|
+
pypy setup.py install
|
|
477
|
+
|
|
478
|
+
The ``setup.py`` script accepts several arguments allowing, for example,
|
|
479
|
+
installation into a non-default location that does not require administrative
|
|
480
|
+
rights. It is also used for creating different distribution packages. Run
|
|
481
|
+
`python setup.py --help` for more details.
|
|
482
|
+
|
|
483
|
+
Standalone JAR distribution
|
|
484
|
+
---------------------------
|
|
485
|
+
|
|
486
|
+
Robot Framework is also distributed as a standalone Java archive that contains
|
|
487
|
+
both Jython_ and Robot Framework and only requires Java_ a dependency. It is
|
|
488
|
+
an easy way to get everything in one package that requires no installation,
|
|
489
|
+
but has a downside that it does not work with the normal Python_ interpreter.
|
|
490
|
+
|
|
491
|
+
The package is named ``robotframework-<version>.jar`` and it is available
|
|
492
|
+
on the `Maven central`_. After downloading the package, you can execute tests
|
|
493
|
+
with it like:
|
|
494
|
+
|
|
495
|
+
.. sourcecode:: bash
|
|
496
|
+
|
|
497
|
+
java -jar robotframework-3.0.jar mytests.robot
|
|
498
|
+
java -jar robotframework-3.0.jar --variable name:value mytests.robot
|
|
499
|
+
|
|
500
|
+
If you want to `post-process outputs`_ using Rebot or use other built-in
|
|
501
|
+
`supporting tools`_, you need to give the command name ``rebot``, ``libdoc``,
|
|
502
|
+
``testdoc`` or ``tidy`` as the first argument to the JAR file:
|
|
503
|
+
|
|
504
|
+
.. sourcecode:: bash
|
|
505
|
+
|
|
506
|
+
java -jar robotframework-3.0.jar rebot output.xml
|
|
507
|
+
java -jar robotframework-3.0.jar libdoc MyLibrary list
|
|
508
|
+
|
|
509
|
+
For more information about the different commands, execute the JAR without
|
|
510
|
+
arguments.
|
|
511
|
+
|
|
512
|
+
In addition to the Python standard library and Robot Framework modules, the
|
|
513
|
+
standalone JAR versions starting from 2.9.2 also contain the PyYAML dependency
|
|
514
|
+
needed to handle yaml variable files.
|
|
515
|
+
|
|
516
|
+
Manual installation
|
|
517
|
+
-------------------
|
|
518
|
+
|
|
519
|
+
If you do not want to use any automatic way of installing Robot Framework,
|
|
520
|
+
you can always install it manually following these steps:
|
|
521
|
+
|
|
522
|
+
1. Get the source code. All the code is in a directory (a package in Python)
|
|
523
|
+
called :file:`robot`. If you have a `source distribution`_ or a version
|
|
524
|
+
control checkout, you can find it from the :file:`src` directory, but you
|
|
525
|
+
can also get it from an earlier installation.
|
|
526
|
+
|
|
527
|
+
2. Copy the source code where you want to.
|
|
528
|
+
|
|
529
|
+
3. Decide `how to run tests`__.
|
|
530
|
+
|
|
531
|
+
__ `Executing Robot Framework`_
|
|
532
|
+
|
|
533
|
+
Verifying installation
|
|
534
|
+
----------------------
|
|
535
|
+
|
|
536
|
+
After a successful installation, you should be able to execute the created
|
|
537
|
+
`runner scripts`_ with :option:`--version` option and get both Robot Framework
|
|
538
|
+
and interpreter versions as a result:
|
|
539
|
+
|
|
540
|
+
.. sourcecode:: bash
|
|
541
|
+
|
|
542
|
+
$ robot --version
|
|
543
|
+
Robot Framework 3.0 (Python 2.7.10 on linux2)
|
|
544
|
+
|
|
545
|
+
$ rebot --version
|
|
546
|
+
Rebot 3.0 (Python 2.7.10 on linux2)
|
|
547
|
+
|
|
548
|
+
If running the runner scripts fails with a message saying that the command is
|
|
549
|
+
not found or recognized, a good first step is double-checking the PATH_
|
|
550
|
+
configuration. If that does not help, it is a good idea to re-read relevant
|
|
551
|
+
sections from these instructions before searching help from the Internet or
|
|
552
|
+
as asking help on `robotframework-users
|
|
553
|
+
<http://groups.google.com/group/robotframework-users/>`__ mailing list or
|
|
554
|
+
elsewhere.
|
|
555
|
+
|
|
556
|
+
Where files are installed
|
|
557
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
558
|
+
|
|
559
|
+
When an automatic installer is used, Robot Framework source code is copied
|
|
560
|
+
into a directory containing external Python modules. On UNIX-like operating
|
|
561
|
+
systems where Python is pre-installed the location of this directory varies.
|
|
562
|
+
If you have installed the interpreter yourself, it is normally
|
|
563
|
+
:file:`Lib/site-packages` under the interpreter installation directory, for
|
|
564
|
+
example, :file:`C:\\Python27\\Lib\\site-packages`. The actual Robot
|
|
565
|
+
Framework code is in a directory named :file:`robot`.
|
|
566
|
+
|
|
567
|
+
Robot Framework `runner scripts`_ are created and copied into another
|
|
568
|
+
platform-specific location. When using Python on UNIX-like systems, they
|
|
569
|
+
normally go to :file:`/usr/bin` or :file:`/usr/local/bin`. On Windows and
|
|
570
|
+
with Jython and IronPython, the scripts are typically either in :file:`Scripts`
|
|
571
|
+
or :file:`bin` directory under the interpreter installation directory.
|
|
572
|
+
|
|
573
|
+
Uninstallation
|
|
574
|
+
--------------
|
|
575
|
+
|
|
576
|
+
The easiest way to uninstall Robot Framework is using pip_:
|
|
577
|
+
|
|
578
|
+
.. sourcecode:: bash
|
|
579
|
+
|
|
580
|
+
pip uninstall robotframework
|
|
581
|
+
|
|
582
|
+
A nice feature in pip is that it can uninstall packages even if they are
|
|
583
|
+
installed from the source. If you do not have pip available or have done
|
|
584
|
+
a `manual installation`_ to a custom location, you need to find `where files
|
|
585
|
+
are installed`_ and remove them manually.
|
|
586
|
+
|
|
587
|
+
If you have set PATH_ or configured the environment otherwise, you need to
|
|
588
|
+
undo those changes separately.
|
|
589
|
+
|
|
590
|
+
Upgrading
|
|
591
|
+
---------
|
|
592
|
+
|
|
593
|
+
If you are using pip_, upgrading to a new version requires either specifying
|
|
594
|
+
the version explicitly or using the :option:`--upgrade` option. If upgrading
|
|
595
|
+
to a preview release, :option:`--pre` option is needed as well.
|
|
596
|
+
|
|
597
|
+
.. sourcecode:: bash
|
|
598
|
+
|
|
599
|
+
# Upgrade to the latest stable version. This is the most common method.
|
|
600
|
+
pip install --upgrade robotframework
|
|
601
|
+
|
|
602
|
+
# Upgrade to the latest version even if it would be a preview release.
|
|
603
|
+
pip install --upgrade --pre robotframework
|
|
604
|
+
|
|
605
|
+
# Upgrade to the specified version.
|
|
606
|
+
pip install robotframework==2.9.2
|
|
607
|
+
|
|
608
|
+
When using pip, it automatically uninstalls previous versions before
|
|
609
|
+
installation. If you are `installing from source`_, it should be safe to
|
|
610
|
+
just install over an existing installation. If you encounter problems,
|
|
611
|
+
uninstallation_ before installation may help.
|
|
612
|
+
|
|
613
|
+
When upgrading Robot Framework, there is always a change that the new version
|
|
614
|
+
contains backwards incompatible changes affecting existing tests or test
|
|
615
|
+
infrastructure. Such changes are very rare in minor versions like 2.8.7 or
|
|
616
|
+
2.9.2, but more common in major versions like 2.9 and 3.0. Backwards
|
|
617
|
+
incompatible changes and deprecated features are explained in the release
|
|
618
|
+
notes, and it is a good idea to study them especially when upgrading to
|
|
619
|
+
a new major version.
|
|
620
|
+
|
|
621
|
+
Executing Robot Framework
|
|
622
|
+
-------------------------
|
|
623
|
+
|
|
624
|
+
Using ``robot`` and ``rebot`` scripts
|
|
625
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
626
|
+
|
|
627
|
+
Starting from Robot Framework 3.0, tests are executed using the ``robot``
|
|
628
|
+
script and results post-processed with the ``rebot`` script:
|
|
629
|
+
|
|
630
|
+
.. sourcecode:: bash
|
|
631
|
+
|
|
632
|
+
robot tests.robot
|
|
633
|
+
rebot output.xml
|
|
634
|
+
|
|
635
|
+
Both of these scripts are installed as part of the normal installation and
|
|
636
|
+
can be executed directly from the command line if PATH_ is set correctly.
|
|
637
|
+
They are implemented using Python except on Windows where they are batch files.
|
|
638
|
+
|
|
639
|
+
Older Robot Framework versions do not have the ``robot`` script and the
|
|
640
|
+
``rebot`` script is installed only with Python. Instead they have interpreter
|
|
641
|
+
specific scripts ``pybot``, ``jybot`` and ``ipybot`` for test execution and
|
|
642
|
+
``jyrebot`` and ``ipyrebot`` for post-processing outputs. These scripts still
|
|
643
|
+
work, but they will be deprecated and removed in the future.
|
|
644
|
+
|
|
645
|
+
Executing installed ``robot`` module
|
|
646
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
647
|
+
|
|
648
|
+
An alternative way to run tests is executing the installed ``robot`` module
|
|
649
|
+
or its sub module ``robot.run`` directly using Python's `-m command line
|
|
650
|
+
option`__. This is especially useful if Robot Framework is used with multiple
|
|
651
|
+
Python versions:
|
|
652
|
+
|
|
653
|
+
.. sourcecode:: bash
|
|
654
|
+
|
|
655
|
+
python -m robot tests.robot
|
|
656
|
+
python3 -m robot.run tests.robot
|
|
657
|
+
jython -m robot tests.robot
|
|
658
|
+
/opt/jython/jython -m robot tests.robot
|
|
659
|
+
|
|
660
|
+
The support for ``python -m robot`` approach is a new feature in Robot
|
|
661
|
+
Framework 3.0, but the older versions support ``python -m robot.run``.
|
|
662
|
+
The latter must also be used with Python 2.6.
|
|
663
|
+
|
|
664
|
+
Post-processing outputs using the same approach works too, but the module to
|
|
665
|
+
execute is ``robot.rebot``:
|
|
666
|
+
|
|
667
|
+
.. sourcecode:: bash
|
|
668
|
+
|
|
669
|
+
python -m robot.rebot output.xml
|
|
670
|
+
|
|
671
|
+
__ https://docs.python.org/2/using/cmdline.html#cmdoption-m
|
|
672
|
+
|
|
673
|
+
Executing installed ``robot`` directory
|
|
674
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
675
|
+
|
|
676
|
+
If you know where Robot Framework is installed, you can also execute the
|
|
677
|
+
installed :file:`robot` directory or the :file:`run.py` file inside it
|
|
678
|
+
directly:
|
|
679
|
+
|
|
680
|
+
.. sourcecode:: bash
|
|
681
|
+
|
|
682
|
+
python path/to/robot/ tests.robot
|
|
683
|
+
jython path/to/robot/run.py tests.robot
|
|
684
|
+
|
|
685
|
+
Running the directory is a new feature in Robot Framework 3.0, but the older
|
|
686
|
+
versions support running the :file:`robot/run.py` file.
|
|
687
|
+
|
|
688
|
+
Post-processing outputs using the :file:`robot/rebot.py` file works the same
|
|
689
|
+
way too:
|
|
690
|
+
|
|
691
|
+
.. sourcecode:: bash
|
|
692
|
+
|
|
693
|
+
python path/to/robot/rebot.py output.xml
|
|
694
|
+
|
|
695
|
+
Executing Robot Framework this way is especially handy if you have done
|
|
696
|
+
a `manual installation`_.
|
|
697
|
+
|
|
698
|
+
Using virtual environments
|
|
699
|
+
--------------------------
|
|
700
|
+
|
|
701
|
+
Python `virtual environments`__ allow Python packages to be installed in
|
|
702
|
+
an isolated location for a particular system or application, rather than
|
|
703
|
+
installing all packages into the same global location. Virtual environments
|
|
704
|
+
can be created using the virtualenv__ tool or, starting from Python 3.3,
|
|
705
|
+
using the standard venv__ module.
|
|
706
|
+
|
|
707
|
+
Robot Framework in general works fine with virtual environments. The only
|
|
708
|
+
problem is that when `using pip`_ on Windows, ``robot.bat`` and ``rebot.bat``
|
|
709
|
+
scripts are not recreated by default. This means that if Robot Framework is
|
|
710
|
+
installed into multiple virtual environments, the ``robot.bat`` and
|
|
711
|
+
``rebot.bat`` scripts in the latter ones refer to the Python installation
|
|
712
|
+
in the first virtual environment. A workaround is using the ``--no-cache-dir``
|
|
713
|
+
option when installing. Alternatively the start-up scripts can be ignored
|
|
714
|
+
and ``python -m robot`` and ``python -m robot.rebot`` commands used instead.
|
|
715
|
+
|
|
716
|
+
__ https://packaging.python.org/installing/#creating-virtual-environments
|
|
717
|
+
__ https://virtualenv.pypa.io
|
|
718
|
+
__ https://docs.python.org/3/library/venv.html
|
|
719
|
+
|
|
720
|
+
.. These aliases need an explicit target to work in GitHub
|
|
721
|
+
.. _precondition: `Preconditions`_
|
|
722
|
+
.. _PATH: `Configuring PATH`_
|
|
723
|
+
.. _https_proxy: `Setting https_proxy`_
|
|
724
|
+
.. _source distribution: `Getting source code`_
|
|
725
|
+
.. _runner script: `Using robot and rebot scripts`_
|
|
726
|
+
.. _runner scripts: `Using robot and rebot scripts`_
|