├── .ctf_coveragerc ├── .pylintrc ├── README.md ├── activate_ctf_env.sh ├── configs ├── ci_config.ini ├── default_config.ini └── example_lx1_lx2_config.ini ├── core_plugins ├── __init__.py ├── ccsds_plugin │ ├── README.md │ ├── __init__.py │ ├── ccsds_interface.py │ ├── ccsds_packet_interface.py │ ├── ccsds_plugin.py │ ├── ccsds_primary_header.py │ ├── cfe │ │ ├── __init__.py │ │ ├── ccsds_secondary_header.py │ │ ├── ccsds_v1 │ │ │ ├── __init__.py │ │ │ └── ccsds_v1.py │ │ └── ccsds_v2 │ │ │ ├── __init__.py │ │ │ └── ccsds_v2.py │ ├── readers │ │ ├── __init__.py │ │ ├── ccdd_export_reader.py │ │ └── command_builder.py │ └── tests │ │ ├── __init__.py │ │ ├── cfe │ │ ├── __init__.py │ │ ├── ccsds_v1 │ │ │ ├── __init__.py │ │ │ └── test_ccsds_v1.py │ │ ├── ccsds_v2 │ │ │ ├── __init__.py │ │ │ └── test_ccsds_v2.py │ │ └── test_ccsds_secondary_header.py │ │ ├── conftest.py │ │ ├── readers │ │ ├── __init__.py │ │ ├── test_ccdd_export_reader.py │ │ └── test_command_builder.py │ │ ├── test_ccsds_interface.py │ │ ├── test_ccsds_packet_interface.py │ │ ├── test_ccsds_plugin.py │ │ └── test_ccsds_primary_header.py ├── cfs │ ├── README.md │ ├── __init__.py │ ├── cfs_config.py │ ├── cfs_plugin.py │ ├── cfs_time_manager.py │ ├── pycfs │ │ ├── __init__.py │ │ ├── cfs_controllers.py │ │ ├── cfs_interface.py │ │ ├── cfs_interface_utility.py │ │ ├── command_interface.py │ │ ├── local_cfs_interface.py │ │ ├── output_app_interface.py │ │ ├── remote_cfs_interface.py │ │ ├── socket_interface.py │ │ └── tlm_listener.py │ └── tests │ │ ├── __init__.py │ │ ├── pycfs │ │ ├── __init__.py │ │ ├── test_cfs_controllers.py │ │ ├── test_cfs_interface.py │ │ ├── test_cfs_interface_utility.py │ │ ├── test_command_interface.py │ │ ├── test_local_cfs_interface.py │ │ ├── test_output_app_interface.py │ │ ├── test_remote_cfs_interface.py │ │ ├── test_socket_interface.py │ │ └── test_tlm_listener.py │ │ ├── test_cfs_config.py │ │ ├── test_cfs_plugin.py │ │ └── test_cfs_time_manager.py ├── control_flow_plugin │ ├── README.md │ ├── __init__.py │ ├── control_flow_plugin.py │ └── tests │ │ ├── __init__.py │ │ └── test_control_flow_plugin.py ├── example_plugin │ ├── README.md │ ├── __init__.py │ ├── example_plugin.py │ └── tests │ │ ├── __init__.py │ │ └── test_example_plugin.py ├── info │ ├── CCSDS Plugin.json │ ├── CFS Plugin.json │ ├── ControlFlow Plugin.json │ ├── ExamplePlugin.json │ ├── SshPlugin.json │ ├── TrickPlugin.json │ ├── UserIOPlugin.json │ ├── ValidationPlugin.json │ └── VariablePlugin.json ├── ssh │ ├── README.md │ ├── __init__.py │ ├── ssh_plugin.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_ssh_plugin.py ├── trick_plugin │ ├── README.md │ ├── __init__.py │ ├── tests │ │ ├── __init__.py │ │ └── test_trick_plugin.py │ ├── trick │ │ ├── LICENSE │ │ ├── __init__.py │ │ └── variable_server.py │ └── trick_plugin.py ├── userio_plugin │ ├── README.md │ ├── __init__.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_userio_plugin.py │ └── userio_plugin.py ├── validation_plugin │ ├── README.md │ ├── __init__.py │ ├── tests │ │ ├── __init__.py │ │ ├── evs.bin │ │ └── test_validation_plugin.py │ └── validation_plugin.py └── variable_plugin │ ├── README.md │ ├── __init__.py │ ├── tests │ ├── __init__.py │ └── test_variable_plugin.py │ └── variable_plugin.py ├── ctf ├── example_scripts ├── Example_Function.json ├── Nested_Function.json ├── ReadMe.md ├── Test_CTF_Nested_Function.json ├── config_required │ ├── CFS_LX1_Registered_Config_Test.json │ ├── LX1_LX2_Basic_Example.json │ ├── Local_SSH_Registered_Config_Test.json │ ├── README.md │ └── Test_CTF_CFS_Restart.json ├── example_failing_tests │ ├── Continuous_Verification_Failing.json │ ├── Invalid_Instruction.json │ └── Test_CTF_Advanced_Example.json ├── ssh_tests │ ├── SSH_Cfs_Basic_Example.json │ ├── SSH_Cfs_Build.json │ └── SSH_Run_Instructions.json ├── trick_tests │ ├── Test_CTF_Trick_Plugin.json │ └── trick_killsim.sh └── validation_tests │ └── Validate_CCSDS_Exports.json ├── external └── ReadMe.txt ├── functional_tests ├── ReadMe.md ├── Test_StartCfsEnableOutput.json ├── Test_StopCfs.json ├── cfe_6_7_tests │ ├── README.md │ ├── app_tests │ │ ├── CiFunctionTests.json │ │ ├── SchFunctionTests.json │ │ └── ToFunctionTests.json │ ├── cfe_tests │ │ ├── CfeEsTest.json │ │ ├── CfeEvsTest.json │ │ ├── CfeSbTest.json │ │ ├── CfeTblTest.json │ │ └── CfeTimeTest.json │ ├── libs │ │ ├── CfeEsFunctions.json │ │ ├── CfeEvsFunctions.json │ │ ├── CfeSbFunctions.json │ │ ├── CfeTblFunctions.json │ │ ├── CfeTimeFunctions.json │ │ ├── CiFunctions.json │ │ ├── SchFunctions.json │ │ └── ToFunctions.json │ └── run_tests.sh └── plugin_tests │ ├── Test_CTF_All_Instructions.json │ ├── Test_CTF_Basic_Example.json │ ├── Test_CTF_CFE_Basic_Example.json │ ├── Test_CTF_Check_Event.json │ ├── Test_CTF_Conditional_Branch.json │ ├── Test_CTF_Control_Flow_Loop.json │ ├── Test_CTF_EVS_Log.json │ ├── Test_CTF_Example_Plugin.json │ ├── Test_CTF_If_Func.json │ ├── Test_CTF_Intermediate_Example.json │ ├── Test_CTF_Loop_Tlmvalue.json │ ├── Test_CTF_Userio_Plugin.json │ ├── Test_CTF_Variable_Plugin.json │ ├── Test_CTF_Verify_Instruction.json │ ├── Test_Continuous_Verification.json │ └── run_tests.sh ├── lib ├── __init__.py ├── args_validation.py ├── ctf_global.py ├── ctf_utility.py ├── db_manager.py ├── db_table_manager.py ├── event_types.py ├── exceptions.py ├── ftp_interface.py ├── logger.py ├── patchwork │ ├── .coveragerc │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.rst │ ├── dev-requirements.txt │ ├── docs │ │ ├── api │ │ │ ├── environment.rst │ │ │ ├── files.rst │ │ │ ├── info.rst │ │ │ ├── packages.rst │ │ │ ├── transfers.rst │ │ │ └── util.rst │ │ ├── changelog.rst │ │ ├── conf.py │ │ └── index.rst │ ├── patchwork │ │ ├── __init__.py │ │ ├── _version.py │ │ ├── environment.py │ │ ├── files.py │ │ ├── info.py │ │ ├── packages │ │ │ └── __init__.py │ │ ├── transfers.py │ │ └── util.py │ ├── setup.cfg │ ├── setup.py │ ├── tasks.py │ └── tests │ │ ├── conftest.py │ │ ├── files.py │ │ ├── info.py │ │ ├── transfers.py │ │ └── util.py ├── plugin_manager.py ├── readers │ ├── __init__.py │ └── json_script_reader.py ├── script_manager.py ├── status.py ├── status_manager.py ├── test.py ├── test_script.py ├── time_interface.py └── xmltodict.py ├── prj_plugins └── __init__.py ├── requirements.txt ├── run_editor.sh ├── run_tests.sh ├── setup_ctf_env.sh ├── setup_editor.sh ├── tools ├── ctf_ui │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── resources │ │ └── schema │ │ │ ├── ctf_plugin.json │ │ │ ├── ctf_status_msg.json │ │ │ └── ctf_workspace.json │ ├── sample_editor_workspace.json │ ├── src │ │ ├── app │ │ │ └── ui │ │ │ │ ├── FilePane.tsx │ │ │ │ ├── PaneHeader.tsx │ │ │ │ ├── editor │ │ │ │ ├── CtfFileEditor.tsx │ │ │ │ └── components │ │ │ │ │ ├── AutoCompleteField.tsx │ │ │ │ │ ├── Command.tsx │ │ │ │ │ ├── CommandOrFunctionCall.tsx │ │ │ │ │ ├── Comparison.tsx │ │ │ │ │ ├── Event.tsx │ │ │ │ │ ├── FunctionCall.tsx │ │ │ │ │ ├── FunctionDefinition.tsx │ │ │ │ │ ├── FunctionParameters.tsx │ │ │ │ │ ├── LibraryPane.tsx │ │ │ │ │ ├── TestCase.tsx │ │ │ │ │ └── ctf-file-editor-utils.tsx │ │ │ │ ├── home │ │ │ │ ├── HomePresenter.ts │ │ │ │ └── HomeView.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── runstatus │ │ │ │ ├── RunStatusPresenter.ts │ │ │ │ ├── RunStatusView.tsx │ │ │ │ └── StatusIcon.tsx │ │ │ │ └── util │ │ │ │ ├── ChooseFolder.ts │ │ │ │ └── ChooseJsonFile.ts │ │ ├── domain │ │ │ ├── builders │ │ │ │ ├── BuildEmptyCommand.ts │ │ │ │ ├── BuildEmptyCtfFile.ts │ │ │ │ ├── BuildEmptyFunctionCall.ts │ │ │ │ └── MakeEmptyArgument.ts │ │ │ ├── editor-actions │ │ │ │ ├── FindCommandInPlugins.ts │ │ │ │ ├── RenameFunction.ts │ │ │ │ ├── ResolveAllAvailableFunctions.ts │ │ │ │ └── ResolveFunctions.ts │ │ │ ├── exporters │ │ │ │ └── SaveProjectFile.ts │ │ │ ├── file-util │ │ │ │ ├── CreateFolder.ts │ │ │ │ ├── DeleteFiles.ts │ │ │ │ ├── FindJsonFiles.ts │ │ │ │ ├── LoadJsonFile.ts │ │ │ │ └── SaveJsonFile.ts │ │ │ ├── jsonclone.ts │ │ │ ├── loaders │ │ │ │ ├── LoadPluginInstructions.ts │ │ │ │ ├── LoadProjectFile.ts │ │ │ │ ├── LoadVehicleData.ts │ │ │ │ ├── OpenWorkspace.ts │ │ │ │ ├── UsePluginDir.ts │ │ │ │ ├── UseProjectDir.ts │ │ │ │ └── UseVehicleDataDir.ts │ │ │ └── run │ │ │ │ ├── CtfScriptRunner.ts │ │ │ │ └── RunStatusListener.ts │ │ ├── electron │ │ │ └── electron.ts │ │ └── model │ │ │ ├── ccdd-json.ts │ │ │ ├── ctf-engine.ts │ │ │ ├── ctf-file.ts │ │ │ ├── ctf-plugin.ts │ │ │ ├── editing-context.ts │ │ │ ├── tree.ts │ │ │ └── vehicle-data.ts │ ├── tsconfig.json │ ├── webpack.config.base.js │ ├── webpack.config.prod.js │ └── webpack.config.server.js ├── re_order.py ├── rmchars.pl └── schema_validator │ ├── ccsds_validator.py │ ├── schemas │ ├── CCSDS_Telemetry_Export.json │ ├── Input_Script.json │ ├── core.ctf.json │ ├── ctf_input_request_msg.json │ ├── ctf_plugin.json │ ├── ctf_status_msg.json │ └── typedefs.json │ └── script_validator.py ├── unit_tests ├── __init__.py ├── conftest.py ├── lib │ ├── __init__.py │ ├── conftest.py │ ├── readers │ │ ├── __init__.py │ │ └── test_json_script_reader.py │ ├── test_args_validation.py │ ├── test_ctf_global.py │ ├── test_ctf_utility.py │ ├── test_db_manager.py │ ├── test_db_table_manager.py │ ├── test_event_types.py │ ├── test_exceptions.py │ ├── test_ftp_interface.py │ ├── test_logger.py │ ├── test_plugin_manager.py │ ├── test_script_manager.py │ ├── test_status_manager.py │ ├── test_test.py │ ├── test_test_script.py │ ├── test_time_interface.py │ └── test_xmltodict.py └── plugins │ ├── __init__.py │ ├── ccsds_plugin │ ├── __init__.py │ └── tests │ ├── cfs │ ├── __init__.py │ └── tests │ ├── control_flow_plugin │ ├── __init__.py │ └── tests │ ├── example_plugin │ ├── __init__.py │ └── tests │ ├── ssh │ ├── __init__.py │ └── tests │ ├── trick_plugin │ └── tests │ ├── userio_plugin │ ├── __init__.py │ └── tests │ ├── validation_plugin │ ├── __init__.py │ └── tests │ └── variable_plugin │ ├── __init__.py │ └── tests └── vv_tests ├── __init__.py ├── configs ├── ci_vv_lx1_config.ini ├── ci_vv_lx1_lx2_config.ini └── ctf_vv_config.ini ├── plugins ├── __init__.py └── vv_plugin │ ├── __init__.py │ └── vv_plugin.py └── scripts ├── CTF_VV_01.json ├── CTF_VV_02.json ├── CTF_VV_03.json ├── CTF_VV_04.json ├── CTF_VV_05.json ├── CTF_VV_07.json ├── CTF_VV_08.json ├── CTF_VV_09.json ├── CTF_VV_10.json ├── CTF_VV_11.json ├── CTF_VV_12.json ├── CTF_VV_13.json ├── CTF_VV_14.json ├── CTF_VV_15.json ├── CTF_VV_16.json ├── CTF_VV_17.json ├── CTF_VV_18.json ├── CTF_VV_19.json ├── CTF_VV_26.json ├── CTF_VV_27.json ├── CTF_VV_28.json ├── CTF_VV_29.json ├── CTF_VV_32.json ├── CTF_VV_StartCfsEnableOutput.json ├── CTF_VV_StopCfs.json ├── ReadMe.md ├── StartCfsFunction.json └── ci_pass ├── CTF_VV_01.json ├── CTF_VV_02.json ├── CTF_VV_03.json ├── CTF_VV_07.json ├── CTF_VV_08.json ├── CTF_VV_09.json ├── CTF_VV_13.json ├── CTF_VV_26.json ├── CTF_VV_27.json ├── CTF_VV_28.json └── CTF_VV_29.json /.ctf_coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/.ctf_coveragerc -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/.pylintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/README.md -------------------------------------------------------------------------------- /activate_ctf_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/activate_ctf_env.sh -------------------------------------------------------------------------------- /configs/ci_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/configs/ci_config.ini -------------------------------------------------------------------------------- /configs/default_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/configs/default_config.ini -------------------------------------------------------------------------------- /configs/example_lx1_lx2_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/configs/example_lx1_lx2_config.ini -------------------------------------------------------------------------------- /core_plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/README.md -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/ccsds_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/ccsds_interface.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/ccsds_packet_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/ccsds_packet_interface.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/ccsds_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/ccsds_plugin.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/ccsds_primary_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/ccsds_primary_header.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/cfe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/cfe/ccsds_secondary_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/cfe/ccsds_secondary_header.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/cfe/ccsds_v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/cfe/ccsds_v1/ccsds_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/cfe/ccsds_v1/ccsds_v1.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/cfe/ccsds_v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/cfe/ccsds_v2/ccsds_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/cfe/ccsds_v2/ccsds_v2.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/readers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/readers/ccdd_export_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/readers/ccdd_export_reader.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/readers/command_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/readers/command_builder.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/cfe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/cfe/ccsds_v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/cfe/ccsds_v1/test_ccsds_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/tests/cfe/ccsds_v1/test_ccsds_v1.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/cfe/ccsds_v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/cfe/ccsds_v2/test_ccsds_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/tests/cfe/ccsds_v2/test_ccsds_v2.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/cfe/test_ccsds_secondary_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/tests/cfe/test_ccsds_secondary_header.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/tests/conftest.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/readers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/readers/test_ccdd_export_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/tests/readers/test_ccdd_export_reader.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/readers/test_command_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/tests/readers/test_command_builder.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/test_ccsds_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/tests/test_ccsds_interface.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/test_ccsds_packet_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/tests/test_ccsds_packet_interface.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/test_ccsds_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/tests/test_ccsds_plugin.py -------------------------------------------------------------------------------- /core_plugins/ccsds_plugin/tests/test_ccsds_primary_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ccsds_plugin/tests/test_ccsds_primary_header.py -------------------------------------------------------------------------------- /core_plugins/cfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/README.md -------------------------------------------------------------------------------- /core_plugins/cfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/cfs/cfs_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/cfs_config.py -------------------------------------------------------------------------------- /core_plugins/cfs/cfs_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/cfs_plugin.py -------------------------------------------------------------------------------- /core_plugins/cfs/cfs_time_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/cfs_time_manager.py -------------------------------------------------------------------------------- /core_plugins/cfs/pycfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/cfs/pycfs/cfs_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/pycfs/cfs_controllers.py -------------------------------------------------------------------------------- /core_plugins/cfs/pycfs/cfs_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/pycfs/cfs_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/pycfs/cfs_interface_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/pycfs/cfs_interface_utility.py -------------------------------------------------------------------------------- /core_plugins/cfs/pycfs/command_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/pycfs/command_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/pycfs/local_cfs_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/pycfs/local_cfs_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/pycfs/output_app_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/pycfs/output_app_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/pycfs/remote_cfs_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/pycfs/remote_cfs_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/pycfs/socket_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/pycfs/socket_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/pycfs/tlm_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/pycfs/tlm_listener.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/cfs/tests/pycfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/cfs/tests/pycfs/test_cfs_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/pycfs/test_cfs_controllers.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/pycfs/test_cfs_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/pycfs/test_cfs_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/pycfs/test_cfs_interface_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/pycfs/test_cfs_interface_utility.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/pycfs/test_command_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/pycfs/test_command_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/pycfs/test_local_cfs_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/pycfs/test_local_cfs_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/pycfs/test_output_app_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/pycfs/test_output_app_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/pycfs/test_remote_cfs_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/pycfs/test_remote_cfs_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/pycfs/test_socket_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/pycfs/test_socket_interface.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/pycfs/test_tlm_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/pycfs/test_tlm_listener.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/test_cfs_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/test_cfs_config.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/test_cfs_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/test_cfs_plugin.py -------------------------------------------------------------------------------- /core_plugins/cfs/tests/test_cfs_time_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/cfs/tests/test_cfs_time_manager.py -------------------------------------------------------------------------------- /core_plugins/control_flow_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/control_flow_plugin/README.md -------------------------------------------------------------------------------- /core_plugins/control_flow_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/control_flow_plugin/control_flow_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/control_flow_plugin/control_flow_plugin.py -------------------------------------------------------------------------------- /core_plugins/control_flow_plugin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/control_flow_plugin/tests/test_control_flow_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/control_flow_plugin/tests/test_control_flow_plugin.py -------------------------------------------------------------------------------- /core_plugins/example_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/example_plugin/README.md -------------------------------------------------------------------------------- /core_plugins/example_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/example_plugin/example_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/example_plugin/example_plugin.py -------------------------------------------------------------------------------- /core_plugins/example_plugin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/example_plugin/tests/test_example_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/example_plugin/tests/test_example_plugin.py -------------------------------------------------------------------------------- /core_plugins/info/CCSDS Plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/info/CCSDS Plugin.json -------------------------------------------------------------------------------- /core_plugins/info/CFS Plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/info/CFS Plugin.json -------------------------------------------------------------------------------- /core_plugins/info/ControlFlow Plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/info/ControlFlow Plugin.json -------------------------------------------------------------------------------- /core_plugins/info/ExamplePlugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/info/ExamplePlugin.json -------------------------------------------------------------------------------- /core_plugins/info/SshPlugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/info/SshPlugin.json -------------------------------------------------------------------------------- /core_plugins/info/TrickPlugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/info/TrickPlugin.json -------------------------------------------------------------------------------- /core_plugins/info/UserIOPlugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/info/UserIOPlugin.json -------------------------------------------------------------------------------- /core_plugins/info/ValidationPlugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/info/ValidationPlugin.json -------------------------------------------------------------------------------- /core_plugins/info/VariablePlugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/info/VariablePlugin.json -------------------------------------------------------------------------------- /core_plugins/ssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ssh/README.md -------------------------------------------------------------------------------- /core_plugins/ssh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ssh/ssh_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ssh/ssh_plugin.py -------------------------------------------------------------------------------- /core_plugins/ssh/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/ssh/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ssh/tests/conftest.py -------------------------------------------------------------------------------- /core_plugins/ssh/tests/test_ssh_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/ssh/tests/test_ssh_plugin.py -------------------------------------------------------------------------------- /core_plugins/trick_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/trick_plugin/README.md -------------------------------------------------------------------------------- /core_plugins/trick_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/trick_plugin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/trick_plugin/tests/test_trick_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/trick_plugin/tests/test_trick_plugin.py -------------------------------------------------------------------------------- /core_plugins/trick_plugin/trick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/trick_plugin/trick/LICENSE -------------------------------------------------------------------------------- /core_plugins/trick_plugin/trick/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/trick_plugin/trick/variable_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/trick_plugin/trick/variable_server.py -------------------------------------------------------------------------------- /core_plugins/trick_plugin/trick_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/trick_plugin/trick_plugin.py -------------------------------------------------------------------------------- /core_plugins/userio_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/userio_plugin/README.md -------------------------------------------------------------------------------- /core_plugins/userio_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/userio_plugin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/userio_plugin/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/userio_plugin/tests/conftest.py -------------------------------------------------------------------------------- /core_plugins/userio_plugin/tests/test_userio_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/userio_plugin/tests/test_userio_plugin.py -------------------------------------------------------------------------------- /core_plugins/userio_plugin/userio_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/userio_plugin/userio_plugin.py -------------------------------------------------------------------------------- /core_plugins/validation_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/validation_plugin/README.md -------------------------------------------------------------------------------- /core_plugins/validation_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/validation_plugin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/validation_plugin/tests/evs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/validation_plugin/tests/evs.bin -------------------------------------------------------------------------------- /core_plugins/validation_plugin/tests/test_validation_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/validation_plugin/tests/test_validation_plugin.py -------------------------------------------------------------------------------- /core_plugins/validation_plugin/validation_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/validation_plugin/validation_plugin.py -------------------------------------------------------------------------------- /core_plugins/variable_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/variable_plugin/README.md -------------------------------------------------------------------------------- /core_plugins/variable_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/variable_plugin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_plugins/variable_plugin/tests/test_variable_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/variable_plugin/tests/test_variable_plugin.py -------------------------------------------------------------------------------- /core_plugins/variable_plugin/variable_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/core_plugins/variable_plugin/variable_plugin.py -------------------------------------------------------------------------------- /ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/ctf -------------------------------------------------------------------------------- /example_scripts/Example_Function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/Example_Function.json -------------------------------------------------------------------------------- /example_scripts/Nested_Function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/Nested_Function.json -------------------------------------------------------------------------------- /example_scripts/ReadMe.md: -------------------------------------------------------------------------------- 1 | Most sample CTF scripts are moved to functional_tests directory. 2 | -------------------------------------------------------------------------------- /example_scripts/Test_CTF_Nested_Function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/Test_CTF_Nested_Function.json -------------------------------------------------------------------------------- /example_scripts/config_required/CFS_LX1_Registered_Config_Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/config_required/CFS_LX1_Registered_Config_Test.json -------------------------------------------------------------------------------- /example_scripts/config_required/LX1_LX2_Basic_Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/config_required/LX1_LX2_Basic_Example.json -------------------------------------------------------------------------------- /example_scripts/config_required/Local_SSH_Registered_Config_Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/config_required/Local_SSH_Registered_Config_Test.json -------------------------------------------------------------------------------- /example_scripts/config_required/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/config_required/README.md -------------------------------------------------------------------------------- /example_scripts/config_required/Test_CTF_CFS_Restart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/config_required/Test_CTF_CFS_Restart.json -------------------------------------------------------------------------------- /example_scripts/example_failing_tests/Continuous_Verification_Failing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/example_failing_tests/Continuous_Verification_Failing.json -------------------------------------------------------------------------------- /example_scripts/example_failing_tests/Invalid_Instruction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/example_failing_tests/Invalid_Instruction.json -------------------------------------------------------------------------------- /example_scripts/example_failing_tests/Test_CTF_Advanced_Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/example_failing_tests/Test_CTF_Advanced_Example.json -------------------------------------------------------------------------------- /example_scripts/ssh_tests/SSH_Cfs_Basic_Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/ssh_tests/SSH_Cfs_Basic_Example.json -------------------------------------------------------------------------------- /example_scripts/ssh_tests/SSH_Cfs_Build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/ssh_tests/SSH_Cfs_Build.json -------------------------------------------------------------------------------- /example_scripts/ssh_tests/SSH_Run_Instructions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/ssh_tests/SSH_Run_Instructions.json -------------------------------------------------------------------------------- /example_scripts/trick_tests/Test_CTF_Trick_Plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/trick_tests/Test_CTF_Trick_Plugin.json -------------------------------------------------------------------------------- /example_scripts/trick_tests/trick_killsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/trick_tests/trick_killsim.sh -------------------------------------------------------------------------------- /example_scripts/validation_tests/Validate_CCSDS_Exports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/example_scripts/validation_tests/Validate_CCSDS_Exports.json -------------------------------------------------------------------------------- /external/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/external/ReadMe.txt -------------------------------------------------------------------------------- /functional_tests/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/ReadMe.md -------------------------------------------------------------------------------- /functional_tests/Test_StartCfsEnableOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/Test_StartCfsEnableOutput.json -------------------------------------------------------------------------------- /functional_tests/Test_StopCfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/Test_StopCfs.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/README.md -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/app_tests/CiFunctionTests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/app_tests/CiFunctionTests.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/app_tests/SchFunctionTests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/app_tests/SchFunctionTests.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/app_tests/ToFunctionTests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/app_tests/ToFunctionTests.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/cfe_tests/CfeEsTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/cfe_tests/CfeEsTest.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/cfe_tests/CfeEvsTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/cfe_tests/CfeEvsTest.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/cfe_tests/CfeSbTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/cfe_tests/CfeSbTest.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/cfe_tests/CfeTblTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/cfe_tests/CfeTblTest.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/cfe_tests/CfeTimeTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/cfe_tests/CfeTimeTest.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/libs/CfeEsFunctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/libs/CfeEsFunctions.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/libs/CfeEvsFunctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/libs/CfeEvsFunctions.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/libs/CfeSbFunctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/libs/CfeSbFunctions.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/libs/CfeTblFunctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/libs/CfeTblFunctions.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/libs/CfeTimeFunctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/libs/CfeTimeFunctions.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/libs/CiFunctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/libs/CiFunctions.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/libs/SchFunctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/libs/SchFunctions.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/libs/ToFunctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/libs/ToFunctions.json -------------------------------------------------------------------------------- /functional_tests/cfe_6_7_tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/cfe_6_7_tests/run_tests.sh -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_All_Instructions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_All_Instructions.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_Basic_Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_Basic_Example.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_CFE_Basic_Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_CFE_Basic_Example.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_Check_Event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_Check_Event.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_Conditional_Branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_Conditional_Branch.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_Control_Flow_Loop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_Control_Flow_Loop.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_EVS_Log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_EVS_Log.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_Example_Plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_Example_Plugin.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_If_Func.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_If_Func.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_Intermediate_Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_Intermediate_Example.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_Loop_Tlmvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_Loop_Tlmvalue.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_Userio_Plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_Userio_Plugin.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_Variable_Plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_Variable_Plugin.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_CTF_Verify_Instruction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_CTF_Verify_Instruction.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/Test_Continuous_Verification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/Test_Continuous_Verification.json -------------------------------------------------------------------------------- /functional_tests/plugin_tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/functional_tests/plugin_tests/run_tests.sh -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/args_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/args_validation.py -------------------------------------------------------------------------------- /lib/ctf_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/ctf_global.py -------------------------------------------------------------------------------- /lib/ctf_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/ctf_utility.py -------------------------------------------------------------------------------- /lib/db_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/db_manager.py -------------------------------------------------------------------------------- /lib/db_table_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/db_table_manager.py -------------------------------------------------------------------------------- /lib/event_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/event_types.py -------------------------------------------------------------------------------- /lib/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/exceptions.py -------------------------------------------------------------------------------- /lib/ftp_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/ftp_interface.py -------------------------------------------------------------------------------- /lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/logger.py -------------------------------------------------------------------------------- /lib/patchwork/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | include = patchwork/* 4 | -------------------------------------------------------------------------------- /lib/patchwork/.gitignore: -------------------------------------------------------------------------------- 1 | docs/_build 2 | .cache 3 | .coverage 4 | -------------------------------------------------------------------------------- /lib/patchwork/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/.travis.yml -------------------------------------------------------------------------------- /lib/patchwork/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/LICENSE -------------------------------------------------------------------------------- /lib/patchwork/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/README.rst -------------------------------------------------------------------------------- /lib/patchwork/dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/dev-requirements.txt -------------------------------------------------------------------------------- /lib/patchwork/docs/api/environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/docs/api/environment.rst -------------------------------------------------------------------------------- /lib/patchwork/docs/api/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/docs/api/files.rst -------------------------------------------------------------------------------- /lib/patchwork/docs/api/info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/docs/api/info.rst -------------------------------------------------------------------------------- /lib/patchwork/docs/api/packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/docs/api/packages.rst -------------------------------------------------------------------------------- /lib/patchwork/docs/api/transfers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/docs/api/transfers.rst -------------------------------------------------------------------------------- /lib/patchwork/docs/api/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/docs/api/util.rst -------------------------------------------------------------------------------- /lib/patchwork/docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/docs/changelog.rst -------------------------------------------------------------------------------- /lib/patchwork/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/docs/conf.py -------------------------------------------------------------------------------- /lib/patchwork/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/docs/index.rst -------------------------------------------------------------------------------- /lib/patchwork/patchwork/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/patchwork/patchwork/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/patchwork/_version.py -------------------------------------------------------------------------------- /lib/patchwork/patchwork/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/patchwork/environment.py -------------------------------------------------------------------------------- /lib/patchwork/patchwork/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/patchwork/files.py -------------------------------------------------------------------------------- /lib/patchwork/patchwork/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/patchwork/info.py -------------------------------------------------------------------------------- /lib/patchwork/patchwork/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/patchwork/packages/__init__.py -------------------------------------------------------------------------------- /lib/patchwork/patchwork/transfers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/patchwork/transfers.py -------------------------------------------------------------------------------- /lib/patchwork/patchwork/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/patchwork/util.py -------------------------------------------------------------------------------- /lib/patchwork/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/setup.cfg -------------------------------------------------------------------------------- /lib/patchwork/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/setup.py -------------------------------------------------------------------------------- /lib/patchwork/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/tasks.py -------------------------------------------------------------------------------- /lib/patchwork/tests/conftest.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | from fabric.testing.fixtures import cxn 3 | -------------------------------------------------------------------------------- /lib/patchwork/tests/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/tests/files.py -------------------------------------------------------------------------------- /lib/patchwork/tests/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/tests/info.py -------------------------------------------------------------------------------- /lib/patchwork/tests/transfers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/tests/transfers.py -------------------------------------------------------------------------------- /lib/patchwork/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/patchwork/tests/util.py -------------------------------------------------------------------------------- /lib/plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/plugin_manager.py -------------------------------------------------------------------------------- /lib/readers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/readers/__init__.py -------------------------------------------------------------------------------- /lib/readers/json_script_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/readers/json_script_reader.py -------------------------------------------------------------------------------- /lib/script_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/script_manager.py -------------------------------------------------------------------------------- /lib/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/status.py -------------------------------------------------------------------------------- /lib/status_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/status_manager.py -------------------------------------------------------------------------------- /lib/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/test.py -------------------------------------------------------------------------------- /lib/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/test_script.py -------------------------------------------------------------------------------- /lib/time_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/time_interface.py -------------------------------------------------------------------------------- /lib/xmltodict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/lib/xmltodict.py -------------------------------------------------------------------------------- /prj_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/prj_plugins/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_editor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/run_editor.sh -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/run_tests.sh -------------------------------------------------------------------------------- /setup_ctf_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/setup_ctf_env.sh -------------------------------------------------------------------------------- /setup_editor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/setup_editor.sh -------------------------------------------------------------------------------- /tools/ctf_ui/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | package-lock.json 4 | .idea/ -------------------------------------------------------------------------------- /tools/ctf_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/README.md -------------------------------------------------------------------------------- /tools/ctf_ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/package.json -------------------------------------------------------------------------------- /tools/ctf_ui/resources/schema/ctf_plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/resources/schema/ctf_plugin.json -------------------------------------------------------------------------------- /tools/ctf_ui/resources/schema/ctf_status_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/resources/schema/ctf_status_msg.json -------------------------------------------------------------------------------- /tools/ctf_ui/resources/schema/ctf_workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/resources/schema/ctf_workspace.json -------------------------------------------------------------------------------- /tools/ctf_ui/sample_editor_workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/sample_editor_workspace.json -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/FilePane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/FilePane.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/PaneHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/PaneHeader.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/CtfFileEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/CtfFileEditor.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/AutoCompleteField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/AutoCompleteField.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/Command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/Command.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/CommandOrFunctionCall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/CommandOrFunctionCall.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/Comparison.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/Comparison.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/Event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/Event.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/FunctionCall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/FunctionCall.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/FunctionDefinition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/FunctionDefinition.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/FunctionParameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/FunctionParameters.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/LibraryPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/LibraryPane.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/TestCase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/TestCase.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/editor/components/ctf-file-editor-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/editor/components/ctf-file-editor-utils.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/home/HomePresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/home/HomePresenter.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/home/HomeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/home/HomeView.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/index.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/runstatus/RunStatusPresenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/runstatus/RunStatusPresenter.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/runstatus/RunStatusView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/runstatus/RunStatusView.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/runstatus/StatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/runstatus/StatusIcon.tsx -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/util/ChooseFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/util/ChooseFolder.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/app/ui/util/ChooseJsonFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/app/ui/util/ChooseJsonFile.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/builders/BuildEmptyCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/builders/BuildEmptyCommand.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/builders/BuildEmptyCtfFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/builders/BuildEmptyCtfFile.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/builders/BuildEmptyFunctionCall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/builders/BuildEmptyFunctionCall.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/builders/MakeEmptyArgument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/builders/MakeEmptyArgument.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/editor-actions/FindCommandInPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/editor-actions/FindCommandInPlugins.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/editor-actions/RenameFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/editor-actions/RenameFunction.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/editor-actions/ResolveAllAvailableFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/editor-actions/ResolveAllAvailableFunctions.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/editor-actions/ResolveFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/editor-actions/ResolveFunctions.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/exporters/SaveProjectFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/exporters/SaveProjectFile.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/file-util/CreateFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/file-util/CreateFolder.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/file-util/DeleteFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/file-util/DeleteFiles.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/file-util/FindJsonFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/file-util/FindJsonFiles.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/file-util/LoadJsonFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/file-util/LoadJsonFile.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/file-util/SaveJsonFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/file-util/SaveJsonFile.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/jsonclone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/jsonclone.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/loaders/LoadPluginInstructions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/loaders/LoadPluginInstructions.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/loaders/LoadProjectFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/loaders/LoadProjectFile.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/loaders/LoadVehicleData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/loaders/LoadVehicleData.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/loaders/OpenWorkspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/loaders/OpenWorkspace.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/loaders/UsePluginDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/loaders/UsePluginDir.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/loaders/UseProjectDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/loaders/UseProjectDir.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/loaders/UseVehicleDataDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/loaders/UseVehicleDataDir.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/run/CtfScriptRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/run/CtfScriptRunner.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/domain/run/RunStatusListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/domain/run/RunStatusListener.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/electron/electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/electron/electron.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/model/ccdd-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/model/ccdd-json.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/model/ctf-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/model/ctf-engine.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/model/ctf-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/model/ctf-file.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/model/ctf-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/model/ctf-plugin.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/model/editing-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/model/editing-context.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/model/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/model/tree.ts -------------------------------------------------------------------------------- /tools/ctf_ui/src/model/vehicle-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/src/model/vehicle-data.ts -------------------------------------------------------------------------------- /tools/ctf_ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/tsconfig.json -------------------------------------------------------------------------------- /tools/ctf_ui/webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/webpack.config.base.js -------------------------------------------------------------------------------- /tools/ctf_ui/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/webpack.config.prod.js -------------------------------------------------------------------------------- /tools/ctf_ui/webpack.config.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/ctf_ui/webpack.config.server.js -------------------------------------------------------------------------------- /tools/re_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/re_order.py -------------------------------------------------------------------------------- /tools/rmchars.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/rmchars.pl -------------------------------------------------------------------------------- /tools/schema_validator/ccsds_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/schema_validator/ccsds_validator.py -------------------------------------------------------------------------------- /tools/schema_validator/schemas/CCSDS_Telemetry_Export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/schema_validator/schemas/CCSDS_Telemetry_Export.json -------------------------------------------------------------------------------- /tools/schema_validator/schemas/Input_Script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/schema_validator/schemas/Input_Script.json -------------------------------------------------------------------------------- /tools/schema_validator/schemas/core.ctf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/schema_validator/schemas/core.ctf.json -------------------------------------------------------------------------------- /tools/schema_validator/schemas/ctf_input_request_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/schema_validator/schemas/ctf_input_request_msg.json -------------------------------------------------------------------------------- /tools/schema_validator/schemas/ctf_plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/schema_validator/schemas/ctf_plugin.json -------------------------------------------------------------------------------- /tools/schema_validator/schemas/ctf_status_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/schema_validator/schemas/ctf_status_msg.json -------------------------------------------------------------------------------- /tools/schema_validator/schemas/typedefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/schema_validator/schemas/typedefs.json -------------------------------------------------------------------------------- /tools/schema_validator/script_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/tools/schema_validator/script_validator.py -------------------------------------------------------------------------------- /unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/conftest.py -------------------------------------------------------------------------------- /unit_tests/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/lib/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/conftest.py -------------------------------------------------------------------------------- /unit_tests/lib/readers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/lib/readers/test_json_script_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/readers/test_json_script_reader.py -------------------------------------------------------------------------------- /unit_tests/lib/test_args_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_args_validation.py -------------------------------------------------------------------------------- /unit_tests/lib/test_ctf_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_ctf_global.py -------------------------------------------------------------------------------- /unit_tests/lib/test_ctf_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_ctf_utility.py -------------------------------------------------------------------------------- /unit_tests/lib/test_db_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_db_manager.py -------------------------------------------------------------------------------- /unit_tests/lib/test_db_table_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_db_table_manager.py -------------------------------------------------------------------------------- /unit_tests/lib/test_event_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_event_types.py -------------------------------------------------------------------------------- /unit_tests/lib/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_exceptions.py -------------------------------------------------------------------------------- /unit_tests/lib/test_ftp_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_ftp_interface.py -------------------------------------------------------------------------------- /unit_tests/lib/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_logger.py -------------------------------------------------------------------------------- /unit_tests/lib/test_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_plugin_manager.py -------------------------------------------------------------------------------- /unit_tests/lib/test_script_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_script_manager.py -------------------------------------------------------------------------------- /unit_tests/lib/test_status_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_status_manager.py -------------------------------------------------------------------------------- /unit_tests/lib/test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_test.py -------------------------------------------------------------------------------- /unit_tests/lib/test_test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_test_script.py -------------------------------------------------------------------------------- /unit_tests/lib/test_time_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_time_interface.py -------------------------------------------------------------------------------- /unit_tests/lib/test_xmltodict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/unit_tests/lib/test_xmltodict.py -------------------------------------------------------------------------------- /unit_tests/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/plugins/ccsds_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/plugins/ccsds_plugin/tests: -------------------------------------------------------------------------------- 1 | ../../../core_plugins/ccsds_plugin/tests/ -------------------------------------------------------------------------------- /unit_tests/plugins/cfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/plugins/cfs/tests: -------------------------------------------------------------------------------- 1 | ../../../core_plugins/cfs/tests/ -------------------------------------------------------------------------------- /unit_tests/plugins/control_flow_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/plugins/control_flow_plugin/tests: -------------------------------------------------------------------------------- 1 | ../../../core_plugins/control_flow_plugin/tests/ -------------------------------------------------------------------------------- /unit_tests/plugins/example_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/plugins/example_plugin/tests: -------------------------------------------------------------------------------- 1 | ../../../core_plugins/example_plugin/tests/ -------------------------------------------------------------------------------- /unit_tests/plugins/ssh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/plugins/ssh/tests: -------------------------------------------------------------------------------- 1 | ../../../core_plugins/ssh/tests/ -------------------------------------------------------------------------------- /unit_tests/plugins/trick_plugin/tests: -------------------------------------------------------------------------------- 1 | ../../../core_plugins/trick_plugin/tests/ -------------------------------------------------------------------------------- /unit_tests/plugins/userio_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/plugins/userio_plugin/tests: -------------------------------------------------------------------------------- 1 | ../../../core_plugins/userio_plugin/tests/ -------------------------------------------------------------------------------- /unit_tests/plugins/validation_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/plugins/validation_plugin/tests: -------------------------------------------------------------------------------- 1 | ../../../core_plugins/validation_plugin/tests/ -------------------------------------------------------------------------------- /unit_tests/plugins/variable_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/plugins/variable_plugin/tests: -------------------------------------------------------------------------------- 1 | ../../../core_plugins/variable_plugin/tests/ -------------------------------------------------------------------------------- /vv_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vv_tests/configs/ci_vv_lx1_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/configs/ci_vv_lx1_config.ini -------------------------------------------------------------------------------- /vv_tests/configs/ci_vv_lx1_lx2_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/configs/ci_vv_lx1_lx2_config.ini -------------------------------------------------------------------------------- /vv_tests/configs/ctf_vv_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/configs/ctf_vv_config.ini -------------------------------------------------------------------------------- /vv_tests/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vv_tests/plugins/vv_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vv_tests/plugins/vv_plugin/vv_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/plugins/vv_plugin/vv_plugin.py -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_01.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_02.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_03.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_04.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_05.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_07.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_08.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_09.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_10.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_11.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_12.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_13.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_14.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_15.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_16.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_17.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_18.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_19.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_26.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_27.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_28.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_29.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_32.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_StartCfsEnableOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_StartCfsEnableOutput.json -------------------------------------------------------------------------------- /vv_tests/scripts/CTF_VV_StopCfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/CTF_VV_StopCfs.json -------------------------------------------------------------------------------- /vv_tests/scripts/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/ReadMe.md -------------------------------------------------------------------------------- /vv_tests/scripts/StartCfsFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CTF/HEAD/vv_tests/scripts/StartCfsFunction.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_01.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_01.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_02.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_02.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_03.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_03.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_07.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_07.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_08.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_08.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_09.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_09.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_13.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_13.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_26.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_26.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_27.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_27.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_28.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_28.json -------------------------------------------------------------------------------- /vv_tests/scripts/ci_pass/CTF_VV_29.json: -------------------------------------------------------------------------------- 1 | ../CTF_VV_29.json --------------------------------------------------------------------------------