cuboid 0.0.0 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +0 -0
- data/Gemfile +22 -5
- data/LICENSE.md +22 -0
- data/README.md +158 -19
- data/Rakefile +56 -3
- data/config/paths.yml +15 -0
- data/cuboid.gemspec +61 -23
- data/lib/cuboid/application/parts/data.rb +18 -0
- data/lib/cuboid/application/parts/report.rb +29 -0
- data/lib/cuboid/application/parts/state.rb +274 -0
- data/lib/cuboid/application/runtime.rb +25 -0
- data/lib/cuboid/application.rb +326 -0
- data/lib/cuboid/banner.rb +13 -0
- data/lib/cuboid/data/application.rb +52 -0
- data/lib/cuboid/data.rb +86 -0
- data/lib/cuboid/error.rb +9 -0
- data/lib/cuboid/option_group.rb +129 -0
- data/lib/cuboid/option_groups/datastore.rb +23 -0
- data/lib/cuboid/option_groups/dispatcher.rb +38 -0
- data/lib/cuboid/option_groups/output.rb +14 -0
- data/lib/cuboid/option_groups/paths.rb +184 -0
- data/lib/cuboid/option_groups/report.rb +39 -0
- data/lib/cuboid/option_groups/rpc.rb +105 -0
- data/lib/cuboid/option_groups/scheduler.rb +27 -0
- data/lib/cuboid/option_groups/snapshot.rb +13 -0
- data/lib/cuboid/option_groups/system.rb +10 -0
- data/lib/cuboid/option_groups.rb +8 -0
- data/lib/cuboid/options.rb +254 -0
- data/lib/cuboid/processes/dispatchers.rb +140 -0
- data/lib/cuboid/processes/executables/base.rb +54 -0
- data/lib/cuboid/processes/executables/dispatcher.rb +5 -0
- data/lib/cuboid/processes/executables/instance.rb +12 -0
- data/lib/cuboid/processes/executables/rest_service.rb +13 -0
- data/lib/cuboid/processes/executables/scheduler.rb +5 -0
- data/lib/cuboid/processes/helpers/dispatchers.rb +23 -0
- data/lib/cuboid/processes/helpers/instances.rb +39 -0
- data/lib/cuboid/processes/helpers/processes.rb +23 -0
- data/lib/cuboid/processes/helpers/schedulers.rb +23 -0
- data/lib/cuboid/processes/helpers.rb +4 -0
- data/lib/cuboid/processes/instances.rb +203 -0
- data/lib/cuboid/processes/manager.rb +262 -0
- data/lib/cuboid/processes/schedulers.rb +128 -0
- data/lib/cuboid/processes.rb +13 -0
- data/lib/cuboid/report.rb +220 -0
- data/lib/cuboid/rest/server/instance_helpers.rb +99 -0
- data/lib/cuboid/rest/server/routes/dispatcher.rb +41 -0
- data/lib/cuboid/rest/server/routes/grid.rb +41 -0
- data/lib/cuboid/rest/server/routes/instances.rb +131 -0
- data/lib/cuboid/rest/server/routes/scheduler.rb +140 -0
- data/lib/cuboid/rest/server.rb +165 -0
- data/lib/cuboid/rpc/client/base.rb +58 -0
- data/lib/cuboid/rpc/client/dispatcher.rb +58 -0
- data/lib/cuboid/rpc/client/instance/service.rb +37 -0
- data/lib/cuboid/rpc/client/instance.rb +100 -0
- data/lib/cuboid/rpc/client/scheduler.rb +46 -0
- data/lib/cuboid/rpc/client.rb +3 -0
- data/lib/cuboid/rpc/serializer.rb +92 -0
- data/lib/cuboid/rpc/server/active_options.rb +38 -0
- data/lib/cuboid/rpc/server/application_wrapper.rb +138 -0
- data/lib/cuboid/rpc/server/base.rb +63 -0
- data/lib/cuboid/rpc/server/dispatcher/node.rb +247 -0
- data/lib/cuboid/rpc/server/dispatcher/service.rb +145 -0
- data/lib/cuboid/rpc/server/dispatcher.rb +317 -0
- data/lib/cuboid/rpc/server/instance.rb +338 -0
- data/lib/cuboid/rpc/server/output.rb +92 -0
- data/lib/cuboid/rpc/server/scheduler.rb +482 -0
- data/lib/cuboid/ruby/array.rb +17 -0
- data/lib/cuboid/ruby/hash.rb +41 -0
- data/lib/cuboid/ruby/object.rb +32 -0
- data/lib/cuboid/ruby.rb +4 -0
- data/lib/cuboid/snapshot.rb +186 -0
- data/lib/cuboid/state/application.rb +309 -0
- data/lib/cuboid/state/options.rb +27 -0
- data/lib/cuboid/state.rb +94 -0
- data/lib/cuboid/support/buffer/autoflush.rb +61 -0
- data/lib/cuboid/support/buffer/base.rb +91 -0
- data/lib/cuboid/support/buffer.rb +3 -0
- data/lib/cuboid/support/cache/base.rb +226 -0
- data/lib/cuboid/support/cache/least_cost_replacement.rb +77 -0
- data/lib/cuboid/support/cache/least_recently_pushed.rb +21 -0
- data/lib/cuboid/support/cache/least_recently_used.rb +31 -0
- data/lib/cuboid/support/cache/preference.rb +31 -0
- data/lib/cuboid/support/cache/random_replacement.rb +20 -0
- data/lib/cuboid/support/cache.rb +7 -0
- data/lib/cuboid/support/crypto/rsa_aes_cbc.rb +86 -0
- data/lib/cuboid/support/crypto.rb +2 -0
- data/lib/cuboid/support/database/base.rb +177 -0
- data/lib/cuboid/support/database/categorized_queue.rb +195 -0
- data/lib/cuboid/support/database/hash.rb +300 -0
- data/lib/cuboid/support/database/queue.rb +149 -0
- data/lib/cuboid/support/database.rb +5 -0
- data/lib/cuboid/support/filter/base.rb +110 -0
- data/lib/cuboid/support/filter/set.rb +29 -0
- data/lib/cuboid/support/filter.rb +3 -0
- data/lib/cuboid/support/glob.rb +27 -0
- data/lib/cuboid/support/mixins/observable.rb +99 -0
- data/lib/cuboid/support/mixins/parts.rb +20 -0
- data/lib/cuboid/support/mixins/profiler.rb +93 -0
- data/lib/cuboid/support/mixins/spec_instances.rb +65 -0
- data/lib/cuboid/support/mixins/terminal.rb +57 -0
- data/lib/cuboid/support/mixins.rb +8 -0
- data/lib/cuboid/support.rb +11 -0
- data/lib/cuboid/system/platforms/linux.rb +26 -0
- data/lib/cuboid/system/platforms/mixins/unix.rb +46 -0
- data/lib/cuboid/system/platforms/osx.rb +25 -0
- data/lib/cuboid/system/platforms/windows.rb +81 -0
- data/lib/cuboid/system/platforms.rb +84 -0
- data/lib/cuboid/system/slots.rb +143 -0
- data/lib/cuboid/system.rb +119 -0
- data/lib/cuboid/ui/output.rb +52 -0
- data/lib/cuboid/ui/output_interface/abstract.rb +68 -0
- data/lib/cuboid/ui/output_interface/controls.rb +84 -0
- data/lib/cuboid/ui/output_interface/error_logging.rb +119 -0
- data/lib/cuboid/ui/output_interface/implemented.rb +58 -0
- data/lib/cuboid/ui/output_interface/personalization.rb +62 -0
- data/lib/cuboid/ui/output_interface.rb +43 -0
- data/lib/cuboid/utilities.rb +155 -0
- data/lib/cuboid/version.rb +4 -3
- data/lib/cuboid.rb +96 -4
- data/lib/version +1 -0
- data/logs/error-3207383.log +106 -0
- data/logs/error-3207482.log +106 -0
- data/logs/error-3208344.log +109 -0
- data/logs/error-3208460.log +106 -0
- data/logs/error-903730.log +105 -0
- data/logs/error-903846.log +105 -0
- data/logs/error-904783.log +108 -0
- data/logs/error-905101.log +105 -0
- data/logs/placeholder +0 -0
- data/spec/cuboid/application/parts/data_spec.rb +12 -0
- data/spec/cuboid/application/parts/report_spec.rb +6 -0
- data/spec/cuboid/application/parts/state_spec.rb +192 -0
- data/spec/cuboid/application/runtime_spec.rb +21 -0
- data/spec/cuboid/application_spec.rb +37 -0
- data/spec/cuboid/data/application_spec.rb +22 -0
- data/spec/cuboid/data_spec.rb +47 -0
- data/spec/cuboid/error_spec.rb +23 -0
- data/spec/cuboid/option_groups/datastore_spec.rb +54 -0
- data/spec/cuboid/option_groups/dispatcher_spec.rb +12 -0
- data/spec/cuboid/option_groups/output_spec.rb +11 -0
- data/spec/cuboid/option_groups/paths_spec.rb +184 -0
- data/spec/cuboid/option_groups/report_spec.rb +26 -0
- data/spec/cuboid/option_groups/rpc_spec.rb +53 -0
- data/spec/cuboid/option_groups/snapshot_spec.rb +26 -0
- data/spec/cuboid/option_groups/system.rb +12 -0
- data/spec/cuboid/options_spec.rb +218 -0
- data/spec/cuboid/report_spec.rb +221 -0
- data/spec/cuboid/rest/server_spec.rb +1205 -0
- data/spec/cuboid/rpc/client/base_spec.rb +151 -0
- data/spec/cuboid/rpc/client/dispatcher_spec.rb +13 -0
- data/spec/cuboid/rpc/client/instance_spec.rb +38 -0
- data/spec/cuboid/rpc/server/active_options_spec.rb +21 -0
- data/spec/cuboid/rpc/server/base_spec.rb +60 -0
- data/spec/cuboid/rpc/server/dispatcher/node_spec.rb +222 -0
- data/spec/cuboid/rpc/server/dispatcher/service_spec.rb +112 -0
- data/spec/cuboid/rpc/server/dispatcher_spec.rb +317 -0
- data/spec/cuboid/rpc/server/instance_spec.rb +307 -0
- data/spec/cuboid/rpc/server/output_spec.rb +32 -0
- data/spec/cuboid/rpc/server/scheduler_spec.rb +400 -0
- data/spec/cuboid/ruby/array_spec.rb +77 -0
- data/spec/cuboid/ruby/hash_spec.rb +63 -0
- data/spec/cuboid/ruby/object_spec.rb +22 -0
- data/spec/cuboid/snapshot_spec.rb +123 -0
- data/spec/cuboid/state/application_spec.rb +538 -0
- data/spec/cuboid/state/options_spec.rb +37 -0
- data/spec/cuboid/state_spec.rb +53 -0
- data/spec/cuboid/support/buffer/autoflush_spec.rb +78 -0
- data/spec/cuboid/support/buffer/base_spec.rb +193 -0
- data/spec/cuboid/support/cache/least_cost_replacement_spec.rb +61 -0
- data/spec/cuboid/support/cache/least_recently_pushed_spec.rb +90 -0
- data/spec/cuboid/support/cache/least_recently_used_spec.rb +80 -0
- data/spec/cuboid/support/cache/preference_spec.rb +37 -0
- data/spec/cuboid/support/cache/random_replacement_spec.rb +42 -0
- data/spec/cuboid/support/crypto/rsa_aes_cbc_spec.rb +28 -0
- data/spec/cuboid/support/database/categorized_queue_spec.rb +327 -0
- data/spec/cuboid/support/database/hash_spec.rb +204 -0
- data/spec/cuboid/support/database/scheduler_spec.rb +325 -0
- data/spec/cuboid/support/filter/set_spec.rb +19 -0
- data/spec/cuboid/support/glob_spec.rb +75 -0
- data/spec/cuboid/support/mixins/observable_spec.rb +95 -0
- data/spec/cuboid/system/platforms/linux_spec.rb +31 -0
- data/spec/cuboid/system/platforms/osx_spec.rb +32 -0
- data/spec/cuboid/system/platforms/windows_spec.rb +41 -0
- data/spec/cuboid/system/slots_spec.rb +202 -0
- data/spec/cuboid/system_spec.rb +105 -0
- data/spec/cuboid/utilities_spec.rb +131 -0
- data/spec/spec_helper.rb +46 -0
- data/spec/support/factories/placeholder +0 -0
- data/spec/support/factories/scan_report.rb +18 -0
- data/spec/support/fixtures/empty/placeholder +0 -0
- data/spec/support/fixtures/executables/node.rb +50 -0
- data/spec/support/fixtures/mock_app/test_service.rb +64 -0
- data/spec/support/fixtures/mock_app.rb +61 -0
- data/spec/support/fixtures/services/echo.rb +64 -0
- data/spec/support/helpers/framework.rb +3 -0
- data/spec/support/helpers/matchers.rb +5 -0
- data/spec/support/helpers/misc.rb +3 -0
- data/spec/support/helpers/paths.rb +15 -0
- data/spec/support/helpers/request_helpers.rb +38 -0
- data/spec/support/helpers/requires.rb +8 -0
- data/spec/support/helpers/resets.rb +52 -0
- data/spec/support/helpers/web_server.rb +15 -0
- data/spec/support/lib/factory.rb +107 -0
- data/spec/support/lib/web_server_client.rb +41 -0
- data/spec/support/lib/web_server_dispatcher.rb +25 -0
- data/spec/support/lib/web_server_manager.rb +118 -0
- data/spec/support/logs/Dispatcher - 3204062-27546.log +6 -0
- data/spec/support/logs/Dispatcher - 3207166-30195.log +6 -0
- data/spec/support/logs/Dispatcher - 3207418-16491.log +6 -0
- data/spec/support/logs/Dispatcher - 3207420-23797.log +6 -0
- data/spec/support/logs/Dispatcher - 3207424-64333.log +6 -0
- data/spec/support/logs/Dispatcher - 3207427-50621.log +10 -0
- data/spec/support/logs/Dispatcher - 3207429-15351.log +10 -0
- data/spec/support/logs/Dispatcher - 3207432-3685.log +10 -0
- data/spec/support/logs/Dispatcher - 3207436-43126.log +10 -0
- data/spec/support/logs/Dispatcher - 3207438-58131.log +10 -0
- data/spec/support/logs/Dispatcher - 3207440-32187.log +10 -0
- data/spec/support/logs/Dispatcher - 3207654-42085.log +6 -0
- data/spec/support/logs/Dispatcher - 3207769-16303.log +6 -0
- data/spec/support/logs/Dispatcher - 3207771-31196.log +6 -0
- data/spec/support/logs/Dispatcher - 3207773-53419.log +6 -0
- data/spec/support/logs/Dispatcher - 3207775-17015.log +6 -0
- data/spec/support/logs/Dispatcher - 3207787-56572.log +6 -0
- data/spec/support/logs/Dispatcher - 3207799-41227.log +6 -0
- data/spec/support/logs/Dispatcher - 3207815-49397.log +6 -0
- data/spec/support/logs/Dispatcher - 3207817-13826.log +6 -0
- data/spec/support/logs/Dispatcher - 3207819-46821.log +6 -0
- data/spec/support/logs/Dispatcher - 3207821-37991.log +6 -0
- data/spec/support/logs/Dispatcher - 3207825-52955.log +6 -0
- data/spec/support/logs/Dispatcher - 3207829-12122.log +6 -0
- data/spec/support/logs/Dispatcher - 3207831-58485.log +16 -0
- data/spec/support/logs/Dispatcher - 3207833-47083.log +14 -0
- data/spec/support/logs/Dispatcher - 3207837-53679.log +10 -0
- data/spec/support/logs/Dispatcher - 3207847-12037.log +16 -0
- data/spec/support/logs/Dispatcher - 3207852-64296.log +14 -0
- data/spec/support/logs/Dispatcher - 3207858-56473.log +10 -0
- data/spec/support/logs/Dispatcher - 3207864-26736.log +6 -0
- data/spec/support/logs/Dispatcher - 3207866-24113.log +6 -0
- data/spec/support/logs/Dispatcher - 3207870-6896.log +6 -0
- data/spec/support/logs/Dispatcher - 3207873-16434.log +6 -0
- data/spec/support/logs/Dispatcher - 3207885-31058.log +6 -0
- data/spec/support/logs/Dispatcher - 3207891-19927.log +6 -0
- data/spec/support/logs/Dispatcher - 3207897-41533.log +6 -0
- data/spec/support/logs/Dispatcher - 3207903-26815.log +6 -0
- data/spec/support/logs/Dispatcher - 3207909-25294.log +6 -0
- data/spec/support/logs/Dispatcher - 3207929-51610.log +6 -0
- data/spec/support/logs/Dispatcher - 3207990-8943.log +16 -0
- data/spec/support/logs/Dispatcher - 3208000-30657.log +14 -0
- data/spec/support/logs/Dispatcher - 3208010-54017.log +10 -0
- data/spec/support/logs/Dispatcher - 3208041-58792.log +16 -0
- data/spec/support/logs/Dispatcher - 3208047-50811.log +14 -0
- data/spec/support/logs/Dispatcher - 3208051-52018.log +10 -0
- data/spec/support/logs/Dispatcher - 3208067-46852.log +6 -0
- data/spec/support/logs/Dispatcher - 3208075-56209.log +6 -0
- data/spec/support/logs/Dispatcher - 3208088-4783.log +6 -0
- data/spec/support/logs/Dispatcher - 3208100-47518.log +6 -0
- data/spec/support/logs/Dispatcher - 3208115-25109.log +6 -0
- data/spec/support/logs/Dispatcher - 3208127-46551.log +6 -0
- data/spec/support/logs/Dispatcher - 3208133-2576.log +6 -0
- data/spec/support/logs/Dispatcher - 3208138-25988.log +6 -0
- data/spec/support/logs/Dispatcher - 3208299-19611.log +6 -0
- data/spec/support/logs/Dispatcher - 3208330-35076.log +6 -0
- data/spec/support/logs/Dispatcher - 3208340-32759.log +6 -0
- data/spec/support/logs/Dispatcher - 903393-34771.log +6 -0
- data/spec/support/logs/Dispatcher - 903765-19862.log +6 -0
- data/spec/support/logs/Dispatcher - 903767-43611.log +6 -0
- data/spec/support/logs/Dispatcher - 903770-34337.log +6 -0
- data/spec/support/logs/Dispatcher - 903774-7484.log +10 -0
- data/spec/support/logs/Dispatcher - 903777-5256.log +10 -0
- data/spec/support/logs/Dispatcher - 903780-12391.log +10 -0
- data/spec/support/logs/Dispatcher - 903782-54621.log +10 -0
- data/spec/support/logs/Dispatcher - 903786-46071.log +10 -0
- data/spec/support/logs/Dispatcher - 903794-48819.log +10 -0
- data/spec/support/logs/Dispatcher - 903906-54562.log +6 -0
- data/spec/support/logs/Dispatcher - 904068-37293.log +6 -0
- data/spec/support/logs/Dispatcher - 904070-53492.log +6 -0
- data/spec/support/logs/Dispatcher - 904073-27607.log +6 -0
- data/spec/support/logs/Dispatcher - 904075-41641.log +6 -0
- data/spec/support/logs/Dispatcher - 904099-53541.log +6 -0
- data/spec/support/logs/Dispatcher - 904112-10508.log +6 -0
- data/spec/support/logs/Dispatcher - 904132-5791.log +6 -0
- data/spec/support/logs/Dispatcher - 904141-56406.log +6 -0
- data/spec/support/logs/Dispatcher - 904147-21550.log +6 -0
- data/spec/support/logs/Dispatcher - 904149-20120.log +6 -0
- data/spec/support/logs/Dispatcher - 904155-33639.log +6 -0
- data/spec/support/logs/Dispatcher - 904161-53730.log +6 -0
- data/spec/support/logs/Dispatcher - 904169-49991.log +16 -0
- data/spec/support/logs/Dispatcher - 904172-39635.log +14 -0
- data/spec/support/logs/Dispatcher - 904192-9525.log +10 -0
- data/spec/support/logs/Dispatcher - 904206-3529.log +16 -0
- data/spec/support/logs/Dispatcher - 904211-16856.log +14 -0
- data/spec/support/logs/Dispatcher - 904216-49974.log +10 -0
- data/spec/support/logs/Dispatcher - 904228-16891.log +6 -0
- data/spec/support/logs/Dispatcher - 904231-34999.log +6 -0
- data/spec/support/logs/Dispatcher - 904236-50872.log +6 -0
- data/spec/support/logs/Dispatcher - 904238-25464.log +6 -0
- data/spec/support/logs/Dispatcher - 904251-43339.log +6 -0
- data/spec/support/logs/Dispatcher - 904256-18461.log +6 -0
- data/spec/support/logs/Dispatcher - 904266-59699.log +6 -0
- data/spec/support/logs/Dispatcher - 904279-17401.log +6 -0
- data/spec/support/logs/Dispatcher - 904289-48953.log +6 -0
- data/spec/support/logs/Dispatcher - 904309-22599.log +6 -0
- data/spec/support/logs/Dispatcher - 904386-44447.log +16 -0
- data/spec/support/logs/Dispatcher - 904409-51015.log +14 -0
- data/spec/support/logs/Dispatcher - 904420-34336.log +10 -0
- data/spec/support/logs/Dispatcher - 904455-24852.log +16 -0
- data/spec/support/logs/Dispatcher - 904459-54769.log +14 -0
- data/spec/support/logs/Dispatcher - 904464-49280.log +10 -0
- data/spec/support/logs/Dispatcher - 904490-41571.log +6 -0
- data/spec/support/logs/Dispatcher - 904495-62362.log +6 -0
- data/spec/support/logs/Dispatcher - 904517-14314.log +6 -0
- data/spec/support/logs/Dispatcher - 904529-30060.log +6 -0
- data/spec/support/logs/Dispatcher - 904538-61870.log +6 -0
- data/spec/support/logs/Dispatcher - 904553-59343.log +6 -0
- data/spec/support/logs/Dispatcher - 904563-59027.log +6 -0
- data/spec/support/logs/Dispatcher - 904576-62144.log +6 -0
- data/spec/support/logs/Dispatcher - 904742-2935.log +6 -0
- data/spec/support/logs/Dispatcher - 904771-62183.log +6 -0
- data/spec/support/logs/Dispatcher - 904780-13353.log +6 -0
- data/spec/support/logs/Instance - 3208178-11741.error.log +106 -0
- data/spec/support/logs/Instance - 3208181-15143.error.log +106 -0
- data/spec/support/logs/Instance - 3208183-7742.error.log +106 -0
- data/spec/support/logs/Instance - 904628-41184.error.log +105 -0
- data/spec/support/logs/Instance - 904631-38626.error.log +105 -0
- data/spec/support/logs/Instance - 904634-37879.error.log +105 -0
- data/spec/support/logs/Scheduler - 3203309-65225.log +3 -0
- data/spec/support/logs/Scheduler - 3203315-52999.log +6 -0
- data/spec/support/logs/Scheduler - 3204127-50400.log +3 -0
- data/spec/support/logs/Scheduler - 3204138-29313.log +6 -0
- data/spec/support/logs/Scheduler - 3204154-9476.log +4 -0
- data/spec/support/logs/Scheduler - 3204163-52855.log +1 -0
- data/spec/support/logs/Scheduler - 3204175-31574.log +3 -0
- data/spec/support/logs/Scheduler - 3204194-7097.log +6 -0
- data/spec/support/logs/Scheduler - 3204251-11724.log +3 -0
- data/spec/support/logs/Scheduler - 3204262-10820.log +4 -0
- data/spec/support/logs/Scheduler - 3207131-48958.log +3 -0
- data/spec/support/logs/Scheduler - 3207138-8974.log +6 -0
- data/spec/support/logs/Scheduler - 3207187-62652.log +3 -0
- data/spec/support/logs/Scheduler - 3207197-19207.log +6 -0
- data/spec/support/logs/Scheduler - 3207218-27080.log +4 -0
- data/spec/support/logs/Scheduler - 3207228-4393.log +1 -0
- data/spec/support/logs/Scheduler - 3207240-7381.log +3 -0
- data/spec/support/logs/Scheduler - 3207252-53772.log +6 -0
- data/spec/support/logs/Scheduler - 3207306-56622.log +3 -0
- data/spec/support/logs/Scheduler - 3207318-9939.log +6 -0
- data/spec/support/logs/Scheduler - 3207342-36988.log +3 -0
- data/spec/support/logs/Scheduler - 3207352-31746.log +6 -0
- data/spec/support/logs/Scheduler - 3207383-56973.log +4 -0
- data/spec/support/logs/Scheduler - 3207400-19390.log +6 -0
- data/spec/support/logs/Scheduler - 3207442-63021.log +1 -0
- data/spec/support/logs/Scheduler - 3207445-42476.log +1 -0
- data/spec/support/logs/Scheduler - 3207450-45489.log +1 -0
- data/spec/support/logs/Scheduler - 3207453-18262.log +1 -0
- data/spec/support/logs/Scheduler - 3207458-47234.log +1 -0
- data/spec/support/logs/Scheduler - 3207462-5628.log +1 -0
- data/spec/support/logs/Scheduler - 3207464-14620.log +3 -0
- data/spec/support/logs/Scheduler - 3207468-4793.log +6 -0
- data/spec/support/logs/Scheduler - 3207482-45268.log +4 -0
- data/spec/support/logs/Scheduler - 3207494-44991.log +1 -0
- data/spec/support/logs/Scheduler - 3207498-21429.log +1 -0
- data/spec/support/logs/Scheduler - 3207503-54136.log +1 -0
- data/spec/support/logs/Scheduler - 3207507-43714.log +1 -0
- data/spec/support/logs/Scheduler - 3207512-38735.log +3 -0
- data/spec/support/logs/Scheduler - 3207516-64075.log +1 -0
- data/spec/support/logs/Scheduler - 3207523-26974.log +1 -0
- data/spec/support/logs/Scheduler - 3207527-30807.log +1 -0
- data/spec/support/logs/Scheduler - 3208261-26059.log +16 -0
- data/spec/support/logs/Scheduler - 3208278-13735.log +6 -0
- data/spec/support/logs/Scheduler - 3208287-55638.log +6 -0
- data/spec/support/logs/Scheduler - 3208303-38465.log +6 -0
- data/spec/support/logs/Scheduler - 3208334-43532.log +3 -0
- data/spec/support/logs/Scheduler - 3208344-20376.log +5 -0
- data/spec/support/logs/Scheduler - 3208351-38224.log +1 -0
- data/spec/support/logs/Scheduler - 3208355-9843.log +1 -0
- data/spec/support/logs/Scheduler - 3208357-43942.log +1 -0
- data/spec/support/logs/Scheduler - 3208360-58330.log +1 -0
- data/spec/support/logs/Scheduler - 3208363-23807.log +1 -0
- data/spec/support/logs/Scheduler - 3208366-29256.log +1 -0
- data/spec/support/logs/Scheduler - 3208369-25684.log +1 -0
- data/spec/support/logs/Scheduler - 3208372-28479.log +3 -0
- data/spec/support/logs/Scheduler - 3208382-34006.log +3 -0
- data/spec/support/logs/Scheduler - 3208396-57942.log +3 -0
- data/spec/support/logs/Scheduler - 3208402-34617.log +3 -0
- data/spec/support/logs/Scheduler - 3208406-31477.log +4 -0
- data/spec/support/logs/Scheduler - 3208418-25154.log +1 -0
- data/spec/support/logs/Scheduler - 3208423-3948.log +4 -0
- data/spec/support/logs/Scheduler - 3208428-21648.log +1 -0
- data/spec/support/logs/Scheduler - 3208434-64685.log +1 -0
- data/spec/support/logs/Scheduler - 3208440-58157.log +16 -0
- data/spec/support/logs/Scheduler - 3208460-6293.log +4 -0
- data/spec/support/logs/Scheduler - 3208467-29409.log +1 -0
- data/spec/support/logs/Scheduler - 3208470-12825.log +1 -0
- data/spec/support/logs/Scheduler - 3208473-52401.log +1 -0
- data/spec/support/logs/Scheduler - 3208476-6567.log +1 -0
- data/spec/support/logs/Scheduler - 3208480-28476.log +3 -0
- data/spec/support/logs/Scheduler - 3208488-36893.log +1 -0
- data/spec/support/logs/Scheduler - 3208490-11932.log +1 -0
- data/spec/support/logs/Scheduler - 3208493-56676.log +1 -0
- data/spec/support/logs/Scheduler - 3208509-46176.log +1 -0
- data/spec/support/logs/Scheduler - 3208513-14321.log +1 -0
- data/spec/support/logs/Scheduler - 3208517-10539.log +1 -0
- data/spec/support/logs/Scheduler - 3208521-30079.log +2 -0
- data/spec/support/logs/Scheduler - 903345-9616.log +3 -0
- data/spec/support/logs/Scheduler - 903353-58507.log +6 -0
- data/spec/support/logs/Scheduler - 903417-55835.log +3 -0
- data/spec/support/logs/Scheduler - 903427-18261.log +6 -0
- data/spec/support/logs/Scheduler - 903439-36633.log +4 -0
- data/spec/support/logs/Scheduler - 903455-41936.log +1 -0
- data/spec/support/logs/Scheduler - 903506-60484.log +3 -0
- data/spec/support/logs/Scheduler - 903519-10519.log +6 -0
- data/spec/support/logs/Scheduler - 903593-8109.log +3 -0
- data/spec/support/logs/Scheduler - 903614-61308.log +6 -0
- data/spec/support/logs/Scheduler - 903667-39623.log +3 -0
- data/spec/support/logs/Scheduler - 903683-35117.log +6 -0
- data/spec/support/logs/Scheduler - 903730-34262.log +4 -0
- data/spec/support/logs/Scheduler - 903747-57287.log +6 -0
- data/spec/support/logs/Scheduler - 903798-40499.log +1 -0
- data/spec/support/logs/Scheduler - 903801-5479.log +1 -0
- data/spec/support/logs/Scheduler - 903806-11293.log +1 -0
- data/spec/support/logs/Scheduler - 903811-52201.log +1 -0
- data/spec/support/logs/Scheduler - 903813-54636.log +1 -0
- data/spec/support/logs/Scheduler - 903827-5581.log +1 -0
- data/spec/support/logs/Scheduler - 903830-48439.log +3 -0
- data/spec/support/logs/Scheduler - 903835-17198.log +6 -0
- data/spec/support/logs/Scheduler - 903846-28718.log +4 -0
- data/spec/support/logs/Scheduler - 903855-45172.log +1 -0
- data/spec/support/logs/Scheduler - 903864-11909.log +1 -0
- data/spec/support/logs/Scheduler - 903869-1794.log +1 -0
- data/spec/support/logs/Scheduler - 903873-59405.log +1 -0
- data/spec/support/logs/Scheduler - 903880-3155.log +3 -0
- data/spec/support/logs/Scheduler - 903887-52240.log +1 -0
- data/spec/support/logs/Scheduler - 903889-27541.log +1 -0
- data/spec/support/logs/Scheduler - 903895-16003.log +1 -0
- data/spec/support/logs/Scheduler - 904706-61946.log +16 -0
- data/spec/support/logs/Scheduler - 904725-2441.log +6 -0
- data/spec/support/logs/Scheduler - 904736-12992.log +6 -0
- data/spec/support/logs/Scheduler - 904744-61626.log +6 -0
- data/spec/support/logs/Scheduler - 904774-45665.log +3 -0
- data/spec/support/logs/Scheduler - 904783-51443.log +5 -0
- data/spec/support/logs/Scheduler - 904791-45170.log +1 -0
- data/spec/support/logs/Scheduler - 904793-58901.log +1 -0
- data/spec/support/logs/Scheduler - 904801-2336.log +1 -0
- data/spec/support/logs/Scheduler - 904803-10954.log +1 -0
- data/spec/support/logs/Scheduler - 904806-25343.log +1 -0
- data/spec/support/logs/Scheduler - 904810-23633.log +1 -0
- data/spec/support/logs/Scheduler - 904814-27547.log +1 -0
- data/spec/support/logs/Scheduler - 904819-53508.log +3 -0
- data/spec/support/logs/Scheduler - 904826-41103.log +3 -0
- data/spec/support/logs/Scheduler - 904835-20113.log +3 -0
- data/spec/support/logs/Scheduler - 904866-61722.log +3 -0
- data/spec/support/logs/Scheduler - 904878-18373.log +4 -0
- data/spec/support/logs/Scheduler - 904999-46113.log +1 -0
- data/spec/support/logs/Scheduler - 905011-23507.log +4 -0
- data/spec/support/logs/Scheduler - 905017-8299.log +1 -0
- data/spec/support/logs/Scheduler - 905028-51728.log +1 -0
- data/spec/support/logs/Scheduler - 905031-16092.log +16 -0
- data/spec/support/logs/Scheduler - 905101-65244.log +4 -0
- data/spec/support/logs/Scheduler - 905224-20698.log +1 -0
- data/spec/support/logs/Scheduler - 905234-53973.log +1 -0
- data/spec/support/logs/Scheduler - 905241-48042.log +1 -0
- data/spec/support/logs/Scheduler - 905334-30796.log +1 -0
- data/spec/support/logs/Scheduler - 905337-14399.log +3 -0
- data/spec/support/logs/Scheduler - 905350-31560.log +1 -0
- data/spec/support/logs/Scheduler - 905353-63541.log +1 -0
- data/spec/support/logs/Scheduler - 905359-22685.log +1 -0
- data/spec/support/logs/Scheduler - 905362-31483.log +1 -0
- data/spec/support/logs/Scheduler - 905365-28301.log +1 -0
- data/spec/support/logs/Scheduler - 905369-51335.log +1 -0
- data/spec/support/logs/Scheduler - 905373-43552.log +2 -0
- data/spec/support/logs/error-3206970.log +801 -0
- data/spec/support/logs/error-903103.log +797 -0
- data/spec/support/logs/output_spec_3206970.log +390 -0
- data/spec/support/logs/output_spec_903103.log +390 -0
- data/spec/support/logs/placeholder +0 -0
- data/spec/support/pems/cacert.pem +37 -0
- data/spec/support/pems/client/cert.pem +37 -0
- data/spec/support/pems/client/foo-cert.pem +39 -0
- data/spec/support/pems/client/foo-key.pem +51 -0
- data/spec/support/pems/client/key.pem +51 -0
- data/spec/support/pems/server/cert.pem +37 -0
- data/spec/support/pems/server/key.pem +51 -0
- data/spec/support/reports/010223f6102d7d7ef50d7061f5a7c120.crf +0 -0
- data/spec/support/reports/0efcc0441bc58e27299737fc0e8bdb4a.crf +0 -0
- data/spec/support/reports/1444c78cae8a70d9a8f64a5b84579248.crf +0 -0
- data/spec/support/reports/16d1cdae64bbcf0b2083bc1870940fe8.crf +0 -0
- data/spec/support/reports/22cd328dd5adf2e5830db3eaf3e6d2fa.crf +0 -0
- data/spec/support/reports/26f5f97b84015ea1b3ebfaa04e6863f2.crf +0 -0
- data/spec/support/reports/40d544db82e9be4328c8bb16f2abbe96.crf +0 -0
- data/spec/support/reports/432466f64ec7b3a9e3a51e6c0c0f2b68.crf +0 -0
- data/spec/support/reports/493d52465fdd74388e1c1769e738fe0a.crf +0 -0
- data/spec/support/reports/49593f3c7dcff9466cebd4a3f71df16e.crf +0 -0
- data/spec/support/reports/4a875ccf578b82ea8af0661d09a0c9a2.crf +0 -0
- data/spec/support/reports/4fe265d0f318a758fff8f9c117d85c70.crf +0 -0
- data/spec/support/reports/5405af2d7e6bdba82761b3deb0316abb.crf +0 -0
- data/spec/support/reports/5801342bc5e7553ca065d9fc76b80a31.crf +0 -0
- data/spec/support/reports/5ca817d21692604d643a1ec4b9d698f8.crf +0 -0
- data/spec/support/reports/60a48dd87c16aaba48705cfa1102e6f0.crf +0 -0
- data/spec/support/reports/61b93d5be434e58e8286bc24375df5a6.crf +0 -0
- data/spec/support/reports/62ae63c7a653ccc450a042c83be6272e.crf +0 -0
- data/spec/support/reports/6dfba35f84478f2f8740989650e5c9b2.crf +0 -0
- data/spec/support/reports/72d8ff7e33ea0a4fa3208de46060ecb4.crf +0 -0
- data/spec/support/reports/7e73587e8be563c70f2864bb9982d4ac.crf +0 -0
- data/spec/support/reports/8a20cd9e7ea1f083c463f85990e48b9d.crf +0 -0
- data/spec/support/reports/8e22c8f69d18bfdc387ac2e2c73fd994.crf +0 -0
- data/spec/support/reports/99de7d4c926e154d9df18bbb66044360.crf +0 -0
- data/spec/support/reports/a8cda3f125d6de78da7e601e17ae02e0.crf +0 -0
- data/spec/support/reports/aa6b3e0cabbfa8f622cc3faa5e70d82d.crf +0 -0
- data/spec/support/reports/ad7582cad690ca1f6ec5529766dacecd.crf +0 -0
- data/spec/support/reports/af253c3c9e54c7efc1eb19a1ba0bc45b.crf +0 -0
- data/spec/support/reports/b57af832ae733e1a4182138f8373029d.crf +0 -0
- data/spec/support/reports/c266644ae90cff19058101b06c2410bd.crf +0 -0
- data/spec/support/reports/c684686518f8bb5af1fc05632b2ee3a1.crf +0 -0
- data/spec/support/reports/d0de163911157b30b56076653a01bd04.crf +0 -0
- data/spec/support/reports/d11cb8c19f0ef398e393e461d48fab49.crf +0 -0
- data/spec/support/reports/d29486b6155119827e12d512f38cf1a5.crf +0 -0
- data/spec/support/reports/d6348fa0f269cef7861d8a55ccb817b8.crf +0 -0
- data/spec/support/reports/d68cddd22874664f66ea296768de93cb.crf +0 -0
- data/spec/support/reports/d73172a30f03f6e4f73e77a379876368.crf +0 -0
- data/spec/support/reports/e0113960b4015876416519d1e36c6174.crf +0 -0
- data/spec/support/reports/e684ad3b2061330bf8016b0cda4c8aeb.crf +0 -0
- data/spec/support/reports/e6bec3c23e6367f309a43b6faec6c1af.crf +0 -0
- data/spec/support/reports/eadbebf5e6e8a2b325cdc82a4a667d1a.crf +0 -0
- data/spec/support/reports/fe4ca4a133464c018e8405dd73064f04.crf +0 -0
- data/spec/support/reports/placeholder +0 -0
- data/spec/support/shared/application.rb +10 -0
- data/spec/support/shared/component/options/base.rb +187 -0
- data/spec/support/shared/component.rb +31 -0
- data/spec/support/shared/option_group.rb +98 -0
- data/spec/support/shared/support/cache.rb +419 -0
- data/spec/support/shared/support/filter.rb +143 -0
- data/spec/support/shared/system/platforms/base.rb +25 -0
- data/spec/support/shared/system/platforms/mixins/unix.rb +37 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_34_27 +0200 7757c257352bfa7abdfc764fa978115c.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_34_41 +0200 30367c49c18c17b84f6cdbfad6fe8209.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_35_24 +0200 0faa83c7ec023eca9e68e959b2b6a991.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_35_38 +0200 e61c3dae449133e330c24f9d1d34bc17.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_45_36 +0200 ef5b013868ce241f47ebef4f0ee96d23.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_45_42 +0200 ae63b2e851a211039d4dfa999bfc1f79.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_45_45 +0200 59a5d8a5ef5de0937e0d8a697d3a06cb.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_10_45 +0200 7534324302d1127f33460417057c0d99.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_10_59 +0200 2e45425f623e46a876531b65ff3319d4.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_14_43 +0200 d570989be752d5e9f930379a7f861028.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_14_57 +0200 37fe4c6328f04448257e962065d49d05.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_25_10 +0200 728fc33e7947c9dc606d69d7b9202dbc.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_25_15 +0200 cde4edd9a05a4183ff301d157654cb30.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_25_17 +0200 e47c2b6d6354bca5f07fd2903aefd262.csf +0 -0
- data/spec/support/snapshots/placeholder +0 -0
- metadata +1222 -23
- data/.gitignore +0 -8
- data/bin/console +0 -15
- data/bin/setup +0 -8
@@ -0,0 +1,51 @@
|
|
1
|
+
-----BEGIN RSA PRIVATE KEY-----
|
2
|
+
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
|
51
|
+
-----END RSA PRIVATE KEY-----
|
@@ -0,0 +1,51 @@
|
|
1
|
+
-----BEGIN RSA PRIVATE KEY-----
|
2
|
+
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
|
51
|
+
-----END RSA PRIVATE KEY-----
|
@@ -0,0 +1,37 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIGYTCCBEmgAwIBAgIBBTANBgkqhkiG9w0BAQUFADBTMQswCQYDVQQGEwJHUjEY
|
3
|
+
MBYGA1UEAxMPQXJhY2huaS10ZXN0LUNBMSowKAYJKoZIhvcNAQkBFhthcmFjaG5p
|
4
|
+
QGFyYWNobmktc2Nhbm5lci5jb20wHhcNMTIxMTAyMTAzMzQxWhcNMjIxMDMwMTAz
|
5
|
+
MzQxWjBNMQswCQYDVQQGEwJHUjESMBAGA1UEAxMJbG9jYWxob3N0MSowKAYJKoZI
|
6
|
+
hvcNAQkBFhthcmFjaG5pQGFyYWNobmktc2Nhbm5lci5jb20wggIiMA0GCSqGSIb3
|
7
|
+
DQEBAQUAA4ICDwAwggIKAoICAQCz+OAzIMwVNujjweU3Zhvk0ZGYqTdJ73Jz5v7F
|
8
|
+
O5JE35hTzy1kf6EgMEqmZqKeBe95fviv+7UXcqtYoyxFPB/ssSLeUMyO0fUZZMMi
|
9
|
+
8EfqtZZveB1j7f0EfzSEG7eL5tCjb/Q8tXQvM33+0QfjnwcrSOr2fPPwbEiWU1d1
|
10
|
+
cP1ZdRtgvAuo3a4Sga9xtJSFRe3iSpynJsQo482rSPpIcVfm5tArq8RVlztJPvXY
|
11
|
+
A76iIgNddhdOM/3fBg+a6iXqkC7X0WPRoNt7XiVniwBIP1t5/2S7JyhRsN50Crfu
|
12
|
+
9N6lZd/fij0xwr5hLzl5lXKdUI5iYZZfTpNiIXnUICswFOUHwV/2W8XADu1HHLeX
|
13
|
+
a4knqnmX0h7c+bJm3UrXMiwU61tVENogjNc/vJP9fjy/Klfvgn5BXmpyTze7Xzlj
|
14
|
+
JcTt0VNNKUdieLjJsVKVF42j6RH9farshcHcCzd4701WkMEsbHZYncMUYNCBqUg7
|
15
|
+
5SuIFHIZfZ4wq06i8BLRXJRHK+P+kDp/cyJyr/UqtlJwFJIgtWYOO0SMhynBK8gC
|
16
|
+
w/SE8Tlx0r/yIAyutyU6F4nE4wYfR3d8SyObzf5HD0rAtHBYUdPR5qFNePpEQlHR
|
17
|
+
Kepgl/pMpPZ2X6e4HYqIBrrahMI0mAns285Z/iBKpv6MyJR1npEMNa8I0eugeAGO
|
18
|
+
y0IcFQIDAQABo4IBRDCCAUAwCQYDVR0TBAIwADARBglghkgBhvhCAQEEBAMCBkAw
|
19
|
+
KwYJYIZIAYb4QgENBB4WHFRpbnlDQSBHZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYD
|
20
|
+
VR0OBBYEFFQOlI4fxXxPl9UYd9MdoBsXt9ZWMIGDBgNVHSMEfDB6gBTxU601Rtmu
|
21
|
+
dtfSBFYh2znJpP64LKFXpFUwUzELMAkGA1UEBhMCR1IxGDAWBgNVBAMTD0FyYWNo
|
22
|
+
bmktdGVzdC1DQTEqMCgGCSqGSIb3DQEJARYbYXJhY2huaUBhcmFjaG5pLXNjYW5u
|
23
|
+
ZXIuY29tggkA8FjCoCiD1/UwJgYDVR0SBB8wHYEbYXJhY2huaUBhcmFjaG5pLXNj
|
24
|
+
YW5uZXIuY29tMCYGA1UdEQQfMB2BG2FyYWNobmlAYXJhY2huaS1zY2FubmVyLmNv
|
25
|
+
bTANBgkqhkiG9w0BAQUFAAOCAgEAeKLkpVjOdO9r5FcZPhemKsL9AFmnbqWmSeFA
|
26
|
+
Cmu7wyHwbDbgCS0tWnrq45qDbnAJxAqXQKzKS7QINxR80XMpgoaglx7qd1V5MEXK
|
27
|
+
LXn4G6BJ5tAgEbLY7HnsUHQnLMK/KWCzMODweM2gtPTauChF9kIKWrBJuizfldAo
|
28
|
+
ww8YOeZfPc77pEhC/vjttQOzfqcLjGvzpJJQVmd+i6JtH635hou9i0QXR//Nrf+l
|
29
|
+
ymrCuh7sil/Z1bJdmrQ1yPb2fNgqwHnWHqwPSFb8heEGExKC6vNCS2A+e08HGQTR
|
30
|
+
wNAQQYQRihtDC4lqNFcVdgZExXRypzbPE2l49RnDXCL/JOCisAErGd0kzBBj6SGD
|
31
|
+
Z7AKH87esH1mNThWFCZJTYXFTthVpNbOpPQ78UbXz9tFbfVdbWAcOn9enNbVeZa5
|
32
|
+
vbqIHQs7azy4I5NwQ2zK/+MO1egUbbCEhcUzoUgEx8NB3JeW2ziZDEzzyKqTcv0V
|
33
|
+
EH+suZefvhHxI3tGg2UmFD1+SBEVNw/1jv1HsduTclI7ckGHLcFjt7hG1CFLfLZ3
|
34
|
+
wEhN91GCsOrbckp8wBMsT1yiimasrVL2PKfa0ywUW0D6zRvBs5bgtGaWUPy1VX5W
|
35
|
+
3LLbhwMZyaHnjT9GGw2cW1hea8TRWapj+/On4w2tRy6KtnkLBHgM3E+0E9DFwwVZ
|
36
|
+
jppXDh8=
|
37
|
+
-----END CERTIFICATE-----
|
@@ -0,0 +1,51 @@
|
|
1
|
+
-----BEGIN RSA PRIVATE KEY-----
|
2
|
+
MIIJKgIBAAKCAgEAs/jgMyDMFTbo48HlN2Yb5NGRmKk3Se9yc+b+xTuSRN+YU88t
|
3
|
+
ZH+hIDBKpmaingXveX74r/u1F3KrWKMsRTwf7LEi3lDMjtH1GWTDIvBH6rWWb3gd
|
4
|
+
Y+39BH80hBu3i+bQo2/0PLV0LzN9/tEH458HK0jq9nzz8GxIllNXdXD9WXUbYLwL
|
5
|
+
qN2uEoGvcbSUhUXt4kqcpybEKOPNq0j6SHFX5ubQK6vEVZc7ST712AO+oiIDXXYX
|
6
|
+
TjP93wYPmuol6pAu19Fj0aDbe14lZ4sASD9bef9kuycoUbDedAq37vTepWXf34o9
|
7
|
+
McK+YS85eZVynVCOYmGWX06TYiF51CArMBTlB8Ff9lvFwA7tRxy3l2uJJ6p5l9Ie
|
8
|
+
3PmyZt1K1zIsFOtbVRDaIIzXP7yT/X48vypX74J+QV5qck83u185YyXE7dFTTSlH
|
9
|
+
Yni4ybFSlReNo+kR/X2q7IXB3As3eO9NVpDBLGx2WJ3DFGDQgalIO+UriBRyGX2e
|
10
|
+
MKtOovAS0VyURyvj/pA6f3Micq/1KrZScBSSILVmDjtEjIcpwSvIAsP0hPE5cdK/
|
11
|
+
8iAMrrclOheJxOMGH0d3fEsjm83+Rw9KwLRwWFHT0eahTXj6REJR0SnqYJf6TKT2
|
12
|
+
dl+nuB2KiAa62oTCNJgJ7NvOWf4gSqb+jMiUdZ6RDDWvCNHroHgBjstCHBUCAwEA
|
13
|
+
AQKCAgEAomQ78QZz/+R3CiQH7w/8tWCALq7pi5Y6wOg7FL7nAax754u2mssrGT9Z
|
14
|
+
7IIJ0+rpJcjzHuBRjCHVCHrb1HEnIUzIeK+RlIFQ1qP8C8eiLN/DKTvJ0USKHIen
|
15
|
+
XFkiKmOP+Rlo2Wqltn2Q/9+fbb0uG9mE4frnphYe/T2gWgElKZYoqQWkw6+bhWlt
|
16
|
+
ZH0b0pHBz4GhjpXFRFwhVZ/Y7osPVPMJ/Y3U76IxRatA67SdS/DC9o87Aj6Zoab3
|
17
|
+
Z8JFijyld+mhVyL9SHkv6RkcnRRGN3PCcbkogWXFpBGT3FMpnzaoZi13gDIH1Otm
|
18
|
+
whWewOJSR+VkaQUeqdoo8sZAEfeYm/14AgwJ0H7fX9iKNHfmbtji3iOcTMeeCas6
|
19
|
+
Z0ODTzmIQcqA5MgHBjRhs0EacWSEdeEC9iEzpN8dyjm6J2MSqJk12vIlRPKNl5Lx
|
20
|
+
4bLFYZBGjSb2Q5SegnS2ktPKz9dsxb3zbaJ5PnrtMQ2TQNCK06F9NDFjeJuRpt2e
|
21
|
+
PlnLB5vA/CEQ866zdVpwfWmaP/lbvYQKfiP0qDrUL6ws+cRWvWVj4MTiU4+Mzqdb
|
22
|
+
0hGTKMiAe2FIr7u73URabtMKlbPaiWuSQblikigRUDyEYwg7H/K+m8wsFm4Mc9AJ
|
23
|
+
sT2GJW9cJ2QXAzkdGrVXsbIDWcijdN8ziLpIyP8043sHWWCRMHUCggEBAObMIc+Y
|
24
|
+
MMurC7UFRNcn+hmJTRvhFsgYzds5jLhHHwNdFjvELbJYhOrRxOjzoKh65RDZ0U0T
|
25
|
+
G5TgTFlGQE6q3Pca8dqFG2zncFownkkDm+AwdmdPZ/047kc4OgTYXTdaopJCWJqD
|
26
|
+
sCYhnhVqE1+jpFyn+5KneBwJoCbSMDvdZAnXOVUY+aTkzmyd6IwWUPvlTtdwcNql
|
27
|
+
XUQQudP6PEgDCquvAhlzhdIUaVGr9y2jdB0c055z6hsaCZJNqsUQpVm/QZAavety
|
28
|
+
2aDaU3/kuazFBtN6IviiSE1CSGDbVv7DuaBDeW32llwkGdD8WoNLLtwZXeYsWuz5
|
29
|
+
Vo4ZAKaXoIr8gaMCggEBAMef8NebwQSm9B5XEwGzxOwdVNpTm75ApH8NUavjbvyk
|
30
|
+
COOGSpLtdTkuRaUTOFJdjVTfOdzWzuMF+e2Y2BJe+1m32gYp5d4oGmf/LVrL75F3
|
31
|
+
mhpNxl26g4Hnp38Bpz9LJc7+kWsM/za7bRMPIab5eIUa+yg3oq4pJsFZ9pry1sHS
|
32
|
+
EZL0YDWHE1fiDKB7EW5iJeiKJz1CKjiQNdlEMo7nBigUiIaw8leNg+CSwf8RYBPt
|
33
|
+
xbcZuQ1ihm1EjTfnkMCruVbPI0Ot4p5E2U9ByjmiHSgfj7gYg5Z+hQ498iwGXxCI
|
34
|
+
PkCJkWZKeHp28ZCjKf3/46SZWgp5A7MBxygeBvY4ducCggEBAMaOi/ALIL+3kcTU
|
35
|
+
mZr426OoidwYU/8lx8R4yGWpWjcMmJomdqHeoctbWKqJHoiT4goTOouyiqIULdsI
|
36
|
+
Iz8KpDs6xSOYLDYPDoupFCQApNPFHbhXikFB/0zqRI/yjI+YvBBUX+HetWa4uUX3
|
37
|
+
El/PaxIDut06koycg1mirrhyCSSmMr7RU8TWy/iKCYyrjlSHvMKAC7cvWQO72ANU
|
38
|
+
XxQc+csmLwoyZsiLougOqAJtgvGg4TaKxrc2OVHS273aSkbh0cfmGco77psB+aAn
|
39
|
+
6M2IXA0IIJoDE2zUP2yEh116iXIlWoyN/mGa9VLkKAKYZeIZOL1TH46MHDj3raWl
|
40
|
+
AQtRnT0CggEBAKx/SceWAIF7nyEEjxj+daCua99JNiB9jWd4Y+WLXyGSwVeSeKhj
|
41
|
+
5tKlaGsPo7CQxIrdZgut1xKX3HLyi2u8hafuVcjTtZ11u/O3rkJyTS6/Uft+z3W4
|
42
|
+
sOC1A6idDh+EWUR398KwdWyfIs7AWY0Gr50dRoBnKv0h9CpKCe20/9x2INeCsgwv
|
43
|
+
D4j2fYDDN7nRt/4sO2IU5ZUBEHcRFjsj6M8Dh0IUbyU21Qle56H4KrSt1xa0dJLb
|
44
|
+
W1vaS8lOIWhMO5iG32shO90Vk06IhC2vJ1C/jRpAnJyT8XfwEW73hngrstdjyK/C
|
45
|
+
lD8GvxED3UpuLxDRrtuz3H13gNfqsotbGWsCggEAAnt56fTLGmTu9pdM3FtTEaLN
|
46
|
+
rmO9JbRDsxnXTN84hLci27HW0rU/AFGw+a6MHNiBNVfBqhMnZwPgAsNVf6TB//iE
|
47
|
+
FZTotJWcTHkbiBwpXvRHHQ0BwxKluDicLqzzvEW8fmiNVjDig2JeS/45r2x0S4M/
|
48
|
+
3TVHK7A/vXQWvBgQi9a2ooViRjRXdhzlIkjNNsYieAwX7793Nw2KqZbHKXvelEOQ
|
49
|
+
I6nTIqNDZOZ7MmGKHnGpj4SIupCKdkalQgakkGFbpltsyKBC7gooHQuKjQsYnRgl
|
50
|
+
XzOy39QzIn0WF9AoyLg/W8yPsnhc1S5Ed6Lq8KL3HWV6a8n9QRSHVCX6dafBcg==
|
51
|
+
-----END RSA PRIVATE KEY-----
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
@@ -0,0 +1,187 @@
|
|
1
|
+
shared_examples_for 'component_option' do
|
2
|
+
|
3
|
+
let(:subject) do
|
4
|
+
described_class.new( :option_name,
|
5
|
+
description: 'Description',
|
6
|
+
required: true,
|
7
|
+
value: 'my value',
|
8
|
+
default: 'default value'
|
9
|
+
)
|
10
|
+
end
|
11
|
+
|
12
|
+
it "supports #{Cuboid::RPC::Serializer}" do
|
13
|
+
expect(subject).to eq(Cuboid::RPC::Serializer.deep_clone( subject ))
|
14
|
+
end
|
15
|
+
|
16
|
+
describe '#to_rpc_data' do
|
17
|
+
let(:data) { subject.to_rpc_data }
|
18
|
+
|
19
|
+
%w(name description default value type).each do |attribute|
|
20
|
+
it "includes '#{attribute}'" do
|
21
|
+
expect(data[attribute]).to eq(subject.send( attribute ))
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
it "includes 'class'" do
|
26
|
+
expect(data['class']).to eq(subject.class.to_s)
|
27
|
+
end
|
28
|
+
|
29
|
+
it "includes 'required'" do
|
30
|
+
expect(data['required']).to eq(subject.required?)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe '.from_rpc_data' do
|
35
|
+
let(:restored) { described_class.from_rpc_data data }
|
36
|
+
let(:data) { Cuboid::RPC::Serializer.rpc_data( subject ) }
|
37
|
+
|
38
|
+
%w(name description default value type class).each do |attribute|
|
39
|
+
it "restores '#{attribute}'" do
|
40
|
+
expect(restored.send( attribute )).to eq(subject.send( attribute ))
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
it "restores 'required'" do
|
45
|
+
expect(restored.required?).to eq(subject.required?)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
describe '#initialize' do
|
50
|
+
context 'when passed invalid options' do
|
51
|
+
it "raises #{ArgumentError}" do
|
52
|
+
expect { described_class.new( :myname, stuff: 1 ) }.to raise_error ArgumentError
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
describe '#name' do
|
58
|
+
it 'returns the name of the option' do
|
59
|
+
name = 'myname'
|
60
|
+
expect(described_class.new( name ).name).to eq(name.to_sym)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe '#description' do
|
65
|
+
it 'returns the description' do
|
66
|
+
description = 'a description'
|
67
|
+
expect(described_class.new( '', description: description ).description).to eq(description)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
describe '#default' do
|
72
|
+
it 'returns the default value' do
|
73
|
+
default = 'default value'
|
74
|
+
expect(described_class.new( '', default: default ).default).to eq(default)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe '#required?' do
|
79
|
+
context 'when the option is mandatory' do
|
80
|
+
it 'returns true' do
|
81
|
+
expect(described_class.new( '', required: true ).required?).to be_truthy
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
context 'when the option is not mandatory' do
|
86
|
+
it 'returns false' do
|
87
|
+
expect(described_class.new( '', required: false ).required?).to be_falsey
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
context 'by default' do
|
92
|
+
it 'returns false' do
|
93
|
+
expect(described_class.new( '' ).required?).to be_falsey
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
describe '#missing_value?' do
|
99
|
+
context 'when the option is required' do
|
100
|
+
context 'and the value is not empty' do
|
101
|
+
it 'returns false' do
|
102
|
+
expect(described_class.new( '', required: true, value: 'stuff' ).missing_value?).to be_falsey
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
context 'and the value is nil' do
|
107
|
+
it 'returns true' do
|
108
|
+
expect(described_class.new( '', required: true ).missing_value?).to be_truthy
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
context 'when the option is not required' do
|
114
|
+
context 'and the value is not empty' do
|
115
|
+
it 'returns false' do
|
116
|
+
expect(described_class.new( '', value: 'true' ).missing_value?).to be_falsey
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
context 'and the value is empty' do
|
121
|
+
it 'returns false' do
|
122
|
+
expect(described_class.new( '' ).missing_value?).to be_falsey
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
describe '#value=' do
|
129
|
+
it 'sets #value' do
|
130
|
+
option = described_class.new( '' )
|
131
|
+
option.value = 1
|
132
|
+
expect(option.value).to eq(1)
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
describe '#value' do
|
137
|
+
it 'returns the set value' do
|
138
|
+
option = described_class.new( '' )
|
139
|
+
option.value = 1
|
140
|
+
expect(option.value).to eq(1)
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
describe '#effective_value' do
|
145
|
+
it 'returns the set value' do
|
146
|
+
option = described_class.new( '' )
|
147
|
+
option.value = 1
|
148
|
+
expect(option.value).to eq(1)
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
describe '#effective_value' do
|
153
|
+
it 'returns the value as is' do
|
154
|
+
expect(described_class.new( '', value: 'blah' ).effective_value).to eq('blah')
|
155
|
+
end
|
156
|
+
|
157
|
+
context 'when no #value is set' do
|
158
|
+
it 'returns #default' do
|
159
|
+
expect(described_class.new( '', default: 'test' ).effective_value).to eq('test')
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
describe '#to_h' do
|
165
|
+
let(:option) do
|
166
|
+
described_class.new( :my_name,
|
167
|
+
description: 'My description',
|
168
|
+
required: true,
|
169
|
+
default: 'stuff'
|
170
|
+
)
|
171
|
+
end
|
172
|
+
|
173
|
+
%w(name description value default type).each do |m|
|
174
|
+
it "includes :#{m}" do
|
175
|
+
expect(option.to_h[m.to_sym]).to eq(option.send(m))
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
it 'includes :required' do
|
180
|
+
expect(option.to_h[:required]).to eq(option.required?)
|
181
|
+
end
|
182
|
+
|
183
|
+
it 'is aliased to #to_hash' do
|
184
|
+
expect(option.to_hash).to eq(option.to_h)
|
185
|
+
end
|
186
|
+
end
|
187
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
shared_examples_for "component" do
|
2
|
+
|
3
|
+
before :all do
|
4
|
+
@name = self.class.metadata[:example_group][:description]
|
5
|
+
end
|
6
|
+
|
7
|
+
let(:name) { @name }
|
8
|
+
let(:component_name) { name }
|
9
|
+
let(:framework) { Cuboid::Framework.unsafe }
|
10
|
+
let(:session) { framework.session }
|
11
|
+
let(:http) { Cuboid::HTTP::Client }
|
12
|
+
let(:options) { Cuboid::Options }
|
13
|
+
|
14
|
+
def self.use_https
|
15
|
+
@use_https = true
|
16
|
+
end
|
17
|
+
|
18
|
+
def url
|
19
|
+
@url ||= web_server_url_for( @use_https ? "#{name}_https" : name ) + '/'
|
20
|
+
rescue
|
21
|
+
raise "Could not find server for '#{name}' component."
|
22
|
+
end
|
23
|
+
|
24
|
+
def yaml_load( yaml )
|
25
|
+
YAML.load yaml.gsub( '__URL__', url )
|
26
|
+
end
|
27
|
+
|
28
|
+
def run
|
29
|
+
framework.run
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,98 @@
|
|
1
|
+
shared_examples_for 'option_group' do
|
2
|
+
it { is_expected.to respond_to :to_h }
|
3
|
+
|
4
|
+
describe '#to_rpc_data' do
|
5
|
+
let(:data) { subject.to_rpc_data }
|
6
|
+
|
7
|
+
it 'converts self to a serializable hash' do
|
8
|
+
expect(data).to be_kind_of Hash
|
9
|
+
|
10
|
+
expect(Cuboid::RPC::Serializer.load(
|
11
|
+
Cuboid::RPC::Serializer.dump( data )
|
12
|
+
)).to eq(data)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
described_class.defaults.each do |k, v|
|
17
|
+
describe "##{k}" do
|
18
|
+
it "defaults to #{v}" do
|
19
|
+
expect(subject.instance_variable_get( "@#{k}".to_sym )).to eq(v)
|
20
|
+
expect(subject.send( k )).to eq(v)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'honors default values for attributes' do
|
26
|
+
subject.defaults.each do |k, v|
|
27
|
+
subject.send "#{k}=", nil
|
28
|
+
expect(subject.instance_variable_get( "@#{k}".to_sym )).to eq(v)
|
29
|
+
expect(subject.send( k )).to eq(v)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe '#to_hash' do
|
34
|
+
it 'returns a hash' do
|
35
|
+
expect(subject.to_hash).to be_kind_of Hash
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
describe '#to_h' do
|
40
|
+
it 'returns a hash' do
|
41
|
+
expect(subject.to_h).to be_kind_of Hash
|
42
|
+
end
|
43
|
+
|
44
|
+
it 'only includes attributes with accessors' do
|
45
|
+
method = subject.methods.find { |m| m.to_s.end_with? '=' }
|
46
|
+
if method == :=== || method == :==
|
47
|
+
expect(subject.to_h).to be_empty
|
48
|
+
next
|
49
|
+
end
|
50
|
+
|
51
|
+
subject.send( method, subject.defaults[method.to_s[0..-1].to_sym] )
|
52
|
+
|
53
|
+
hash = subject.to_h
|
54
|
+
expect(hash).to be_any
|
55
|
+
hash.each do |k, v|
|
56
|
+
expect(subject).to respond_to "#{k}="
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
describe '#update' do
|
62
|
+
it 'updates self with the values of the given hash' do
|
63
|
+
method = subject.methods.find { |m| m.to_s.end_with? '=' }
|
64
|
+
next if method == :=== || method == :==
|
65
|
+
|
66
|
+
method = method.to_s[0...-1].to_sym
|
67
|
+
value = subject.defaults[method.to_s[0..-1].to_sym]
|
68
|
+
|
69
|
+
subject.update( { method => value } )
|
70
|
+
expect(subject.send( method )).to eq(value)
|
71
|
+
end
|
72
|
+
|
73
|
+
it 'returns self' do
|
74
|
+
expect(subject.update({})).to eq(subject)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe '#merge' do
|
79
|
+
it 'updates self with the values of the given OptionGroup' do
|
80
|
+
method = subject.methods.find { |m| m.to_s.end_with? '=' }
|
81
|
+
next if method == :=== || method == :==
|
82
|
+
|
83
|
+
method = method.to_s[0...-1].to_sym
|
84
|
+
value = subject.defaults[method.to_s[0..-1].to_sym]
|
85
|
+
|
86
|
+
group = described_class.new
|
87
|
+
group.update( { method => value } )
|
88
|
+
|
89
|
+
subject.merge( group )
|
90
|
+
expect(subject.send( method )).to eq(value)
|
91
|
+
end
|
92
|
+
|
93
|
+
it 'returns self' do
|
94
|
+
group = described_class.new
|
95
|
+
expect(subject.merge( group )).to eq(subject)
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|