1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969
|
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
class BranchTest < Test::Unit::TestCase
def setup
@branch = StateMachine::Branch.new(:from => :parked, :to => :idling)
end
def test_should_not_raise_exception_if_implicit_option_specified
assert_nothing_raised { StateMachine::Branch.new(:invalid => :valid) }
end
def test_should_not_have_an_if_condition
assert_nil @branch.if_condition
end
def test_should_not_have_an_unless_condition
assert_nil @branch.unless_condition
end
def test_should_have_a_state_requirement
assert_equal 1, @branch.state_requirements.length
end
def test_should_raise_an_exception_if_invalid_match_option_specified
exception = assert_raise(ArgumentError) { @branch.match(Object.new, :invalid => true) }
assert_equal 'Invalid key(s): invalid', exception.message
end
end
class BranchWithNoRequirementsTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new
end
def test_should_use_all_matcher_for_event_requirement
assert_equal StateMachine::AllMatcher.instance, @branch.event_requirement
end
def test_should_use_all_matcher_for_from_state_requirement
assert_equal StateMachine::AllMatcher.instance, @branch.state_requirements.first[:from]
end
def test_should_use_all_matcher_for_to_state_requirement
assert_equal StateMachine::AllMatcher.instance, @branch.state_requirements.first[:to]
end
def test_should_match_empty_query
assert @branch.matches?(@object, {})
end
def test_should_match_non_empty_query
assert @branch.matches?(@object, :to => :idling, :from => :parked, :on => :ignite)
end
def test_should_include_all_requirements_in_match
match = @branch.match(@object, {})
assert_equal @branch.state_requirements.first[:from], match[:from]
assert_equal @branch.state_requirements.first[:to], match[:to]
assert_equal @branch.event_requirement, match[:on]
end
end
class BranchWithFromRequirementTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:from => :parked)
end
def test_should_use_a_whitelist_matcher
assert_instance_of StateMachine::WhitelistMatcher, @branch.state_requirements.first[:from]
end
def test_should_match_if_not_specified
assert @branch.matches?(@object, :to => :idling)
end
def test_should_match_if_included
assert @branch.matches?(@object, :from => :parked)
end
def test_should_not_match_if_not_included
assert !@branch.matches?(@object, :from => :idling)
end
def test_should_not_match_if_nil
assert !@branch.matches?(@object, :from => nil)
end
def test_should_ignore_to
assert @branch.matches?(@object, :from => :parked, :to => :idling)
end
def test_should_ignore_on
assert @branch.matches?(@object, :from => :parked, :on => :ignite)
end
def test_should_be_included_in_known_states
assert_equal [:parked], @branch.known_states
end
def test_should_include_requirement_in_match
match = @branch.match(@object, :from => :parked)
assert_equal @branch.state_requirements.first[:from], match[:from]
end
end
class BranchWithMultipleFromRequirementsTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:from => [:idling, :parked])
end
def test_should_match_if_included
assert @branch.matches?(@object, :from => :idling)
end
def test_should_not_match_if_not_included
assert !@branch.matches?(@object, :from => :first_gear)
end
def test_should_be_included_in_known_states
assert_equal [:idling, :parked], @branch.known_states
end
end
class BranchWithFromMatcherRequirementTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:from => StateMachine::BlacklistMatcher.new([:idling, :parked]))
end
def test_should_match_if_included
assert @branch.matches?(@object, :from => :first_gear)
end
def test_should_not_match_if_not_included
assert !@branch.matches?(@object, :from => :idling)
end
def test_include_values_in_known_states
assert_equal [:idling, :parked], @branch.known_states
end
end
class BranchWithToRequirementTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:to => :idling)
end
def test_should_use_a_whitelist_matcher
assert_instance_of StateMachine::WhitelistMatcher, @branch.state_requirements.first[:to]
end
def test_should_match_if_not_specified
assert @branch.matches?(@object, :from => :parked)
end
def test_should_match_if_included
assert @branch.matches?(@object, :to => :idling)
end
def test_should_not_match_if_not_included
assert !@branch.matches?(@object, :to => :parked)
end
def test_should_not_match_if_nil
assert !@branch.matches?(@object, :to => nil)
end
def test_should_ignore_from
assert @branch.matches?(@object, :to => :idling, :from => :parked)
end
def test_should_ignore_on
assert @branch.matches?(@object, :to => :idling, :on => :ignite)
end
def test_should_be_included_in_known_states
assert_equal [:idling], @branch.known_states
end
def test_should_include_requirement_in_match
match = @branch.match(@object, :to => :idling)
assert_equal @branch.state_requirements.first[:to], match[:to]
end
end
class BranchWithMultipleToRequirementsTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:to => [:idling, :parked])
end
def test_should_match_if_included
assert @branch.matches?(@object, :to => :idling)
end
def test_should_not_match_if_not_included
assert !@branch.matches?(@object, :to => :first_gear)
end
def test_should_be_included_in_known_states
assert_equal [:idling, :parked], @branch.known_states
end
end
class BranchWithToMatcherRequirementTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:to => StateMachine::BlacklistMatcher.new([:idling, :parked]))
end
def test_should_match_if_included
assert @branch.matches?(@object, :to => :first_gear)
end
def test_should_not_match_if_not_included
assert !@branch.matches?(@object, :to => :idling)
end
def test_include_values_in_known_states
assert_equal [:idling, :parked], @branch.known_states
end
end
class BranchWithOnRequirementTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:on => :ignite)
end
def test_should_use_a_whitelist_matcher
assert_instance_of StateMachine::WhitelistMatcher, @branch.event_requirement
end
def test_should_match_if_not_specified
assert @branch.matches?(@object, :from => :parked)
end
def test_should_match_if_included
assert @branch.matches?(@object, :on => :ignite)
end
def test_should_not_match_if_not_included
assert !@branch.matches?(@object, :on => :park)
end
def test_should_not_match_if_nil
assert !@branch.matches?(@object, :on => nil)
end
def test_should_ignore_to
assert @branch.matches?(@object, :on => :ignite, :to => :parked)
end
def test_should_ignore_from
assert @branch.matches?(@object, :on => :ignite, :from => :parked)
end
def test_should_not_be_included_in_known_states
assert_equal [], @branch.known_states
end
def test_should_include_requirement_in_match
match = @branch.match(@object, :on => :ignite)
assert_equal @branch.event_requirement, match[:on]
end
end
class BranchWithMultipleOnRequirementsTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:on => [:ignite, :park])
end
def test_should_match_if_included
assert @branch.matches?(@object, :on => :ignite)
end
def test_should_not_match_if_not_included
assert !@branch.matches?(@object, :on => :shift_up)
end
end
class BranchWithOnMatcherRequirementTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:on => StateMachine::BlacklistMatcher.new([:ignite, :park]))
end
def test_should_match_if_included
assert @branch.matches?(@object, :on => :shift_up)
end
def test_should_not_match_if_not_included
assert !@branch.matches?(@object, :on => :ignite)
end
end
class BranchWithExceptFromRequirementTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:except_from => :parked)
end
def test_should_use_a_blacklist_matcher
assert_instance_of StateMachine::BlacklistMatcher, @branch.state_requirements.first[:from]
end
def test_should_match_if_not_included
assert @branch.matches?(@object, :from => :idling)
end
def test_should_not_match_if_included
assert !@branch.matches?(@object, :from => :parked)
end
def test_should_match_if_nil
assert @branch.matches?(@object, :from => nil)
end
def test_should_ignore_to
assert @branch.matches?(@object, :from => :idling, :to => :parked)
end
def test_should_ignore_on
assert @branch.matches?(@object, :from => :idling, :on => :ignite)
end
def test_should_be_included_in_known_states
assert_equal [:parked], @branch.known_states
end
end
class BranchWithMultipleExceptFromRequirementsTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:except_from => [:idling, :parked])
end
def test_should_match_if_not_included
assert @branch.matches?(@object, :from => :first_gear)
end
def test_should_not_match_if_included
assert !@branch.matches?(@object, :from => :idling)
end
def test_should_be_included_in_known_states
assert_equal [:idling, :parked], @branch.known_states
end
end
class BranchWithExceptFromMatcherRequirementTest < Test::Unit::TestCase
def test_should_raise_an_exception
exception = assert_raise(ArgumentError) { StateMachine::Branch.new(:except_from => StateMachine::AllMatcher.instance) }
assert_equal ':except_from option cannot use matchers; use :from instead', exception.message
end
end
class BranchWithExceptToRequirementTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:except_to => :idling)
end
def test_should_use_a_blacklist_matcher
assert_instance_of StateMachine::BlacklistMatcher, @branch.state_requirements.first[:to]
end
def test_should_match_if_not_included
assert @branch.matches?(@object, :to => :parked)
end
def test_should_not_match_if_included
assert !@branch.matches?(@object, :to => :idling)
end
def test_should_match_if_nil
assert @branch.matches?(@object, :to => nil)
end
def test_should_ignore_from
assert @branch.matches?(@object, :to => :parked, :from => :idling)
end
def test_should_ignore_on
assert @branch.matches?(@object, :to => :parked, :on => :ignite)
end
def test_should_be_included_in_known_states
assert_equal [:idling], @branch.known_states
end
end
class BranchWithMultipleExceptToRequirementsTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:except_to => [:idling, :parked])
end
def test_should_match_if_not_included
assert @branch.matches?(@object, :to => :first_gear)
end
def test_should_not_match_if_included
assert !@branch.matches?(@object, :to => :idling)
end
def test_should_be_included_in_known_states
assert_equal [:idling, :parked], @branch.known_states
end
end
class BranchWithExceptToMatcherRequirementTest < Test::Unit::TestCase
def test_should_raise_an_exception
exception = assert_raise(ArgumentError) { StateMachine::Branch.new(:except_to => StateMachine::AllMatcher.instance) }
assert_equal ':except_to option cannot use matchers; use :to instead', exception.message
end
end
class BranchWithExceptOnRequirementTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:except_on => :ignite)
end
def test_should_use_a_blacklist_matcher
assert_instance_of StateMachine::BlacklistMatcher, @branch.event_requirement
end
def test_should_match_if_not_included
assert @branch.matches?(@object, :on => :park)
end
def test_should_not_match_if_included
assert !@branch.matches?(@object, :on => :ignite)
end
def test_should_match_if_nil
assert @branch.matches?(@object, :on => nil)
end
def test_should_ignore_to
assert @branch.matches?(@object, :on => :park, :to => :idling)
end
def test_should_ignore_from
assert @branch.matches?(@object, :on => :park, :from => :parked)
end
def test_should_not_be_included_in_known_states
assert_equal [], @branch.known_states
end
end
class BranchWithExceptOnMatcherRequirementTest < Test::Unit::TestCase
def test_should_raise_an_exception
exception = assert_raise(ArgumentError) { StateMachine::Branch.new(:except_on => StateMachine::AllMatcher.instance) }
assert_equal ':except_on option cannot use matchers; use :on instead', exception.message
end
end
class BranchWithMultipleExceptOnRequirementsTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:except_on => [:ignite, :park])
end
def test_should_match_if_not_included
assert @branch.matches?(@object, :on => :shift_up)
end
def test_should_not_match_if_included
assert !@branch.matches?(@object, :on => :ignite)
end
end
class BranchWithConflictingFromRequirementsTest < Test::Unit::TestCase
def test_should_raise_an_exception
exception = assert_raise(ArgumentError) { StateMachine::Branch.new(:from => :parked, :except_from => :parked) }
assert_equal 'Conflicting keys: from, except_from', exception.message
end
end
class BranchWithConflictingToRequirementsTest < Test::Unit::TestCase
def test_should_raise_an_exception
exception = assert_raise(ArgumentError) { StateMachine::Branch.new(:to => :idling, :except_to => :idling) }
assert_equal 'Conflicting keys: to, except_to', exception.message
end
end
class BranchWithConflictingOnRequirementsTest < Test::Unit::TestCase
def test_should_raise_an_exception
exception = assert_raise(ArgumentError) { StateMachine::Branch.new(:on => :ignite, :except_on => :ignite) }
assert_equal 'Conflicting keys: on, except_on', exception.message
end
end
class BranchWithDifferentRequirementsTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:from => :parked, :to => :idling, :on => :ignite)
end
def test_should_match_empty_query
assert @branch.matches?(@object)
end
def test_should_match_if_all_requirements_match
assert @branch.matches?(@object, :from => :parked, :to => :idling, :on => :ignite)
end
def test_should_not_match_if_from_not_included
assert !@branch.matches?(@object, :from => :idling)
end
def test_should_not_match_if_to_not_included
assert !@branch.matches?(@object, :to => :parked)
end
def test_should_not_match_if_on_not_included
assert !@branch.matches?(@object, :on => :park)
end
def test_should_be_nil_if_unmatched
assert_nil @branch.match(@object, :from => :parked, :to => :idling, :on => :park)
end
def test_should_include_all_known_states
assert_equal [:parked, :idling], @branch.known_states
end
def test_should_not_duplicate_known_statse
branch = StateMachine::Branch.new(:except_from => :idling, :to => :idling, :on => :ignite)
assert_equal [:idling], branch.known_states
end
end
class BranchWithNilRequirementsTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:from => nil, :to => nil)
end
def test_should_match_empty_query
assert @branch.matches?(@object)
end
def test_should_match_if_all_requirements_match
assert @branch.matches?(@object, :from => nil, :to => nil)
end
def test_should_not_match_if_from_not_included
assert !@branch.matches?(@object, :from => :parked)
end
def test_should_not_match_if_to_not_included
assert !@branch.matches?(@object, :to => :idling)
end
def test_should_include_all_known_states
assert_equal [nil], @branch.known_states
end
end
class BranchWithImplicitRequirementTest < Test::Unit::TestCase
def setup
@branch = StateMachine::Branch.new(:parked => :idling, :on => :ignite)
end
def test_should_create_an_event_requirement
assert_instance_of StateMachine::WhitelistMatcher, @branch.event_requirement
assert_equal [:ignite], @branch.event_requirement.values
end
def test_should_use_a_whitelist_from_matcher
assert_instance_of StateMachine::WhitelistMatcher, @branch.state_requirements.first[:from]
end
def test_should_use_a_whitelist_to_matcher
assert_instance_of StateMachine::WhitelistMatcher, @branch.state_requirements.first[:to]
end
end
class BranchWithMultipleImplicitRequirementsTest < Test::Unit::TestCase
def setup
@object = Object.new
@branch = StateMachine::Branch.new(:parked => :idling, :idling => :first_gear, :on => :ignite)
end
def test_should_create_multiple_state_requirements
assert_equal 2, @branch.state_requirements.length
end
def test_should_not_match_event_as_state_requirement
assert !@branch.matches?(@object, :from => :on, :to => :ignite)
end
def test_should_match_if_from_included_in_any
assert @branch.matches?(@object, :from => :parked)
assert @branch.matches?(@object, :from => :idling)
end
def test_should_not_match_if_from_not_included_in_any
assert !@branch.matches?(@object, :from => :first_gear)
end
def test_should_match_if_to_included_in_any
assert @branch.matches?(@object, :to => :idling)
assert @branch.matches?(@object, :to => :first_gear)
end
def test_should_not_match_if_to_not_included_in_any
assert !@branch.matches?(@object, :to => :parked)
end
def test_should_match_if_all_options_match
assert @branch.matches?(@object, :from => :parked, :to => :idling, :on => :ignite)
assert @branch.matches?(@object, :from => :idling, :to => :first_gear, :on => :ignite)
end
def test_should_not_match_if_any_options_do_not_match
assert !@branch.matches?(@object, :from => :parked, :to => :idling, :on => :park)
assert !@branch.matches?(@object, :from => :parked, :to => :first_gear, :on => :park)
end
def test_should_include_all_known_states
assert_equal [:first_gear, :idling, :parked], @branch.known_states.sort_by {|state| state.to_s}
end
def test_should_not_duplicate_known_statse
branch = StateMachine::Branch.new(:parked => :idling, :first_gear => :idling)
assert_equal [:first_gear, :idling, :parked], branch.known_states.sort_by {|state| state.to_s}
end
end
class BranchWithImplicitFromRequirementMatcherTest < Test::Unit::TestCase
def setup
@matcher = StateMachine::BlacklistMatcher.new(:parked)
@branch = StateMachine::Branch.new(@matcher => :idling)
end
def test_should_not_convert_from_to_whitelist_matcher
assert_equal @matcher, @branch.state_requirements.first[:from]
end
def test_should_convert_to_to_whitelist_matcher
assert_instance_of StateMachine::WhitelistMatcher, @branch.state_requirements.first[:to]
end
end
class BranchWithImplicitToRequirementMatcherTest < Test::Unit::TestCase
def setup
@matcher = StateMachine::BlacklistMatcher.new(:idling)
@branch = StateMachine::Branch.new(:parked => @matcher)
end
def test_should_convert_from_to_whitelist_matcher
assert_instance_of StateMachine::WhitelistMatcher, @branch.state_requirements.first[:from]
end
def test_should_not_convert_to_to_whitelist_matcher
assert_equal @matcher, @branch.state_requirements.first[:to]
end
end
class BranchWithImplicitAndExplicitRequirementsTest < Test::Unit::TestCase
def setup
@branch = StateMachine::Branch.new(:parked => :idling, :from => :parked)
end
def test_should_create_multiple_requirements
assert_equal 2, @branch.state_requirements.length
end
def test_should_create_implicit_requirements_for_implicit_options
assert(@branch.state_requirements.any? do |state_requirement|
state_requirement[:from].values == [:parked] && state_requirement[:to].values == [:idling]
end)
end
def test_should_create_implicit_requirements_for_explicit_options
assert(@branch.state_requirements.any? do |state_requirement|
state_requirement[:from].values == [:from] && state_requirement[:to].values == [:parked]
end)
end
end
class BranchWithIfConditionalTest < Test::Unit::TestCase
def setup
@object = Object.new
end
def test_should_have_an_if_condition
branch = StateMachine::Branch.new(:if => lambda {true})
assert_not_nil branch.if_condition
end
def test_should_match_if_true
branch = StateMachine::Branch.new(:if => lambda {true})
assert branch.matches?(@object)
end
def test_should_not_match_if_false
branch = StateMachine::Branch.new(:if => lambda {false})
assert !branch.matches?(@object)
end
def test_should_be_nil_if_unmatched
branch = StateMachine::Branch.new(:if => lambda {false})
assert_nil branch.match(@object)
end
end
class BranchWithMultipleIfConditionalsTest < Test::Unit::TestCase
def setup
@object = Object.new
end
def test_should_match_if_all_are_true
branch = StateMachine::Branch.new(:if => [lambda {true}, lambda {true}])
assert branch.match(@object)
end
def test_should_not_match_if_any_are_false
branch = StateMachine::Branch.new(:if => [lambda {true}, lambda {false}])
assert !branch.match(@object)
branch = StateMachine::Branch.new(:if => [lambda {false}, lambda {true}])
assert !branch.match(@object)
end
end
class BranchWithUnlessConditionalTest < Test::Unit::TestCase
def setup
@object = Object.new
end
def test_should_have_an_unless_condition
branch = StateMachine::Branch.new(:unless => lambda {true})
assert_not_nil branch.unless_condition
end
def test_should_match_if_false
branch = StateMachine::Branch.new(:unless => lambda {false})
assert branch.matches?(@object)
end
def test_should_not_match_if_true
branch = StateMachine::Branch.new(:unless => lambda {true})
assert !branch.matches?(@object)
end
def test_should_be_nil_if_unmatched
branch = StateMachine::Branch.new(:unless => lambda {true})
assert_nil branch.match(@object)
end
end
class BranchWithMultipleUnlessConditionalsTest < Test::Unit::TestCase
def setup
@object = Object.new
end
def test_should_match_if_all_are_false
branch = StateMachine::Branch.new(:unless => [lambda {false}, lambda {false}])
assert branch.match(@object)
end
def test_should_not_match_if_any_are_true
branch = StateMachine::Branch.new(:unless => [lambda {true}, lambda {false}])
assert !branch.match(@object)
branch = StateMachine::Branch.new(:unless => [lambda {false}, lambda {true}])
assert !branch.match(@object)
end
end
class BranchWithConflictingConditionalsTest < Test::Unit::TestCase
def setup
@object = Object.new
end
def test_should_match_if_if_is_true_and_unless_is_false
branch = StateMachine::Branch.new(:if => lambda {true}, :unless => lambda {false})
assert branch.match(@object)
end
def test_should_not_match_if_if_is_false_and_unless_is_true
branch = StateMachine::Branch.new(:if => lambda {false}, :unless => lambda {true})
assert !branch.match(@object)
end
def test_should_not_match_if_if_is_false_and_unless_is_false
branch = StateMachine::Branch.new(:if => lambda {false}, :unless => lambda {false})
assert !branch.match(@object)
end
def test_should_not_match_if_if_is_true_and_unless_is_true
branch = StateMachine::Branch.new(:if => lambda {true}, :unless => lambda {true})
assert !branch.match(@object)
end
end
class BranchWithoutGuardsTest < Test::Unit::TestCase
def setup
@object = Object.new
end
def test_should_match_if_if_is_false
branch = StateMachine::Branch.new(:if => lambda {false})
assert branch.matches?(@object, :guard => false)
end
def test_should_match_if_if_is_true
branch = StateMachine::Branch.new(:if => lambda {true})
assert branch.matches?(@object, :guard => false)
end
def test_should_match_if_unless_is_false
branch = StateMachine::Branch.new(:unless => lambda {false})
assert branch.matches?(@object, :guard => false)
end
def test_should_match_if_unless_is_true
branch = StateMachine::Branch.new(:unless => lambda {true})
assert branch.matches?(@object, :guard => false)
end
end
begin
# Load library
require 'graphviz'
class BranchDrawingTest < Test::Unit::TestCase
def setup
@machine = StateMachine::Machine.new(Class.new)
states = [:parked, :idling]
@graph = StateMachine::Graph.new('test')
states.each {|state| @graph.add_nodes(state.to_s)}
@branch = StateMachine::Branch.new(:from => :idling, :to => :parked)
@branch.draw(@graph, :park, states)
@edge = @graph.get_edge_at_index(0)
end
def test_should_create_edges
assert_equal 1, @graph.edge_count
end
def test_should_use_from_state_from_start_node
assert_equal 'idling', @edge.node_one(false)
end
def test_should_use_to_state_for_end_node
assert_equal 'parked', @edge.node_two(false)
end
def test_should_use_event_name_as_label
assert_equal 'park', @edge['label'].to_s.gsub('"', '')
end
end
class BranchDrawingWithFromRequirementTest < Test::Unit::TestCase
def setup
@machine = StateMachine::Machine.new(Class.new)
states = [:parked, :idling, :first_gear]
@graph = StateMachine::Graph.new('test')
states.each {|state| @graph.add_nodes(state.to_s)}
@branch = StateMachine::Branch.new(:from => [:idling, :first_gear], :to => :parked)
@branch.draw(@graph, :park, states)
end
def test_should_generate_edges_for_each_valid_from_state
[:idling, :first_gear].each_with_index do |from_state, index|
edge = @graph.get_edge_at_index(index)
assert_equal from_state.to_s, edge.node_one(false)
assert_equal 'parked', edge.node_two(false)
end
end
end
class BranchDrawingWithExceptFromRequirementTest < Test::Unit::TestCase
def setup
@machine = StateMachine::Machine.new(Class.new)
states = [:parked, :idling, :first_gear]
@graph = StateMachine::Graph.new('test')
states.each {|state| @graph.add_nodes(state.to_s)}
@branch = StateMachine::Branch.new(:except_from => :parked, :to => :parked)
@branch.draw(@graph, :park, states)
end
def test_should_generate_edges_for_each_valid_from_state
%w(idling first_gear).each_with_index do |from_state, index|
edge = @graph.get_edge_at_index(index)
assert_equal from_state, edge.node_one(false)
assert_equal 'parked', edge.node_two(false)
end
end
end
class BranchDrawingWithoutFromRequirementTest < Test::Unit::TestCase
def setup
@machine = StateMachine::Machine.new(Class.new)
states = [:parked, :idling, :first_gear]
@graph = StateMachine::Graph.new('test')
states.each {|state| @graph.add_nodes(state.to_s)}
@branch = StateMachine::Branch.new(:to => :parked)
@branch.draw(@graph, :park, states)
end
def test_should_generate_edges_for_each_valid_from_state
%w(parked idling first_gear).each_with_index do |from_state, index|
edge = @graph.get_edge_at_index(index)
assert_equal from_state, edge.node_one(false)
assert_equal 'parked', edge.node_two(false)
end
end
end
class BranchDrawingWithoutToRequirementTest < Test::Unit::TestCase
def setup
@machine = StateMachine::Machine.new(Class.new)
graph = StateMachine::Graph.new('test')
graph.add_nodes('parked')
@branch = StateMachine::Branch.new(:from => :parked)
@branch.draw(graph, :park, [:parked])
@edge = graph.get_edge_at_index(0)
end
def test_should_create_loopback_edge
assert_equal 'parked', @edge.node_one(false)
assert_equal 'parked', @edge.node_two(false)
end
end
class BranchDrawingWithNilStateTest < Test::Unit::TestCase
def setup
@machine = StateMachine::Machine.new(Class.new)
graph = StateMachine::Graph.new('test')
graph.add_nodes('parked')
@branch = StateMachine::Branch.new(:from => :idling, :to => nil)
@branch.draw(graph, :park, [nil, :idling])
@edge = graph.get_edge_at_index(0)
end
def test_should_generate_edges_for_each_valid_from_state
assert_equal 'idling', @edge.node_one(false)
assert_equal 'nil', @edge.node_two(false)
end
end
rescue LoadError
$stderr.puts 'Skipping GraphViz StateMachine::Branch tests. `gem install ruby-graphviz` >= v0.9.17 and try again.'
end unless ENV['TRAVIS']
|