state_machines 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +10 -4
- data/Changelog.md +0 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +1 -1
- data/README.md +6 -8
- data/Rakefile +9 -6
- data/Testing.md +0 -0
- data/lib/state_machines/assertions.rb +5 -5
- data/lib/state_machines/error.rb +2 -1
- data/lib/state_machines/integrations.rb +18 -11
- data/lib/state_machines/machine.rb +8 -12
- data/lib/state_machines/version.rb +1 -1
- data/state_machines.gemspec +6 -8
- data/test/files/integrations/event_on_failure_integration.rb +10 -0
- data/test/files/integrations/vehicle.rb +7 -0
- data/{spec/internal/app → test/files}/models/auto_shop.rb +0 -0
- data/{spec/internal/app → test/files}/models/car.rb +2 -0
- data/{spec/internal/app → test/files}/models/model_base.rb +0 -0
- data/{spec/internal/app → test/files}/models/motorcycle.rb +2 -0
- data/{spec/internal/app → test/files}/models/traffic_light.rb +2 -2
- data/{spec/internal/app → test/files}/models/vehicle.rb +9 -5
- data/test/files/node.rb +5 -0
- data/test/files/switch.rb +15 -0
- data/test/functional/auto_shop_available_test.rb +20 -0
- data/test/functional/auto_shop_busy_test.rb +25 -0
- data/test/functional/car_backing_up_test.rb +45 -0
- data/test/functional/car_test.rb +49 -0
- data/test/functional/motorcycle_test.rb +46 -0
- data/test/functional/traffic_light_caution_test.rb +17 -0
- data/test/functional/traffic_light_proceed_test.rb +17 -0
- data/test/functional/traffic_light_stop_test.rb +26 -0
- data/test/functional/vehicle_first_gear_test.rb +42 -0
- data/test/functional/vehicle_idling_test.rb +59 -0
- data/test/functional/vehicle_locked_test.rb +29 -0
- data/test/functional/vehicle_parked_test.rb +53 -0
- data/test/functional/vehicle_repaired_test.rb +20 -0
- data/test/functional/vehicle_second_gear_test.rb +42 -0
- data/test/functional/vehicle_stalled_test.rb +65 -0
- data/test/functional/vehicle_test.rb +20 -0
- data/test/functional/vehicle_third_gear_test.rb +42 -0
- data/test/functional/vehicle_unsaved_test.rb +181 -0
- data/test/functional/vehicle_with_event_attributes_test.rb +30 -0
- data/test/functional/vehicle_with_parallel_events_test.rb +36 -0
- data/test/test_helper.rb +15 -0
- data/test/unit/assertions/assert_exclusive_keys_test.rb +22 -0
- data/test/unit/assertions/assert_valid_key_test.rb +12 -0
- data/test/unit/branch/branch_test.rb +28 -0
- data/test/unit/branch/branch_with_conflicting_conditionals_test.rb +27 -0
- data/test/unit/branch/branch_with_conflicting_from_requirements_test.rb +8 -0
- data/test/unit/branch/branch_with_conflicting_on_requirements_test.rb +8 -0
- data/test/unit/branch/branch_with_conflicting_to_requirements_test.rb +8 -0
- data/test/unit/branch/branch_with_different_requirements_test.rb +41 -0
- data/test/unit/branch/branch_with_except_from_matcher_requirement_test.rb +8 -0
- data/test/unit/branch/branch_with_except_from_requirement_test.rb +36 -0
- data/test/unit/branch/branch_with_except_on_matcher_requirement_test.rb +8 -0
- data/test/unit/branch/branch_with_except_on_requirement_test.rb +36 -0
- data/test/unit/branch/branch_with_except_to_matcher_requirement_test.rb +8 -0
- data/test/unit/branch/branch_with_except_to_requirement_test.rb +36 -0
- data/test/unit/branch/branch_with_from_matcher_requirement_test.rb +20 -0
- data/test/unit/branch/branch_with_from_requirement_test.rb +45 -0
- data/test/unit/branch/branch_with_if_conditional_test.rb +27 -0
- data/test/unit/branch/branch_with_implicit_and_explicit_requirements_test.rb +23 -0
- data/test/unit/branch/branch_with_implicit_from_requirement_matcher_test.rb +20 -0
- data/test/unit/branch/branch_with_implicit_requirement_test.rb +20 -0
- data/test/unit/branch/branch_with_implicit_to_requirement_matcher_test.rb +16 -0
- data/test/unit/branch/branch_with_multiple_except_from_requirements_test.rb +20 -0
- data/test/unit/branch/branch_with_multiple_except_on_requirements_test.rb +16 -0
- data/test/unit/branch/branch_with_multiple_except_to_requirements_test.rb +20 -0
- data/test/unit/branch/branch_with_multiple_from_requirements_test.rb +16 -0
- data/test/unit/branch/branch_with_multiple_if_conditionals_test.rb +20 -0
- data/test/unit/branch/branch_with_multiple_implicit_requirements_test.rb +53 -0
- data/test/unit/branch/branch_with_multiple_on_requirements_test.rb +20 -0
- data/test/unit/branch/branch_with_multiple_to_requirements_test.rb +20 -0
- data/test/unit/branch/branch_with_multiple_unless_conditionals_test.rb +20 -0
- data/test/unit/branch/branch_with_nil_requirements_test.rb +28 -0
- data/test/unit/branch/branch_with_no_requirements_test.rb +36 -0
- data/test/unit/branch/branch_with_on_matcher_requirement_test.rb +16 -0
- data/test/unit/branch/branch_with_on_requirement_test.rb +45 -0
- data/test/unit/branch/branch_with_to_matcher_requirement_test.rb +20 -0
- data/test/unit/branch/branch_with_to_requirement_test.rb +45 -0
- data/test/unit/branch/branch_with_unless_conditional_test.rb +27 -0
- data/test/unit/branch/branch_without_guards_test.rb +27 -0
- data/test/unit/callback/callback_by_default_test.rb +25 -0
- data/test/unit/callback/callback_test.rb +53 -0
- data/test/unit/callback/callback_with_application_bound_object_test.rb +23 -0
- data/test/unit/callback/callback_with_application_terminator_test.rb +24 -0
- data/test/unit/callback/callback_with_arguments_test.rb +14 -0
- data/test/unit/callback/callback_with_around_type_and_arguments_test.rb +25 -0
- data/test/unit/callback/callback_with_around_type_and_block_test.rb +44 -0
- data/test/unit/callback/callback_with_around_type_and_bound_method_test.rb +23 -0
- data/test/unit/callback/callback_with_around_type_and_multiple_methods_test.rb +93 -0
- data/test/unit/callback/callback_with_around_type_and_terminator_test.rb +17 -0
- data/test/unit/callback/callback_with_block_test.rb +20 -0
- data/test/unit/callback/callback_with_bound_method_and_arguments_test.rb +28 -0
- data/test/unit/callback/callback_with_bound_method_test.rb +35 -0
- data/test/unit/callback/callback_with_do_method_test.rb +18 -0
- data/test/unit/callback/callback_with_explicit_requirements_test.rb +32 -0
- data/test/unit/callback/callback_with_if_condition_test.rb +17 -0
- data/test/unit/callback/callback_with_implicit_requirements_test.rb +32 -0
- data/test/unit/callback/callback_with_method_argument_test.rb +18 -0
- data/test/unit/callback/callback_with_mixed_methods_test.rb +31 -0
- data/test/unit/callback/callback_with_multiple_bound_methods_test.rb +21 -0
- data/test/unit/callback/callback_with_multiple_do_methods_test.rb +29 -0
- data/test/unit/callback/callback_with_multiple_method_arguments_test.rb +29 -0
- data/test/unit/callback/callback_with_terminator_test.rb +22 -0
- data/test/unit/callback/callback_with_unbound_method_test.rb +14 -0
- data/test/unit/callback/callback_with_unless_condition_test.rb +17 -0
- data/test/unit/callback/callback_without_arguments_test.rb +14 -0
- data/test/unit/callback/callback_without_terminator_test.rb +12 -0
- data/test/unit/error/error_by_default_test.rb +21 -0
- data/test/unit/error/error_with_message_test.rb +23 -0
- data/test/unit/eval_helper/eval_helpers_base_test.rb +8 -0
- data/test/unit/eval_helper/eval_helpers_proc_block_and_explicit_arguments_test.rb +14 -0
- data/test/unit/eval_helper/eval_helpers_proc_block_and_implicit_arguments_test.rb +14 -0
- data/test/unit/eval_helper/eval_helpers_proc_test.rb +13 -0
- data/test/unit/eval_helper/eval_helpers_proc_with_arguments_test.rb +13 -0
- data/test/unit/eval_helper/eval_helpers_proc_with_block_test.rb +13 -0
- data/test/unit/eval_helper/eval_helpers_proc_with_block_without_arguments_test.rb +18 -0
- data/test/unit/eval_helper/eval_helpers_proc_with_block_without_object_test.rb +14 -0
- data/test/unit/eval_helper/eval_helpers_proc_without_arguments_test.rb +19 -0
- data/test/unit/eval_helper/eval_helpers_string_test.rb +25 -0
- data/test/unit/eval_helper/eval_helpers_string_with_block_test.rb +12 -0
- data/test/unit/eval_helper/eval_helpers_symbol_method_missing_test.rb +20 -0
- data/test/unit/eval_helper/eval_helpers_symbol_private_test.rb +17 -0
- data/test/unit/eval_helper/eval_helpers_symbol_protected_test.rb +17 -0
- data/test/unit/eval_helper/eval_helpers_symbol_tainted_method_test.rb +18 -0
- data/test/unit/eval_helper/eval_helpers_symbol_test.rb +16 -0
- data/test/unit/eval_helper/eval_helpers_symbol_with_arguments_and_block_test.rb +16 -0
- data/test/unit/eval_helper/eval_helpers_symbol_with_arguments_test.rb +16 -0
- data/test/unit/eval_helper/eval_helpers_symbol_with_block_test.rb +16 -0
- data/test/unit/eval_helper/eval_helpers_test.rb +13 -0
- data/test/unit/event/event_after_being_copied_test.rb +17 -0
- data/test/unit/event/event_by_default_test.rb +60 -0
- data/test/unit/event/event_context_test.rb +16 -0
- data/test/unit/event/event_on_failure_test.rb +44 -0
- data/test/unit/event/event_test.rb +34 -0
- data/test/unit/event/event_transitions_test.rb +62 -0
- data/test/unit/event/event_with_conflicting_helpers_after_definition_test.rb +79 -0
- data/test/unit/event/event_with_conflicting_helpers_before_definition_test.rb +58 -0
- data/test/unit/event/event_with_conflicting_machine_test.rb +48 -0
- data/test/unit/event/event_with_dynamic_human_name_test.rb +26 -0
- data/test/unit/event/event_with_human_name_test.rb +13 -0
- data/test/unit/event/event_with_invalid_current_state_test.rb +30 -0
- data/test/unit/event/event_with_machine_action_test.rb +33 -0
- data/test/unit/event/event_with_marshalling_test.rb +47 -0
- data/test/unit/event/event_with_matching_disabled_transitions_test.rb +115 -0
- data/test/unit/event/event_with_matching_enabled_transitions_test.rb +75 -0
- data/test/unit/event/event_with_multiple_transitions_test.rb +61 -0
- data/test/unit/event/event_with_namespace_test.rb +34 -0
- data/test/unit/event/event_with_transition_with_blacklisted_to_state_test.rb +60 -0
- data/test/unit/event/event_with_transition_with_loopback_state_test.rb +36 -0
- data/test/unit/event/event_with_transition_with_nil_to_state_test.rb +36 -0
- data/test/unit/event/event_with_transition_with_whitelisted_to_state_test.rb +51 -0
- data/test/unit/event/event_with_transition_without_to_state_test.rb +36 -0
- data/test/unit/event/event_with_transitions_test.rb +32 -0
- data/test/unit/event/event_without_matching_transitions_test.rb +41 -0
- data/test/unit/event/event_without_transitions_test.rb +28 -0
- data/{spec/state_machines/invalid_event_spec.rb → test/unit/event/invalid_event_test.rb} +8 -7
- data/test/unit/event_collection/event_collection_attribute_with_machine_action_test.rb +62 -0
- data/test/unit/event_collection/event_collection_attribute_with_namespaced_machine_test.rb +36 -0
- data/test/unit/event_collection/event_collection_by_default_test.rb +26 -0
- data/test/unit/event_collection/event_collection_test.rb +39 -0
- data/test/unit/event_collection/event_collection_with_custom_machine_attribute_test.rb +31 -0
- data/test/unit/event_collection/event_collection_with_events_with_transitions_test.rb +76 -0
- data/test/unit/event_collection/event_collection_with_multiple_events_test.rb +27 -0
- data/test/unit/event_collection/event_collection_with_validations_test.rb +75 -0
- data/test/unit/event_collection/event_collection_without_machine_action_test.rb +18 -0
- data/test/unit/event_collection/event_string_collection_test.rb +31 -0
- data/test/unit/helper_module_test.rb +17 -0
- data/test/unit/integrations/integration_finder_test.rb +16 -0
- data/test/unit/integrations/integration_matcher_test.rb +27 -0
- data/test/unit/invalid_transition/invalid_parallel_transition_test.rb +18 -0
- data/test/unit/invalid_transition/invalid_transition_test.rb +47 -0
- data/test/unit/invalid_transition/invalid_transition_with_integration_test.rb +47 -0
- data/test/unit/invalid_transition/invalid_transition_with_namespace_test.rb +32 -0
- data/test/unit/machine/machine_after_being_copied_test.rb +62 -0
- data/test/unit/machine/machine_after_changing_initial_state.rb +28 -0
- data/test/unit/machine/machine_after_changing_owner_class_test.rb +31 -0
- data/test/unit/machine/machine_by_default_test.rb +160 -0
- data/test/unit/machine/machine_finder_custom_options_test.rb +17 -0
- data/test/unit/machine/machine_finder_with_existing_machine_on_superclass_test.rb +86 -0
- data/test/unit/machine/machine_finder_with_existing_on_same_class_test.rb +23 -0
- data/test/unit/machine/machine_finder_without_existing_machine_test.rb +25 -0
- data/test/unit/machine/machine_persistence_test.rb +52 -0
- data/test/unit/machine/machine_state_initialization_test.rb +56 -0
- data/test/unit/machine/machine_test.rb +30 -0
- data/test/unit/machine/machine_with_action_already_overridden_test.rb +23 -0
- data/test/unit/machine/machine_with_action_defined_in_class_test.rb +37 -0
- data/test/unit/machine/machine_with_action_defined_in_included_module_test.rb +46 -0
- data/test/unit/machine/machine_with_action_defined_in_superclass_test.rb +43 -0
- data/test/unit/machine/machine_with_action_undefined_test.rb +33 -0
- data/test/unit/machine/machine_with_cached_state_test.rb +20 -0
- data/test/unit/machine/machine_with_class_helpers_test.rb +179 -0
- data/test/unit/machine/machine_with_conflicting_helpers_after_definition_test.rb +243 -0
- data/test/unit/machine/machine_with_conflicting_helpers_before_definition_test.rb +175 -0
- data/test/unit/machine/machine_with_custom_action_test.rb +11 -0
- data/test/unit/machine/machine_with_custom_attribute_test.rb +103 -0
- data/test/unit/machine/machine_with_custom_initialize_test.rb +24 -0
- data/test/unit/machine/machine_with_custom_integration_test.rb +69 -0
- data/test/unit/machine/machine_with_custom_invalidation_test.rb +40 -0
- data/test/unit/machine/machine_with_custom_name_test.rb +57 -0
- data/test/unit/machine/machine_with_custom_plural_test.rb +53 -0
- data/test/unit/machine/machine_with_dynamic_initial_state_test.rb +65 -0
- data/test/unit/machine/machine_with_event_matchers_test.rb +41 -0
- data/test/unit/machine/machine_with_events_test.rb +52 -0
- data/test/unit/machine/machine_with_events_with_custom_human_names_test.rb +18 -0
- data/test/unit/machine/machine_with_events_with_transitions_test.rb +37 -0
- data/test/unit/machine/machine_with_existing_event_test.rb +17 -0
- data/test/unit/machine/machine_with_existing_machines_on_owner_class_test.rb +20 -0
- data/test/unit/machine/machine_with_existing_machines_with_same_attributes_on_owner_class_test.rb +71 -0
- data/test/unit/machine/machine_with_existing_machines_with_same_attributes_on_owner_subclass_test.rb +31 -0
- data/test/unit/machine/machine_with_existing_state_test.rb +27 -0
- data/test/unit/machine/machine_with_failure_callbacks_test.rb +48 -0
- data/test/unit/machine/machine_with_helpers_test.rb +14 -0
- data/test/unit/machine/machine_with_initial_state_with_value_and_owner_default.rb +25 -0
- data/test/unit/machine/machine_with_initialize_and_super_test.rb +17 -0
- data/test/unit/machine/machine_with_initialize_arguments_and_block_test.rb +31 -0
- data/test/unit/machine/machine_with_initialize_without_super_test.rb +17 -0
- data/test/unit/machine/machine_with_instance_helpers_test.rb +179 -0
- data/test/unit/machine/machine_with_integration_test.rb +71 -0
- data/test/unit/machine/machine_with_multiple_events_test.rb +32 -0
- data/test/unit/machine/machine_with_namespace_test.rb +48 -0
- data/test/unit/machine/machine_with_nil_action_test.rb +24 -0
- data/test/unit/machine/machine_with_other_states.rb +22 -0
- data/test/unit/machine/machine_with_owner_subclass_test.rb +18 -0
- data/test/unit/machine/machine_with_paths_test.rb +25 -0
- data/test/unit/machine/machine_with_private_action_test.rb +43 -0
- data/test/unit/machine/machine_with_state_matchers_test.rb +41 -0
- data/test/unit/machine/machine_with_state_with_matchers_test.rb +19 -0
- data/test/unit/machine/machine_with_states_test.rb +55 -0
- data/test/unit/machine/machine_with_states_with_behaviors_test.rb +23 -0
- data/test/unit/machine/machine_with_states_with_custom_human_names_test.rb +18 -0
- data/test/unit/machine/machine_with_states_with_custom_values_test.rb +21 -0
- data/test/unit/machine/machine_with_states_with_runtime_dependencies_test.rb +19 -0
- data/test/unit/machine/machine_with_static_initial_state_test.rb +60 -0
- data/test/unit/machine/machine_with_superclass_conflicting_helpers_after_definition_test.rb +36 -0
- data/test/unit/machine/machine_with_transition_callbacks_test.rb +144 -0
- data/test/unit/machine/machine_with_transitions_test.rb +87 -0
- data/test/unit/machine/machine_without_initialization_test.rb +31 -0
- data/test/unit/machine/machine_without_initialize_test.rb +14 -0
- data/test/unit/machine/machine_without_integration_test.rb +31 -0
- data/test/unit/machine_collection/machine_collection_by_default_test.rb +11 -0
- data/test/unit/machine_collection/machine_collection_fire_attributes_with_validations_test.rb +72 -0
- data/test/unit/machine_collection/machine_collection_fire_test.rb +80 -0
- data/test/unit/machine_collection/machine_collection_fire_with_transactions_test.rb +54 -0
- data/test/unit/machine_collection/machine_collection_fire_with_validations_test.rb +76 -0
- data/test/unit/machine_collection/machine_collection_state_initialization_test.rb +101 -0
- data/test/unit/machine_collection/machine_collection_transitions_with_blank_events_test.rb +25 -0
- data/test/unit/machine_collection/machine_collection_transitions_with_custom_options_test.rb +20 -0
- data/test/unit/machine_collection/machine_collection_transitions_with_different_actions_test.rb +26 -0
- data/test/unit/machine_collection/machine_collection_transitions_with_exisiting_transitions_test.rb +25 -0
- data/test/unit/machine_collection/machine_collection_transitions_with_invalid_events_test.rb +25 -0
- data/test/unit/machine_collection/machine_collection_transitions_with_same_actions_test.rb +31 -0
- data/test/unit/machine_collection/machine_collection_transitions_with_transition_test.rb +26 -0
- data/test/unit/machine_collection/machine_collection_transitions_without_events_test.rb +25 -0
- data/test/unit/machine_collection/machine_collection_transitions_without_transition_test.rb +27 -0
- data/test/unit/matcher/all_matcher_test.rb +29 -0
- data/test/unit/matcher/blacklist_matcher_test.rb +30 -0
- data/test/unit/matcher/loopback_matcher_test.rb +27 -0
- data/test/unit/matcher/matcher_by_default_test.rb +15 -0
- data/test/unit/matcher/matcher_with_multiple_values_test.rb +15 -0
- data/test/unit/matcher/matcher_with_value_test.rb +15 -0
- data/test/unit/matcher/whitelist_matcher_test.rb +30 -0
- data/test/unit/matcher_helpers/matcher_helpers_all_test.rb +14 -0
- data/test/unit/matcher_helpers/matcher_helpers_any_test.rb +14 -0
- data/test/unit/matcher_helpers/matcher_helpers_same_test.rb +13 -0
- data/test/unit/node_collection/node_collection_after_being_copied_test/n.rb +46 -0
- data/test/unit/node_collection/node_collection_after_update_test/n.rb +36 -0
- data/test/unit/node_collection/node_collection_by_default_test.rb +22 -0
- data/test/unit/node_collection/node_collection_test.rb +23 -0
- data/test/unit/node_collection/node_collection_with_indices_test/n.rb +42 -0
- data/test/unit/node_collection/node_collection_with_matcher_contexts_test.rb +25 -0
- data/test/unit/node_collection/node_collection_with_nodes_test/n.rb +46 -0
- data/test/unit/node_collection/node_collection_with_numeric_index_test/n.rb +24 -0
- data/test/unit/node_collection/node_collection_with_postdefined_contexts_test/n.rb +22 -0
- data/test/unit/node_collection/node_collection_with_predefined_contexts_test/n.rb +23 -0
- data/test/unit/node_collection/node_collection_with_string_index_test/n.rb +20 -0
- data/test/unit/node_collection/node_collection_with_symbol_index_test/n.rb +20 -0
- data/test/unit/node_collection/node_collection_without_indices_test/n.rb +30 -0
- data/test/unit/path/path_by_default_test.rb +54 -0
- data/test/unit/path/path_test.rb +14 -0
- data/test/unit/path/path_with_available_transitions_after_reaching_target_test.rb +40 -0
- data/test/unit/path/path_with_available_transitions_test.rb +54 -0
- data/test/unit/path/path_with_deep_target_reached_test.rb +50 -0
- data/test/unit/path/path_with_deep_target_test.rb +40 -0
- data/test/unit/path/path_with_duplicates_test.rb +32 -0
- data/test/unit/path/path_with_encountered_transitions_test.rb +34 -0
- data/test/unit/path/path_with_guarded_transitions_test.rb +42 -0
- data/test/unit/path/path_with_reached_target_test.rb +35 -0
- data/test/unit/path/path_with_transitions_test.rb +54 -0
- data/test/unit/path/path_with_unreached_target_test.rb +31 -0
- data/test/unit/path/path_without_transitions_test.rb +24 -0
- data/test/unit/path_collection/path_collection_by_default_test.rb +46 -0
- data/test/unit/path_collection/path_collection_test.rb +24 -0
- data/test/unit/path_collection/path_collection_with_deep_paths_test.rb +43 -0
- data/test/unit/path_collection/path_collection_with_duplicate_nodes_test.rb +31 -0
- data/test/unit/path_collection/path_collection_with_from_state_test.rb +27 -0
- data/test/unit/path_collection/path_collection_with_paths_test.rb +47 -0
- data/test/unit/path_collection/path_collection_with_to_state_test.rb +29 -0
- data/test/unit/path_collection/path_with_guarded_paths_test.rb +25 -0
- data/test/unit/state/state_after_being_copied_test.rb +19 -0
- data/test/unit/state/state_by_default_test.rb +41 -0
- data/test/unit/state/state_final_test.rb +28 -0
- data/test/unit/state/state_initial_test.rb +13 -0
- data/test/unit/state/state_not_final_test.rb +32 -0
- data/test/unit/state/state_not_initial_test.rb +13 -0
- data/test/unit/state/state_test.rb +44 -0
- data/test/unit/state/state_with_cached_lambda_value_test.rb +29 -0
- data/test/unit/state/state_with_conflicting_helpers_after_definition_test.rb +38 -0
- data/test/unit/state/state_with_conflicting_helpers_before_definition_test.rb +29 -0
- data/test/unit/state/state_with_conflicting_machine_name_test.rb +20 -0
- data/test/unit/state/state_with_conflicting_machine_test.rb +37 -0
- data/test/unit/state/state_with_context_test.rb +60 -0
- data/test/unit/state/state_with_dynamic_human_name_test.rb +25 -0
- data/test/unit/state/state_with_existing_context_method_test.rb +24 -0
- data/test/unit/state/state_with_human_name_test.rb +13 -0
- data/test/unit/state/state_with_integer_value_test.rb +32 -0
- data/test/unit/state/state_with_invalid_method_call_test.rb +21 -0
- data/test/unit/state/state_with_lambda_value_test.rb +37 -0
- data/test/unit/state/state_with_matcher_test.rb +18 -0
- data/test/unit/state/state_with_multiple_contexts_test.rb +57 -0
- data/test/unit/state/state_with_name_test.rb +43 -0
- data/test/unit/state/state_with_namespace_test.rb +22 -0
- data/test/unit/state/state_with_nil_value_test.rb +35 -0
- data/test/unit/state/state_with_redefined_context_method_test.rb +45 -0
- data/test/unit/state/state_with_symbolic_value_test.rb +32 -0
- data/test/unit/state/state_with_valid_inherited_method_call_for_current_state_test.rb +40 -0
- data/test/unit/state/state_with_valid_method_call_for_current_state_test.rb +33 -0
- data/test/unit/state/state_with_valid_method_call_for_different_state_test.rb +41 -0
- data/test/unit/state/state_without_cached_lambda_value_test.rb +25 -0
- data/test/unit/state/state_without_name_test.rb +39 -0
- data/test/unit/state_collection/state_collection_by_default_test.rb +21 -0
- data/test/unit/state_collection/state_collection_string_test.rb +35 -0
- data/test/unit/state_collection/state_collection_test.rb +74 -0
- data/test/unit/state_collection/state_collection_with_custom_state_values_test.rb +29 -0
- data/test/unit/state_collection/state_collection_with_event_transitions_test.rb +39 -0
- data/test/unit/state_collection/state_collection_with_initial_state_test.rb +40 -0
- data/test/unit/state_collection/state_collection_with_namespace_test.rb +21 -0
- data/test/unit/state_collection/state_collection_with_state_behaviors_test.rb +40 -0
- data/test/unit/state_collection/state_collection_with_state_matchers_test.rb +29 -0
- data/test/unit/state_collection/state_collection_with_transition_callbacks_test.rb +40 -0
- data/test/unit/state_context/state_context_proxy_test.rb +26 -0
- data/test/unit/state_context/state_context_proxy_with_if_and_unless_conditions_test.rb +42 -0
- data/test/unit/state_context/state_context_proxy_with_if_condition_test.rb +64 -0
- data/test/unit/state_context/state_context_proxy_with_multiple_if_conditions_test.rb +32 -0
- data/test/unit/state_context/state_context_proxy_with_multiple_unless_conditions_test.rb +32 -0
- data/test/unit/state_context/state_context_proxy_with_unless_condition_test.rb +64 -0
- data/test/unit/state_context/state_context_proxy_without_conditions_test.rb +31 -0
- data/test/unit/state_context/state_context_test.rb +28 -0
- data/test/unit/state_context/state_context_transition_test.rb +104 -0
- data/test/unit/state_context/state_context_with_matching_transition_test.rb +27 -0
- data/test/unit/state_machine/state_machine_by_default_test.rb +12 -0
- data/test/unit/state_machine/state_machine_test.rb +20 -0
- data/test/unit/transition/transition_after_being_performed_test.rb +48 -0
- data/test/unit/transition/transition_after_being_persisted_test.rb +46 -0
- data/test/unit/transition/transition_after_being_rolled_back_test.rb +35 -0
- data/test/unit/transition/transition_equality_test.rb +52 -0
- data/test/unit/transition/transition_loopback_test.rb +18 -0
- data/test/unit/transition/transition_test.rb +96 -0
- data/test/unit/transition/transition_transient_test.rb +20 -0
- data/test/unit/transition/transition_with_action_test.rb +27 -0
- data/test/unit/transition/transition_with_after_callbacks_skipped_test.rb +127 -0
- data/test/unit/transition/transition_with_after_callbacks_test.rb +93 -0
- data/test/unit/transition/transition_with_around_callbacks_test.rb +141 -0
- data/test/unit/transition/transition_with_before_callbacks_skipped_test.rb +30 -0
- data/test/unit/transition/transition_with_before_callbacks_test.rb +104 -0
- data/test/unit/transition/transition_with_custom_machine_attribute_test.rb +28 -0
- data/test/unit/transition/transition_with_different_states_test.rb +18 -0
- data/test/unit/transition/transition_with_dynamic_to_value_test.rb +19 -0
- data/test/unit/transition/transition_with_failure_callbacks_test.rb +84 -0
- data/test/unit/transition/transition_with_invalid_nodes_test.rb +29 -0
- data/test/unit/transition/transition_with_mixed_callbacks_test.rb +105 -0
- data/test/unit/transition/transition_with_multiple_after_callbacks_test.rb +40 -0
- data/test/unit/transition/transition_with_multiple_around_callbacks_test.rb +114 -0
- data/test/unit/transition/transition_with_multiple_before_callbacks_test.rb +40 -0
- data/test/unit/transition/transition_with_multiple_failure_callbacks_test.rb +40 -0
- data/test/unit/transition/transition_with_namespace_test.rb +47 -0
- data/test/unit/transition/transition_with_perform_arguments_test.rb +35 -0
- data/test/unit/transition/transition_with_transactions_test.rb +42 -0
- data/test/unit/transition/transition_without_callbacks_test.rb +33 -0
- data/test/unit/transition/transition_without_reading_state_test.rb +22 -0
- data/test/unit/transition/transition_without_running_action_test.rb +47 -0
- data/test/unit/transition_collection/attribute_transition_collection_by_default_test.rb +23 -0
- data/test/unit/transition_collection/attribute_transition_collection_marshalling_test.rb +64 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_action_error_test.rb +44 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_action_failed_test.rb +44 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_after_callback_error_test.rb +32 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_after_callback_halt_test.rb +33 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_around_after_yield_callback_error_test.rb +32 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_around_callback_after_yield_error_test.rb +32 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_around_callback_after_yield_halt_test.rb +33 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_around_callback_before_yield_halt_test.rb +33 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_before_callback_error_test.rb +32 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_before_callback_halt_test.rb +33 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_callbacks_test.rb +68 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_event_transitions_test.rb +41 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_events_test.rb +44 -0
- data/test/unit/transition_collection/attribute_transition_collection_with_skipped_after_callbacks_test.rb +42 -0
- data/test/unit/transition_collection/transition_collection_by_default_test.rb +23 -0
- data/test/unit/transition_collection/transition_collection_empty_with_block_test.rb +23 -0
- data/test/unit/transition_collection/transition_collection_empty_without_block_test.rb +12 -0
- data/test/unit/transition_collection/transition_collection_invalid_test.rb +21 -0
- data/test/unit/transition_collection/transition_collection_partial_invalid_test.rb +69 -0
- data/test/unit/transition_collection/transition_collection_test.rb +26 -0
- data/test/unit/transition_collection/transition_collection_valid_test.rb +57 -0
- data/test/unit/transition_collection/transition_collection_with_action_error_test.rb +66 -0
- data/test/unit/transition_collection/transition_collection_with_action_failed_test.rb +60 -0
- data/test/unit/transition_collection/transition_collection_with_action_hook_and_block_test.rb +17 -0
- data/test/unit/transition_collection/transition_collection_with_action_hook_and_skipped_action_test.rb +17 -0
- data/test/unit/transition_collection/transition_collection_with_action_hook_and_skipped_after_callbacks_test.rb +37 -0
- data/test/unit/transition_collection/transition_collection_with_action_hook_base_test.rb +34 -0
- data/test/unit/transition_collection/transition_collection_with_action_hook_error_test.rb +29 -0
- data/test/unit/transition_collection/transition_collection_with_action_hook_invalid_test.rb +17 -0
- data/test/unit/transition_collection/transition_collection_with_action_hook_multiple_test.rb +79 -0
- data/test/unit/transition_collection/transition_collection_with_action_hook_test.rb +45 -0
- data/test/unit/transition_collection/transition_collection_with_action_hook_with_different_actions_test.rb +48 -0
- data/test/unit/transition_collection/transition_collection_with_action_hook_with_nil_action_test.rb +42 -0
- data/test/unit/transition_collection/transition_collection_with_after_callback_halt_test.rb +51 -0
- data/test/unit/transition_collection/transition_collection_with_before_callback_halt_test.rb +47 -0
- data/test/unit/transition_collection/transition_collection_with_block_test.rb +46 -0
- data/test/unit/transition_collection/transition_collection_with_callbacks_test.rb +135 -0
- data/test/unit/transition_collection/transition_collection_with_different_actions_test.rb +189 -0
- data/test/unit/transition_collection/transition_collection_with_duplicate_actions_test.rb +48 -0
- data/test/unit/transition_collection/transition_collection_with_empty_actions_test.rb +41 -0
- data/test/unit/transition_collection/transition_collection_with_mixed_actions_test.rb +41 -0
- data/test/unit/transition_collection/transition_collection_with_skipped_actions_and_block_test.rb +34 -0
- data/test/unit/transition_collection/transition_collection_with_skipped_actions_test.rb +69 -0
- data/test/unit/transition_collection/transition_collection_with_skipped_after_callbacks_and_around_callbacks_test.rb +53 -0
- data/test/unit/transition_collection/transition_collection_with_skipped_after_callbacks_test.rb +34 -0
- data/test/unit/transition_collection/transition_collection_with_transactions_test.rb +65 -0
- data/test/unit/transition_collection/transition_collection_without_transactions_test.rb +29 -0
- metadata +888 -101
- data/spec/models/auto_shop_spec.rb +0 -41
- data/spec/models/car_spec.rb +0 -90
- data/spec/models/motorcycle_spec.rb +0 -44
- data/spec/models/traffic_light_spec.rb +0 -56
- data/spec/models/vehicle_spec.rb +0 -580
- data/spec/spec_helper.rb +0 -7
- data/spec/state_machines/assertions_spec.rb +0 -31
- data/spec/state_machines/branch_spec.rb +0 -827
- data/spec/state_machines/callbacks_spec.rb +0 -706
- data/spec/state_machines/errors_spec.rb +0 -1
- data/spec/state_machines/event_collection_spec.rb +0 -401
- data/spec/state_machines/event_spec.rb +0 -1140
- data/spec/state_machines/helper_spec.rb +0 -14
- data/spec/state_machines/integration_base_spec.rb +0 -12
- data/spec/state_machines/integration_spec.rb +0 -132
- data/spec/state_machines/invalid_parallel_transition_spec.rb +0 -18
- data/spec/state_machines/invalid_transition_spec.rb +0 -114
- data/spec/state_machines/machine_collection_spec.rb +0 -606
- data/spec/state_machines/machine_spec.rb +0 -3176
- data/spec/state_machines/matcher_helpers_spec.rb +0 -39
- data/spec/state_machines/matcher_spec.rb +0 -157
- data/spec/state_machines/node_collection_spec.rb +0 -371
- data/spec/state_machines/path_collection_spec.rb +0 -271
- data/spec/state_machines/path_spec.rb +0 -488
- data/spec/state_machines/state_collection_spec.rb +0 -352
- data/spec/state_machines/state_context_spec.rb +0 -442
- data/spec/state_machines/state_machine_spec.rb +0 -29
- data/spec/state_machines/state_spec.rb +0 -970
- data/spec/state_machines/transition_collection_spec.rb +0 -2199
- data/spec/state_machines/transition_spec.rb +0 -1558
- data/spec/support/migration_helpers.rb +0 -59
- data/spec/support/models.rb +0 -6
@@ -1,970 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
describe StateMachines::State do
|
3
|
-
context 'Drawing' do
|
4
|
-
it 'should raise NotImplementedError' do
|
5
|
-
machine = StateMachines::Machine.new(Class.new)
|
6
|
-
state = StateMachines::State.new(machine, :parked)
|
7
|
-
expect { state.draw(:foo) }.to raise_error(NotImplementedError)
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
context 'ByDefault' do
|
12
|
-
before(:each) do
|
13
|
-
@machine = StateMachines::Machine.new(Class.new)
|
14
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked)
|
15
|
-
end
|
16
|
-
|
17
|
-
it 'should_have_a_machine' do
|
18
|
-
assert_equal @machine, @state.machine
|
19
|
-
end
|
20
|
-
|
21
|
-
it 'should_have_a_name' do
|
22
|
-
assert_equal :parked, @state.name
|
23
|
-
end
|
24
|
-
|
25
|
-
it 'should_have_a_qualified_name' do
|
26
|
-
assert_equal :parked, @state.qualified_name
|
27
|
-
end
|
28
|
-
|
29
|
-
it 'should_have_a_human_name' do
|
30
|
-
assert_equal 'parked', @state.human_name
|
31
|
-
end
|
32
|
-
|
33
|
-
it 'should_use_stringify_the_name_as_the_value' do
|
34
|
-
assert_equal 'parked', @state.value
|
35
|
-
end
|
36
|
-
|
37
|
-
it 'should_not_be_initial' do
|
38
|
-
assert !@state.initial
|
39
|
-
end
|
40
|
-
|
41
|
-
it 'should_not_have_a_matcher' do
|
42
|
-
assert_nil @state.matcher
|
43
|
-
end
|
44
|
-
|
45
|
-
it 'should_not_have_any_methods' do
|
46
|
-
expected = {}
|
47
|
-
assert_equal expected, @state.context_methods
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
context '' do
|
52
|
-
before(:each) do
|
53
|
-
@machine = StateMachines::Machine.new(Class.new)
|
54
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked)
|
55
|
-
end
|
56
|
-
|
57
|
-
it 'should_raise_exception_if_invalid_option_specified' do
|
58
|
-
assert_raise(ArgumentError) { StateMachines::State.new(@machine, :parked, :invalid => true) }
|
59
|
-
# FIXME
|
60
|
-
# assert_equal 'Invalid key(s): invalid', exception.message
|
61
|
-
end
|
62
|
-
|
63
|
-
it 'should_allow_changing_machine' do
|
64
|
-
new_machine = StateMachines::Machine.new(Class.new)
|
65
|
-
@state.machine = new_machine
|
66
|
-
assert_equal new_machine, @state.machine
|
67
|
-
end
|
68
|
-
|
69
|
-
it 'should_allow_changing_value' do
|
70
|
-
@state.value = 1
|
71
|
-
assert_equal 1, @state.value
|
72
|
-
end
|
73
|
-
|
74
|
-
it 'should_allow_changing_initial' do
|
75
|
-
@state.initial = true
|
76
|
-
assert @state.initial
|
77
|
-
end
|
78
|
-
|
79
|
-
it 'should_allow_changing_matcher' do
|
80
|
-
matcher = lambda {}
|
81
|
-
@state.matcher = matcher
|
82
|
-
assert_equal matcher, @state.matcher
|
83
|
-
end
|
84
|
-
|
85
|
-
it 'should_allow_changing_human_name' do
|
86
|
-
@state.human_name = 'stopped'
|
87
|
-
assert_equal 'stopped', @state.human_name
|
88
|
-
end
|
89
|
-
|
90
|
-
it 'should_use_pretty_inspect' do
|
91
|
-
assert_equal '#<StateMachines::State name=:parked value="parked" initial=false>', @state.inspect
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
context 'WithoutName' do
|
96
|
-
before(:each) do
|
97
|
-
@klass = Class.new
|
98
|
-
@machine = StateMachines::Machine.new(@klass)
|
99
|
-
@machine.states << @state = StateMachines::State.new(@machine, nil)
|
100
|
-
end
|
101
|
-
|
102
|
-
it 'should_have_a_nil_name' do
|
103
|
-
assert_nil @state.name
|
104
|
-
end
|
105
|
-
|
106
|
-
it 'should_have_a_nil_qualified_name' do
|
107
|
-
assert_nil @state.qualified_name
|
108
|
-
end
|
109
|
-
|
110
|
-
it 'should_have_an_empty_human_name' do
|
111
|
-
assert_equal 'nil', @state.human_name
|
112
|
-
end
|
113
|
-
|
114
|
-
it 'should_have_a_nil_value' do
|
115
|
-
assert_nil @state.value
|
116
|
-
end
|
117
|
-
|
118
|
-
it 'should_not_redefine_nil_predicate' do
|
119
|
-
object = @klass.new
|
120
|
-
assert !object.nil?
|
121
|
-
assert !object.respond_to?('?')
|
122
|
-
end
|
123
|
-
|
124
|
-
it 'should_have_a_description' do
|
125
|
-
assert_equal 'nil', @state.description
|
126
|
-
end
|
127
|
-
|
128
|
-
it 'should_have_a_description_using_human_name' do
|
129
|
-
assert_equal 'nil', @state.description(:human_name => true)
|
130
|
-
end
|
131
|
-
end
|
132
|
-
|
133
|
-
context 'WithName' do
|
134
|
-
before(:each) do
|
135
|
-
@klass = Class.new
|
136
|
-
@machine = StateMachines::Machine.new(@klass)
|
137
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked)
|
138
|
-
end
|
139
|
-
|
140
|
-
it 'should_have_a_name' do
|
141
|
-
assert_equal :parked, @state.name
|
142
|
-
end
|
143
|
-
|
144
|
-
it 'should_have_a_qualified_name' do
|
145
|
-
assert_equal :parked, @state.name
|
146
|
-
end
|
147
|
-
|
148
|
-
it 'should_have_a_human_name' do
|
149
|
-
assert_equal 'parked', @state.human_name
|
150
|
-
end
|
151
|
-
|
152
|
-
it 'should_use_stringify_the_name_as_the_value' do
|
153
|
-
assert_equal 'parked', @state.value
|
154
|
-
end
|
155
|
-
|
156
|
-
it 'should_match_stringified_name' do
|
157
|
-
assert @state.matches?('parked')
|
158
|
-
assert !@state.matches?('idling')
|
159
|
-
end
|
160
|
-
|
161
|
-
it 'should_not_include_value_in_description' do
|
162
|
-
assert_equal 'parked', @state.description
|
163
|
-
end
|
164
|
-
|
165
|
-
it 'should_allow_using_human_name_in_description' do
|
166
|
-
@state.human_name = 'Parked'
|
167
|
-
assert_equal 'Parked', @state.description(:human_name => true)
|
168
|
-
end
|
169
|
-
|
170
|
-
it 'should_define_predicate' do
|
171
|
-
assert @klass.new.respond_to?(:parked?)
|
172
|
-
end
|
173
|
-
end
|
174
|
-
|
175
|
-
context 'WithNilValue' do
|
176
|
-
before(:each) do
|
177
|
-
@klass = Class.new
|
178
|
-
@machine = StateMachines::Machine.new(@klass)
|
179
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :value => nil)
|
180
|
-
end
|
181
|
-
|
182
|
-
it 'should_have_a_name' do
|
183
|
-
assert_equal :parked, @state.name
|
184
|
-
end
|
185
|
-
|
186
|
-
it 'should_have_a_nil_value' do
|
187
|
-
assert_nil @state.value
|
188
|
-
end
|
189
|
-
|
190
|
-
it 'should_match_nil_values' do
|
191
|
-
assert @state.matches?(nil)
|
192
|
-
end
|
193
|
-
|
194
|
-
it 'should_have_a_description' do
|
195
|
-
assert_equal 'parked (nil)', @state.description
|
196
|
-
end
|
197
|
-
|
198
|
-
it 'should_have_a_description_with_human_name' do
|
199
|
-
@state.human_name = 'Parked'
|
200
|
-
assert_equal 'Parked (nil)', @state.description(:human_name => true)
|
201
|
-
end
|
202
|
-
|
203
|
-
it 'should_define_predicate' do
|
204
|
-
object = @klass.new
|
205
|
-
assert object.respond_to?(:parked?)
|
206
|
-
end
|
207
|
-
end
|
208
|
-
|
209
|
-
context 'WithSymbolicValue' do
|
210
|
-
before(:each) do
|
211
|
-
@klass = Class.new
|
212
|
-
@machine = StateMachines::Machine.new(@klass)
|
213
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :value => :parked)
|
214
|
-
end
|
215
|
-
|
216
|
-
it 'should_use_custom_value' do
|
217
|
-
assert_equal :parked, @state.value
|
218
|
-
end
|
219
|
-
|
220
|
-
it 'should_not_include_value_in_description' do
|
221
|
-
assert_equal 'parked', @state.description
|
222
|
-
end
|
223
|
-
|
224
|
-
it 'should_allow_human_name_in_description' do
|
225
|
-
@state.human_name = 'Parked'
|
226
|
-
assert_equal 'Parked', @state.description(:human_name => true)
|
227
|
-
end
|
228
|
-
|
229
|
-
it 'should_match_symbolic_value' do
|
230
|
-
assert @state.matches?(:parked)
|
231
|
-
assert !@state.matches?('parked')
|
232
|
-
end
|
233
|
-
|
234
|
-
it 'should_define_predicate' do
|
235
|
-
object = @klass.new
|
236
|
-
assert object.respond_to?(:parked?)
|
237
|
-
end
|
238
|
-
end
|
239
|
-
|
240
|
-
context 'WithIntegerValue' do
|
241
|
-
before(:each) do
|
242
|
-
@klass = Class.new
|
243
|
-
@machine = StateMachines::Machine.new(@klass)
|
244
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :value => 1)
|
245
|
-
end
|
246
|
-
|
247
|
-
it 'should_use_custom_value' do
|
248
|
-
assert_equal 1, @state.value
|
249
|
-
end
|
250
|
-
|
251
|
-
it 'should_include_value_in_description' do
|
252
|
-
assert_equal 'parked (1)', @state.description
|
253
|
-
end
|
254
|
-
|
255
|
-
it 'should_allow_human_name_in_description' do
|
256
|
-
@state.human_name = 'Parked'
|
257
|
-
assert_equal 'Parked (1)', @state.description(:human_name => true)
|
258
|
-
end
|
259
|
-
|
260
|
-
it 'should_match_integer_value' do
|
261
|
-
assert @state.matches?(1)
|
262
|
-
assert !@state.matches?(2)
|
263
|
-
end
|
264
|
-
|
265
|
-
it 'should_define_predicate' do
|
266
|
-
object = @klass.new
|
267
|
-
assert object.respond_to?(:parked?)
|
268
|
-
end
|
269
|
-
end
|
270
|
-
|
271
|
-
context 'WithLambdaValue' do
|
272
|
-
before(:each) do
|
273
|
-
@klass = Class.new
|
274
|
-
@args = nil
|
275
|
-
@machine = StateMachines::Machine.new(@klass)
|
276
|
-
@value = lambda { |*args| @args = args; :parked }
|
277
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :value => @value)
|
278
|
-
end
|
279
|
-
|
280
|
-
it 'should_use_evaluated_value_by_default' do
|
281
|
-
assert_equal :parked, @state.value
|
282
|
-
end
|
283
|
-
|
284
|
-
it 'should_allow_access_to_original_value' do
|
285
|
-
assert_equal @value, @state.value(false)
|
286
|
-
end
|
287
|
-
|
288
|
-
it 'should_include_masked_value_in_description' do
|
289
|
-
assert_equal 'parked (*)', @state.description
|
290
|
-
end
|
291
|
-
|
292
|
-
it 'should_not_pass_in_any_arguments' do
|
293
|
-
@state.value
|
294
|
-
assert_equal [], @args
|
295
|
-
end
|
296
|
-
|
297
|
-
it 'should_define_predicate' do
|
298
|
-
object = @klass.new
|
299
|
-
assert object.respond_to?(:parked?)
|
300
|
-
end
|
301
|
-
|
302
|
-
it 'should_match_evaluated_value' do
|
303
|
-
assert @state.matches?(:parked)
|
304
|
-
end
|
305
|
-
end
|
306
|
-
|
307
|
-
context 'WithCachedLambdaValue' do
|
308
|
-
before(:each) do
|
309
|
-
@klass = Class.new
|
310
|
-
@machine = StateMachines::Machine.new(@klass)
|
311
|
-
@dynamic_value = lambda { 'value' }
|
312
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :value => @dynamic_value, :cache => true)
|
313
|
-
end
|
314
|
-
|
315
|
-
it 'should_be_caching' do
|
316
|
-
assert @state.cache
|
317
|
-
end
|
318
|
-
|
319
|
-
it 'should_evaluate_value' do
|
320
|
-
assert_equal 'value', @state.value
|
321
|
-
end
|
322
|
-
|
323
|
-
it 'should_only_evaluate_value_once' do
|
324
|
-
value = @state.value
|
325
|
-
assert_same value, @state.value
|
326
|
-
end
|
327
|
-
|
328
|
-
it 'should_update_value_index_for_state_collection' do
|
329
|
-
@state.value
|
330
|
-
assert_equal @state, @machine.states['value', :value]
|
331
|
-
assert_nil @machine.states[@dynamic_value, :value]
|
332
|
-
end
|
333
|
-
end
|
334
|
-
|
335
|
-
context 'WithoutCachedLambdaValue' do
|
336
|
-
before(:each) do
|
337
|
-
@klass = Class.new
|
338
|
-
@machine = StateMachines::Machine.new(@klass)
|
339
|
-
@dynamic_value = lambda { 'value' }
|
340
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :value => @dynamic_value)
|
341
|
-
end
|
342
|
-
|
343
|
-
it 'should_not_be_caching' do
|
344
|
-
assert !@state.cache
|
345
|
-
end
|
346
|
-
|
347
|
-
it 'should_evaluate_value_each_time' do
|
348
|
-
value = @state.value
|
349
|
-
assert_not_same value, @state.value
|
350
|
-
end
|
351
|
-
|
352
|
-
it 'should_not_update_value_index_for_state_collection' do
|
353
|
-
@state.value
|
354
|
-
assert_nil @machine.states['value', :value]
|
355
|
-
assert_equal @state, @machine.states[@dynamic_value, :value]
|
356
|
-
end
|
357
|
-
end
|
358
|
-
|
359
|
-
context 'WithMatcher' do
|
360
|
-
before(:each) do
|
361
|
-
@klass = Class.new
|
362
|
-
@args = nil
|
363
|
-
@machine = StateMachines::Machine.new(@klass)
|
364
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :if => lambda { |value| value == 1 })
|
365
|
-
end
|
366
|
-
|
367
|
-
it 'should_not_match_actual_value' do
|
368
|
-
assert !@state.matches?('parked')
|
369
|
-
end
|
370
|
-
|
371
|
-
it 'should_match_evaluated_block' do
|
372
|
-
assert @state.matches?(1)
|
373
|
-
end
|
374
|
-
end
|
375
|
-
|
376
|
-
context 'WithHumanName' do
|
377
|
-
before(:each) do
|
378
|
-
@klass = Class.new
|
379
|
-
@machine = StateMachines::Machine.new(@klass)
|
380
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :human_name => 'stopped')
|
381
|
-
end
|
382
|
-
|
383
|
-
it 'should_use_custom_human_name' do
|
384
|
-
assert_equal 'stopped', @state.human_name
|
385
|
-
end
|
386
|
-
end
|
387
|
-
|
388
|
-
context 'WithDynamicHumanName' do
|
389
|
-
before(:each) do
|
390
|
-
@klass = Class.new
|
391
|
-
@machine = StateMachines::Machine.new(@klass)
|
392
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :human_name => lambda { |state, object| ['stopped', object] })
|
393
|
-
end
|
394
|
-
|
395
|
-
it 'should_use_custom_human_name' do
|
396
|
-
human_name, klass = @state.human_name
|
397
|
-
assert_equal 'stopped', human_name
|
398
|
-
assert_equal @klass, klass
|
399
|
-
end
|
400
|
-
|
401
|
-
it 'should_allow_custom_class_to_be_passed_through' do
|
402
|
-
human_name, klass = @state.human_name(1)
|
403
|
-
assert_equal 'stopped', human_name
|
404
|
-
assert_equal 1, klass
|
405
|
-
end
|
406
|
-
|
407
|
-
it 'should_not_cache_value' do
|
408
|
-
assert_not_same @state.human_name, @state.human_name
|
409
|
-
end
|
410
|
-
end
|
411
|
-
|
412
|
-
context 'Initial' do
|
413
|
-
before(:each) do
|
414
|
-
@machine = StateMachines::Machine.new(Class.new)
|
415
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :initial => true)
|
416
|
-
end
|
417
|
-
|
418
|
-
it 'should_be_initial' do
|
419
|
-
assert @state.initial
|
420
|
-
assert @state.initial?
|
421
|
-
end
|
422
|
-
end
|
423
|
-
|
424
|
-
context 'NotInitial' do
|
425
|
-
before(:each) do
|
426
|
-
@machine = StateMachines::Machine.new(Class.new)
|
427
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked, :initial => false)
|
428
|
-
end
|
429
|
-
|
430
|
-
it 'should_not_be_initial' do
|
431
|
-
assert !@state.initial
|
432
|
-
assert !@state.initial?
|
433
|
-
end
|
434
|
-
end
|
435
|
-
|
436
|
-
context 'Final' do
|
437
|
-
before(:each) do
|
438
|
-
@machine = StateMachines::Machine.new(Class.new)
|
439
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked)
|
440
|
-
end
|
441
|
-
|
442
|
-
it 'should_be_final_without_input_transitions' do
|
443
|
-
assert @state.final?
|
444
|
-
end
|
445
|
-
|
446
|
-
it 'should_be_final_with_input_transitions' do
|
447
|
-
@machine.event :park do
|
448
|
-
transition :idling => :parked
|
449
|
-
end
|
450
|
-
|
451
|
-
assert @state.final?
|
452
|
-
end
|
453
|
-
|
454
|
-
it 'should_be_final_with_loopback' do
|
455
|
-
@machine.event :ignite do
|
456
|
-
transition :parked => same
|
457
|
-
end
|
458
|
-
|
459
|
-
assert @state.final?
|
460
|
-
end
|
461
|
-
end
|
462
|
-
|
463
|
-
context 'NotFinal' do
|
464
|
-
before(:each) do
|
465
|
-
@machine = StateMachines::Machine.new(Class.new)
|
466
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked)
|
467
|
-
end
|
468
|
-
|
469
|
-
it 'should_not_be_final_with_outgoing_whitelist_transitions' do
|
470
|
-
@machine.event :ignite do
|
471
|
-
transition :parked => :idling
|
472
|
-
end
|
473
|
-
|
474
|
-
assert !@state.final?
|
475
|
-
end
|
476
|
-
|
477
|
-
it 'should_not_be_final_with_outgoing_all_transitions' do
|
478
|
-
@machine.event :ignite do
|
479
|
-
transition all => :idling
|
480
|
-
end
|
481
|
-
|
482
|
-
assert !@state.final?
|
483
|
-
end
|
484
|
-
|
485
|
-
it 'should_not_be_final_with_outgoing_blacklist_transitions' do
|
486
|
-
@machine.event :ignite do
|
487
|
-
transition all - :first_gear => :idling
|
488
|
-
end
|
489
|
-
|
490
|
-
assert !@state.final?
|
491
|
-
end
|
492
|
-
end
|
493
|
-
|
494
|
-
context 'WithConflictingHelpersBeforeDefinition' do
|
495
|
-
before(:each) do
|
496
|
-
require 'stringio'
|
497
|
-
@original_stderr, $stderr = $stderr, StringIO.new
|
498
|
-
|
499
|
-
@superclass = Class.new do
|
500
|
-
def parked?
|
501
|
-
0
|
502
|
-
end
|
503
|
-
end
|
504
|
-
@klass = Class.new(@superclass)
|
505
|
-
@machine = StateMachines::Machine.new(@klass)
|
506
|
-
@machine.state :parked
|
507
|
-
@object = @klass.new
|
508
|
-
end
|
509
|
-
|
510
|
-
it 'should_not_override_state_predicate' do
|
511
|
-
assert_equal 0, @object.parked?
|
512
|
-
end
|
513
|
-
|
514
|
-
it 'should_output_warning' do
|
515
|
-
assert_equal "Instance method \"parked?\" is already defined in #{@superclass.to_s}, use generic helper instead or set StateMachines::Machine.ignore_method_conflicts = true.\n", $stderr.string
|
516
|
-
end
|
517
|
-
|
518
|
-
def teardown
|
519
|
-
$stderr = @original_stderr
|
520
|
-
end
|
521
|
-
end
|
522
|
-
|
523
|
-
context 'WithConflictingHelpersAfterDefinition' do
|
524
|
-
before(:each) do
|
525
|
-
require 'stringio'
|
526
|
-
@original_stderr, $stderr = $stderr, StringIO.new
|
527
|
-
|
528
|
-
@klass = Class.new do
|
529
|
-
def parked?
|
530
|
-
0
|
531
|
-
end
|
532
|
-
end
|
533
|
-
@machine = StateMachines::Machine.new(@klass)
|
534
|
-
@machine.state :parked
|
535
|
-
@object = @klass.new
|
536
|
-
end
|
537
|
-
|
538
|
-
it 'should_not_override_state_predicate' do
|
539
|
-
assert_equal 0, @object.parked?
|
540
|
-
end
|
541
|
-
|
542
|
-
it 'should_still_allow_super_chaining' do
|
543
|
-
@klass.class_eval do
|
544
|
-
def parked?
|
545
|
-
super
|
546
|
-
end
|
547
|
-
end
|
548
|
-
|
549
|
-
assert_equal false, @object.parked?
|
550
|
-
end
|
551
|
-
|
552
|
-
it 'should_not_output_warning' do
|
553
|
-
assert_equal '', $stderr.string
|
554
|
-
end
|
555
|
-
|
556
|
-
def teardown
|
557
|
-
$stderr = @original_stderr
|
558
|
-
end
|
559
|
-
end
|
560
|
-
|
561
|
-
context 'WithConflictingMachine' do
|
562
|
-
before(:each) do
|
563
|
-
require 'stringio'
|
564
|
-
@original_stderr, $stderr = $stderr, StringIO.new
|
565
|
-
|
566
|
-
@klass = Class.new
|
567
|
-
@state_machine = StateMachines::Machine.new(@klass, :state)
|
568
|
-
@state_machine.states << @state = StateMachines::State.new(@state_machine, :parked)
|
569
|
-
end
|
570
|
-
|
571
|
-
it 'should_output_warning_if_using_different_attribute' do
|
572
|
-
@status_machine = StateMachines::Machine.new(@klass, :status)
|
573
|
-
@status_machine.states << @state = StateMachines::State.new(@status_machine, :parked)
|
574
|
-
|
575
|
-
assert_equal "State :parked for :status is already defined in :state\n", $stderr.string
|
576
|
-
end
|
577
|
-
|
578
|
-
it 'should_not_output_warning_if_using_same_attribute' do
|
579
|
-
@status_machine = StateMachines::Machine.new(@klass, :status, :attribute => :state)
|
580
|
-
@status_machine.states << @state = StateMachines::State.new(@status_machine, :parked)
|
581
|
-
|
582
|
-
assert_equal '', $stderr.string
|
583
|
-
end
|
584
|
-
|
585
|
-
it 'should_not_output_warning_if_using_different_namespace' do
|
586
|
-
@status_machine = StateMachines::Machine.new(@klass, :status, :namespace => 'alarm')
|
587
|
-
@status_machine.states << @state = StateMachines::State.new(@status_machine, :parked)
|
588
|
-
|
589
|
-
assert_equal '', $stderr.string
|
590
|
-
end
|
591
|
-
|
592
|
-
def teardown
|
593
|
-
$stderr = @original_stderr
|
594
|
-
end
|
595
|
-
end
|
596
|
-
|
597
|
-
context 'WithConflictingMachineName' do
|
598
|
-
before(:each) do
|
599
|
-
require 'stringio'
|
600
|
-
@original_stderr, $stderr = $stderr, StringIO.new
|
601
|
-
|
602
|
-
@klass = Class.new
|
603
|
-
@state_machine = StateMachines::Machine.new(@klass, :state)
|
604
|
-
end
|
605
|
-
|
606
|
-
it 'should_output_warning_if_name_conflicts' do
|
607
|
-
StateMachines::State.new(@state_machine, :state)
|
608
|
-
assert_equal "Instance method \"state?\" is already defined in #{@klass} :state instance helpers, use generic helper instead or set StateMachines::Machine.ignore_method_conflicts = true.\n", $stderr.string
|
609
|
-
end
|
610
|
-
|
611
|
-
def teardown
|
612
|
-
$stderr = @original_stderr
|
613
|
-
end
|
614
|
-
end
|
615
|
-
|
616
|
-
context 'WithNamespace' do
|
617
|
-
before(:each) do
|
618
|
-
@klass = Class.new
|
619
|
-
@machine = StateMachines::Machine.new(@klass, :namespace => 'alarm')
|
620
|
-
@machine.states << @state = StateMachines::State.new(@machine, :active)
|
621
|
-
@object = @klass.new
|
622
|
-
end
|
623
|
-
|
624
|
-
it 'should_have_a_name' do
|
625
|
-
assert_equal :active, @state.name
|
626
|
-
end
|
627
|
-
|
628
|
-
it 'should_have_a_qualified_name' do
|
629
|
-
assert_equal :alarm_active, @state.qualified_name
|
630
|
-
end
|
631
|
-
|
632
|
-
it 'should_namespace_predicate' do
|
633
|
-
assert @object.respond_to?(:alarm_active?)
|
634
|
-
end
|
635
|
-
end
|
636
|
-
|
637
|
-
context 'AfterBeingCopied' do
|
638
|
-
before(:each) do
|
639
|
-
@machine = StateMachines::Machine.new(Class.new)
|
640
|
-
@machine.states << @state = StateMachines::State.new(@machine, :parked)
|
641
|
-
@copied_state = @state.dup
|
642
|
-
end
|
643
|
-
|
644
|
-
it 'should_not_have_the_context' do
|
645
|
-
state_context = nil
|
646
|
-
@state.context { state_context = self }
|
647
|
-
|
648
|
-
copied_state_context = nil
|
649
|
-
@copied_state.context { copied_state_context = self }
|
650
|
-
|
651
|
-
assert_not_same state_context, copied_state_context
|
652
|
-
end
|
653
|
-
end
|
654
|
-
|
655
|
-
context 'WithContext' do
|
656
|
-
before(:each) do
|
657
|
-
@klass = Class.new
|
658
|
-
@machine = StateMachines::Machine.new(@klass)
|
659
|
-
@ancestors = @klass.ancestors
|
660
|
-
@machine.states << @state = StateMachines::State.new(@machine, :idling)
|
661
|
-
|
662
|
-
context = nil
|
663
|
-
speed_method = nil
|
664
|
-
rpm_method = nil
|
665
|
-
@result = @state.context do
|
666
|
-
context = self
|
667
|
-
|
668
|
-
def speed
|
669
|
-
0
|
670
|
-
end
|
671
|
-
|
672
|
-
speed_method = instance_method(:speed)
|
673
|
-
|
674
|
-
def rpm
|
675
|
-
1000
|
676
|
-
end
|
677
|
-
|
678
|
-
rpm_method = instance_method(:rpm)
|
679
|
-
end
|
680
|
-
|
681
|
-
@context = context
|
682
|
-
@speed_method = speed_method
|
683
|
-
@rpm_method = rpm_method
|
684
|
-
end
|
685
|
-
|
686
|
-
it 'should_return_true' do
|
687
|
-
assert_equal true, @result
|
688
|
-
end
|
689
|
-
|
690
|
-
it 'should_include_new_module_in_owner_class' do
|
691
|
-
assert_not_equal @ancestors, @klass.ancestors
|
692
|
-
assert_equal [@context], @klass.ancestors - @ancestors
|
693
|
-
end
|
694
|
-
|
695
|
-
it 'should_define_each_context_method_in_owner_class' do
|
696
|
-
%w(speed rpm).each { |method| assert @klass.method_defined?(method) }
|
697
|
-
end
|
698
|
-
|
699
|
-
it 'should_define_aliased_context_method_in_owner_class' do
|
700
|
-
%w(speed rpm).each { |method| assert @klass.method_defined?("__state_idling_#{method}_#{@context.object_id}__") }
|
701
|
-
end
|
702
|
-
|
703
|
-
it 'should_not_use_context_methods_as_owner_class_methods' do
|
704
|
-
assert_not_equal @speed_method, @state.context_methods[:speed]
|
705
|
-
assert_not_equal @rpm_method, @state.context_methods[:rpm]
|
706
|
-
end
|
707
|
-
|
708
|
-
it 'should_use_context_methods_as_aliased_owner_class_methods' do
|
709
|
-
assert_equal @speed_method, @state.context_methods[:"__state_idling_speed_#{@context.object_id}__"]
|
710
|
-
assert_equal @rpm_method, @state.context_methods[:"__state_idling_rpm_#{@context.object_id}__"]
|
711
|
-
end
|
712
|
-
end
|
713
|
-
|
714
|
-
context 'WithMultipleContexts' do
|
715
|
-
before(:each) do
|
716
|
-
@klass = Class.new
|
717
|
-
@machine = StateMachines::Machine.new(@klass)
|
718
|
-
@ancestors = @klass.ancestors
|
719
|
-
@machine.states << @state = StateMachines::State.new(@machine, :idling)
|
720
|
-
|
721
|
-
context = nil
|
722
|
-
speed_method = nil
|
723
|
-
@state.context do
|
724
|
-
context = self
|
725
|
-
|
726
|
-
def speed
|
727
|
-
0
|
728
|
-
end
|
729
|
-
|
730
|
-
speed_method = instance_method(:speed)
|
731
|
-
end
|
732
|
-
@context = context
|
733
|
-
@speed_method = speed_method
|
734
|
-
|
735
|
-
rpm_method = nil
|
736
|
-
@state.context do
|
737
|
-
def rpm
|
738
|
-
1000
|
739
|
-
end
|
740
|
-
|
741
|
-
rpm_method = instance_method(:rpm)
|
742
|
-
end
|
743
|
-
@rpm_method = rpm_method
|
744
|
-
end
|
745
|
-
|
746
|
-
it 'should_include_new_module_in_owner_class' do
|
747
|
-
assert_not_equal @ancestors, @klass.ancestors
|
748
|
-
assert_equal [@context], @klass.ancestors - @ancestors
|
749
|
-
end
|
750
|
-
|
751
|
-
it 'should_define_each_context_method_in_owner_class' do
|
752
|
-
%w(speed rpm).each { |method| assert @klass.method_defined?(method) }
|
753
|
-
end
|
754
|
-
|
755
|
-
it 'should_define_aliased_context_method_in_owner_class' do
|
756
|
-
%w(speed rpm).each { |method| assert @klass.method_defined?("__state_idling_#{method}_#{@context.object_id}__") }
|
757
|
-
end
|
758
|
-
|
759
|
-
it 'should_not_use_context_methods_as_owner_class_methods' do
|
760
|
-
assert_not_equal @speed_method, @state.context_methods[:speed]
|
761
|
-
assert_not_equal @rpm_method, @state.context_methods[:rpm]
|
762
|
-
end
|
763
|
-
|
764
|
-
it 'should_use_context_methods_as_aliased_owner_class_methods' do
|
765
|
-
assert_equal @speed_method, @state.context_methods[:"__state_idling_speed_#{@context.object_id}__"]
|
766
|
-
assert_equal @rpm_method, @state.context_methods[:"__state_idling_rpm_#{@context.object_id}__"]
|
767
|
-
end
|
768
|
-
end
|
769
|
-
|
770
|
-
context 'WithExistingContextMethod' do
|
771
|
-
before(:each) do
|
772
|
-
@klass = Class.new do
|
773
|
-
def speed
|
774
|
-
60
|
775
|
-
end
|
776
|
-
end
|
777
|
-
@original_speed_method = @klass.instance_method(:speed)
|
778
|
-
|
779
|
-
@machine = StateMachines::Machine.new(@klass)
|
780
|
-
@machine.states << @state = StateMachines::State.new(@machine, :idling)
|
781
|
-
@state.context do
|
782
|
-
def speed
|
783
|
-
0
|
784
|
-
end
|
785
|
-
end
|
786
|
-
end
|
787
|
-
|
788
|
-
it 'should_not_override_method' do
|
789
|
-
assert_equal @original_speed_method, @klass.instance_method(:speed)
|
790
|
-
end
|
791
|
-
end
|
792
|
-
|
793
|
-
context 'WithRedefinedContextMethod' do
|
794
|
-
before(:each) do
|
795
|
-
@klass = Class.new
|
796
|
-
@machine = StateMachines::Machine.new(@klass)
|
797
|
-
@machine.states << @state = StateMachines::State.new(@machine, 'on')
|
798
|
-
|
799
|
-
old_context = nil
|
800
|
-
old_speed_method = nil
|
801
|
-
@state.context do
|
802
|
-
old_context = self
|
803
|
-
|
804
|
-
def speed
|
805
|
-
0
|
806
|
-
end
|
807
|
-
|
808
|
-
old_speed_method = instance_method(:speed)
|
809
|
-
end
|
810
|
-
@old_context = old_context
|
811
|
-
@old_speed_method = old_speed_method
|
812
|
-
|
813
|
-
current_context = nil
|
814
|
-
current_speed_method = nil
|
815
|
-
@state.context do
|
816
|
-
current_context = self
|
817
|
-
|
818
|
-
def speed
|
819
|
-
'green'
|
820
|
-
end
|
821
|
-
|
822
|
-
current_speed_method = instance_method(:speed)
|
823
|
-
end
|
824
|
-
@current_context = current_context
|
825
|
-
@current_speed_method = current_speed_method
|
826
|
-
end
|
827
|
-
|
828
|
-
it 'should_track_latest_defined_method' do
|
829
|
-
assert_equal @current_speed_method, @state.context_methods[:"__state_on_speed_#{@current_context.object_id}__"]
|
830
|
-
end
|
831
|
-
|
832
|
-
it 'should_have_the_same_context' do
|
833
|
-
assert_equal @current_context, @old_context
|
834
|
-
end
|
835
|
-
end
|
836
|
-
|
837
|
-
context 'WithInvalidMethodCall' do
|
838
|
-
before(:each) do
|
839
|
-
@klass = Class.new
|
840
|
-
@machine = StateMachines::Machine.new(@klass)
|
841
|
-
@ancestors = @klass.ancestors
|
842
|
-
@machine.states << @state = StateMachines::State.new(@machine, :idling)
|
843
|
-
@state.context do
|
844
|
-
def speed
|
845
|
-
0
|
846
|
-
end
|
847
|
-
end
|
848
|
-
|
849
|
-
@object = @klass.new
|
850
|
-
end
|
851
|
-
|
852
|
-
it 'should_call_method_missing_arg' do
|
853
|
-
assert_equal 1, @state.call(@object, :invalid, :method_missing => lambda { 1 })
|
854
|
-
end
|
855
|
-
end
|
856
|
-
|
857
|
-
context 'WithValidMethodCallForDifferentState' do
|
858
|
-
before(:each) do
|
859
|
-
@klass = Class.new
|
860
|
-
@machine = StateMachines::Machine.new(@klass)
|
861
|
-
@ancestors = @klass.ancestors
|
862
|
-
@machine.states << @state = StateMachines::State.new(@machine, :idling)
|
863
|
-
@state.context do
|
864
|
-
def speed
|
865
|
-
0
|
866
|
-
end
|
867
|
-
end
|
868
|
-
|
869
|
-
@object = @klass.new
|
870
|
-
end
|
871
|
-
|
872
|
-
it 'should_call_method_missing_arg' do
|
873
|
-
assert_equal 1, @state.call(@object, :speed, :method_missing => lambda { 1 })
|
874
|
-
end
|
875
|
-
|
876
|
-
it 'should_raise_invalid_context_on_no_method_error' do
|
877
|
-
assert_raise(StateMachines::InvalidContext) do
|
878
|
-
@state.call(@object, :speed, :method_missing => lambda { raise NoMethodError.new('Invalid', :speed, []) })
|
879
|
-
end
|
880
|
-
# FIXME
|
881
|
-
# assert_equal @object, exception.object
|
882
|
-
# assert_equal 'State nil for :state is not a valid context for calling #speed', exception.message
|
883
|
-
end
|
884
|
-
|
885
|
-
it 'should_raise_original_error_on_no_method_error_with_different_arguments' do
|
886
|
-
assert_raise(NoMethodError) do
|
887
|
-
@state.call(@object, :speed, :method_missing => lambda { raise NoMethodError.new('Invalid', :speed, [1]) })
|
888
|
-
end
|
889
|
-
end
|
890
|
-
|
891
|
-
it 'should_raise_original_error_on_no_method_error_for_different_method' do
|
892
|
-
assert_raise(NoMethodError) do
|
893
|
-
@state.call(@object, :speed, :method_missing => lambda { raise NoMethodError.new('Invalid', :rpm, []) })
|
894
|
-
end
|
895
|
-
end
|
896
|
-
end
|
897
|
-
|
898
|
-
context 'WithValidMethodCallForCurrentState' do
|
899
|
-
before(:each) do
|
900
|
-
@klass = Class.new
|
901
|
-
@machine = StateMachines::Machine.new(@klass, :initial => :idling)
|
902
|
-
@ancestors = @klass.ancestors
|
903
|
-
@state = @machine.state(:idling)
|
904
|
-
@state.context do
|
905
|
-
def speed(arg = nil)
|
906
|
-
block_given? ? [arg, yield] : arg
|
907
|
-
end
|
908
|
-
end
|
909
|
-
|
910
|
-
@object = @klass.new
|
911
|
-
end
|
912
|
-
|
913
|
-
it 'should_not_raise_an_exception' do
|
914
|
-
assert_nothing_raised { @state.call(@object, :speed, :method_missing => lambda { raise }) }
|
915
|
-
end
|
916
|
-
|
917
|
-
it 'should_pass_arguments_through' do
|
918
|
-
assert_equal 1, @state.call(@object, :speed, 1, :method_missing => lambda {})
|
919
|
-
end
|
920
|
-
|
921
|
-
it 'should_pass_blocks_through' do
|
922
|
-
assert_equal [nil, 1], @state.call(@object, :speed) { 1 }
|
923
|
-
end
|
924
|
-
|
925
|
-
it 'should_pass_both_arguments_and_blocks_through' do
|
926
|
-
assert_equal [1, 2], @state.call(@object, :speed, 1, :method_missing => lambda {}) { 2 }
|
927
|
-
end
|
928
|
-
end
|
929
|
-
|
930
|
-
if RUBY_VERSION > '1.8.7'
|
931
|
-
context 'WithValidInheritedMethodCallForCurrentState' do
|
932
|
-
before(:each) do
|
933
|
-
@superclass = Class.new do
|
934
|
-
def speed(arg = nil)
|
935
|
-
[arg]
|
936
|
-
end
|
937
|
-
end
|
938
|
-
@klass = Class.new(@superclass)
|
939
|
-
@machine = StateMachines::Machine.new(@klass, :initial => :idling)
|
940
|
-
@ancestors = @klass.ancestors
|
941
|
-
@state = @machine.state(:idling)
|
942
|
-
@state.context do
|
943
|
-
def speed(arg = nil)
|
944
|
-
[arg] + super(2)
|
945
|
-
end
|
946
|
-
end
|
947
|
-
|
948
|
-
@object = @klass.new
|
949
|
-
end
|
950
|
-
|
951
|
-
it 'should_not_raise_an_exception' do
|
952
|
-
assert_nothing_raised { @state.call(@object, :speed, :method_missing => lambda { raise }) }
|
953
|
-
end
|
954
|
-
|
955
|
-
it 'should_be_able_to_call_super' do
|
956
|
-
assert_equal [1, 2], @state.call(@object, :speed, 1)
|
957
|
-
end
|
958
|
-
|
959
|
-
it 'should_allow_redefinition' do
|
960
|
-
@state.context do
|
961
|
-
def speed(arg = nil)
|
962
|
-
[arg] + super(3)
|
963
|
-
end
|
964
|
-
end
|
965
|
-
|
966
|
-
assert_equal [1, 3], @state.call(@object, :speed, 1)
|
967
|
-
end
|
968
|
-
end
|
969
|
-
end
|
970
|
-
end
|