basic101 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +2 -0
- data/.simplecov +1 -0
- data/.yardopts +7 -0
- data/Changelog.md +3 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +75 -0
- data/LICENSE.md +9 -0
- data/README.md +193 -0
- data/Rakefile +14 -0
- data/VERSION +1 -0
- data/bin/basic101 +10 -0
- data/lib/basic101/abs_function.rb +19 -0
- data/lib/basic101/argument_checker.rb +61 -0
- data/lib/basic101/arguments.rb +32 -0
- data/lib/basic101/array_reference.rb +52 -0
- data/lib/basic101/asc_function.rb +17 -0
- data/lib/basic101/basic_array.rb +69 -0
- data/lib/basic101/basic_comparisons.rb +20 -0
- data/lib/basic101/basic_float.rb +48 -0
- data/lib/basic101/basic_integer.rb +48 -0
- data/lib/basic101/basic_math.rb +22 -0
- data/lib/basic101/basic_numeric.rb +96 -0
- data/lib/basic101/basic_object.rb +35 -0
- data/lib/basic101/basic_string.rb +85 -0
- data/lib/basic101/binary_operation.rb +32 -0
- data/lib/basic101/binary_operations.rb +26 -0
- data/lib/basic101/built_in_functions.rb +31 -0
- data/lib/basic101/chr_function.rb +17 -0
- data/lib/basic101/cos_function.rb +17 -0
- data/lib/basic101/data_statement.rb +24 -0
- data/lib/basic101/define_function_statement.rb +23 -0
- data/lib/basic101/dim_statement.rb +25 -0
- data/lib/basic101/else_statement.rb +22 -0
- data/lib/basic101/end_statement.rb +13 -0
- data/lib/basic101/endif_statement.rb +19 -0
- data/lib/basic101/errors.rb +50 -0
- data/lib/basic101/exp_function.rb +17 -0
- data/lib/basic101/for_stack.rb +48 -0
- data/lib/basic101/for_statement.rb +57 -0
- data/lib/basic101/function.rb +11 -0
- data/lib/basic101/function_call.rb +32 -0
- data/lib/basic101/function_identifier.rb +8 -0
- data/lib/basic101/functions.rb +39 -0
- data/lib/basic101/gosub_statement.rb +23 -0
- data/lib/basic101/goto_statement.rb +23 -0
- data/lib/basic101/identifier.rb +23 -0
- data/lib/basic101/identity.rb +18 -0
- data/lib/basic101/if_statement.rb +31 -0
- data/lib/basic101/input.rb +44 -0
- data/lib/basic101/input_reader.rb +55 -0
- data/lib/basic101/input_statement.rb +46 -0
- data/lib/basic101/int_function.rb +17 -0
- data/lib/basic101/left_function.rb +19 -0
- data/lib/basic101/len_function.rb +18 -0
- data/lib/basic101/let_statement.rb +24 -0
- data/lib/basic101/line.rb +32 -0
- data/lib/basic101/log_function.rb +17 -0
- data/lib/basic101/main.rb +24 -0
- data/lib/basic101/mid_function.rb +20 -0
- data/lib/basic101/negate_operation.rb +21 -0
- data/lib/basic101/next_statement.rb +34 -0
- data/lib/basic101/not_operation.rb +23 -0
- data/lib/basic101/null_prompt_delimeter.rb +12 -0
- data/lib/basic101/null_transcript.rb +20 -0
- data/lib/basic101/numeric_identifier.rb +16 -0
- data/lib/basic101/on_goto_statement.rb +29 -0
- data/lib/basic101/output.rb +73 -0
- data/lib/basic101/parser.rb +457 -0
- data/lib/basic101/power_operation.rb +24 -0
- data/lib/basic101/print_comma.rb +20 -0
- data/lib/basic101/print_semicolon.rb +19 -0
- data/lib/basic101/print_statement.rb +33 -0
- data/lib/basic101/program.rb +100 -0
- data/lib/basic101/program_counter.rb +52 -0
- data/lib/basic101/prompt_delimeter.rb +13 -0
- data/lib/basic101/randomize_statement.rb +13 -0
- data/lib/basic101/read_statement.rb +25 -0
- data/lib/basic101/reference.rb +25 -0
- data/lib/basic101/remark_statement.rb +12 -0
- data/lib/basic101/restore_statement.rb +23 -0
- data/lib/basic101/return_statement.rb +16 -0
- data/lib/basic101/right_function.rb +19 -0
- data/lib/basic101/rnd_function.rb +24 -0
- data/lib/basic101/runtime.rb +132 -0
- data/lib/basic101/scalar_reference.rb +19 -0
- data/lib/basic101/sgn_function.rb +17 -0
- data/lib/basic101/sin_function.rb +17 -0
- data/lib/basic101/sqr_function.rb +17 -0
- data/lib/basic101/statement.rb +36 -0
- data/lib/basic101/stop_statement.rb +14 -0
- data/lib/basic101/str_function.rb +16 -0
- data/lib/basic101/string_identifier.rb +16 -0
- data/lib/basic101/tab.rb +18 -0
- data/lib/basic101/tab_function.rb +17 -0
- data/lib/basic101/tan_function.rb +17 -0
- data/lib/basic101/transcript.rb +37 -0
- data/lib/basic101/transform.rb +264 -0
- data/lib/basic101/user_defined_function.rb +54 -0
- data/lib/basic101/val_function.rb +16 -0
- data/lib/basic101.rb +93 -0
- data/rake_tasks/default.rake +1 -0
- data/rake_tasks/integration.rake +8 -0
- data/rake_tasks/jeweler.rake +28 -0
- data/rake_tasks/spec.rake +8 -0
- data/rake_tasks/test.rake +2 -0
- data/rake_tasks/yard.rake +3 -0
- data/test/integration/arguments.rb +25 -0
- data/test/integration/errors.rb +7 -0
- data/test/integration/integration_test.rb +28 -0
- data/test/integration/main.rb +49 -0
- data/test/integration/output_file.rb +40 -0
- data/test/integration/test.rb +135 -0
- data/test/integration/tests/basic_computer_games/23-match.bas +64 -0
- data/test/integration/tests/basic_computer_games/23-match.input +1 -0
- data/test/integration/tests/basic_computer_games/23-match.output +29 -0
- data/test/integration/tests/basic_computer_games/3dplot.bas +17 -0
- data/test/integration/tests/basic_computer_games/3dplot.input +0 -0
- data/test/integration/tests/basic_computer_games/3dplot.output +47 -0
- data/test/integration/tests/basic_computer_games/aceyducy.bas +100 -0
- data/test/integration/tests/basic_computer_games/aceyducy.input +8 -0
- data/test/integration/tests/basic_computer_games/aceyducy.output +78 -0
- data/test/integration/tests/basic_computer_games/amazing.bas +138 -0
- data/test/integration/tests/basic_computer_games/amazing.input +1 -0
- data/test/integration/tests/basic_computer_games/amazing.output +32 -0
- data/test/integration/tests/basic_computer_games/animal.bas +71 -0
- data/test/integration/tests/basic_computer_games/animal.input +17 -0
- data/test/integration/tests/basic_computer_games/animal.output +38 -0
- data/test/integration/tests/basic_computer_games/awari.bas +70 -0
- data/test/integration/tests/basic_computer_games/awari.input +11 -0
- data/test/integration/tests/basic_computer_games/awari.output +117 -0
- data/test/integration/tests/basic_computer_games/bagels.bas +81 -0
- data/test/integration/tests/basic_computer_games/bagels.input +12 -0
- data/test/integration/tests/basic_computer_games/bagels.output +42 -0
- data/test/integration/tests/basic_computer_games/banner.bas +94 -0
- data/test/integration/tests/basic_computer_games/banner.input +6 -0
- data/test/integration/tests/basic_computer_games/banner.output +135 -0
- data/test/integration/tests/basic_computer_games/basketbl.bas +196 -0
- data/test/integration/tests/basic_computer_games/basketbl.input +46 -0
- data/test/integration/tests/basic_computer_games/basketbl.output +509 -0
- data/test/integration/tests/basic_computer_games/batnum.bas +90 -0
- data/test/integration/tests/basic_computer_games/batnum.input +14 -0
- data/test/integration/tests/basic_computer_games/batnum.output +67 -0
- data/test/integration/tests/basic_computer_games/battle.bas +196 -0
- data/test/integration/tests/basic_computer_games/battle.input +21 -0
- data/test/integration/tests/basic_computer_games/battle.output +118 -0
- data/test/integration/tests/basic_computer_games/blackjck.bas +321 -0
- data/test/integration/tests/basic_computer_games/blackjck.input +26 -0
- data/test/integration/tests/basic_computer_games/blackjck.output +144 -0
- data/test/integration/tests/basic_computer_games/bombard.bas +93 -0
- data/test/integration/tests/basic_computer_games/bombard.input +20 -0
- data/test/integration/tests/basic_computer_games/bombard.output +175 -0
- data/test/integration/tests/basic_computer_games/bounce.bas +53 -0
- data/test/integration/tests/basic_computer_games/bounce.input +0 -0
- data/test/integration/tests/basic_computer_games/bounce.output +15 -0
- data/test/integration/tests/basic_computer_games/bowling.bas +101 -0
- data/test/integration/tests/basic_computer_games/bowling.input +23 -0
- data/test/integration/tests/basic_computer_games/bowling.output +229 -0
- data/test/integration/tests/basic_computer_games/boxing.bas +142 -0
- data/test/integration/tests/basic_computer_games/boxing.input +8 -0
- data/test/integration/tests/basic_computer_games/boxing.output +47 -0
- data/test/integration/tests/basic_computer_games/bug.bas +256 -0
- data/test/integration/tests/basic_computer_games/bug.input +17 -0
- data/test/integration/tests/basic_computer_games/bug.output +847 -0
- data/test/integration/tests/basic_computer_games/bullfght.bas +193 -0
- data/test/integration/tests/basic_computer_games/bullfght.input +4 -0
- data/test/integration/tests/basic_computer_games/bullfght.output +60 -0
- data/test/integration/tests/basic_computer_games/bullseye.bas +37 -0
- data/test/integration/tests/basic_computer_games/bullseye.input +10 -0
- data/test/integration/tests/basic_computer_games/bullseye.output +79 -0
- data/test/integration/tests/basic_computer_games/bunny.bas +40 -0
- data/test/integration/tests/basic_computer_games/bunny.input +0 -0
- data/test/integration/tests/basic_computer_games/bunny.output +67 -0
- data/test/integration/tests/basic_computer_games/buzzword.bas +25 -0
- data/test/integration/tests/basic_computer_games/buzzword.input +4 -0
- data/test/integration/tests/basic_computer_games/buzzword.output +25 -0
- data/test/integration/tests/basic_computer_games/calendar.bas +58 -0
- data/test/integration/tests/basic_computer_games/calendar.input +0 -0
- data/test/integration/tests/basic_computer_games/calendar.output +213 -0
- data/test/integration/tests/basic_computer_games/change.bas +51 -0
- data/test/integration/tests/basic_computer_games/change.input +4 -0
- data/test/integration/tests/basic_computer_games/change.output +28 -0
- data/test/integration/tests/basic_computer_games/checkers.bas +82 -0
- data/test/integration/tests/basic_computer_games/checkers.input +74 -0
- data/test/integration/tests/basic_computer_games/checkers.output +673 -0
- data/test/integration/tests/basic_computer_games/chemist.bas +27 -0
- data/test/integration/tests/basic_computer_games/chemist.input +11 -0
- data/test/integration/tests/basic_computer_games/chemist.output +54 -0
- data/test/integration/tests/basic_computer_games/chief.bas +51 -0
- data/test/integration/tests/basic_computer_games/chief.input +5 -0
- data/test/integration/tests/basic_computer_games/chief.output +19 -0
- data/test/integration/tests/basic_computer_games/chomp.bas +104 -0
- data/test/integration/tests/basic_computer_games/chomp.input +15 -0
- data/test/integration/tests/basic_computer_games/chomp.output +159 -0
- data/test/integration/tests/basic_computer_games/combat.bas +124 -0
- data/test/integration/tests/basic_computer_games/combat.input +7 -0
- data/test/integration/tests/basic_computer_games/combat.output +33 -0
- data/test/integration/tests/basic_computer_games/craps.bas +82 -0
- data/test/integration/tests/basic_computer_games/craps.input +9 -0
- data/test/integration/tests/basic_computer_games/craps.output +51 -0
- data/test/integration/tests/basic_computer_games/cube.bas +161 -0
- data/test/integration/tests/basic_computer_games/cube.input +25 -0
- data/test/integration/tests/basic_computer_games/cube.output +72 -0
- data/test/integration/tests/basic_computer_games/depthchg.bas +33 -0
- data/test/integration/tests/basic_computer_games/depthchg.input +16 -0
- data/test/integration/tests/basic_computer_games/depthchg.output +83 -0
- data/test/integration/tests/basic_computer_games/diamond.bas +27 -0
- data/test/integration/tests/basic_computer_games/diamond.input +1 -0
- data/test/integration/tests/basic_computer_games/diamond.output +65 -0
- data/test/integration/tests/basic_computer_games/dice.bas +31 -0
- data/test/integration/tests/basic_computer_games/dice.input +4 -0
- data/test/integration/tests/basic_computer_games/dice.output +46 -0
- data/test/integration/tests/basic_computer_games/digits.bas +78 -0
- data/test/integration/tests/basic_computer_games/digits.input +5 -0
- data/test/integration/tests/basic_computer_games/digits.output +70 -0
- data/test/integration/tests/basic_computer_games/evenwin1.bas +128 -0
- data/test/integration/tests/basic_computer_games/evenwin1.input +13 -0
- data/test/integration/tests/basic_computer_games/evenwin1.output +116 -0
- data/test/integration/tests/basic_computer_games/evenwin2.bas +70 -0
- data/test/integration/tests/basic_computer_games/evenwin2.input +14 -0
- data/test/integration/tests/basic_computer_games/evenwin2.output +56 -0
- data/test/integration/tests/basic_computer_games/flipflop.bas +79 -0
- data/test/integration/tests/basic_computer_games/flipflop.input +8 -0
- data/test/integration/tests/basic_computer_games/flipflop.output +45 -0
- data/test/integration/tests/basic_computer_games/footbal1.bas +298 -0
- data/test/integration/tests/basic_computer_games/footbal1.input +13 -0
- data/test/integration/tests/basic_computer_games/footbal1.output +315 -0
- data/test/integration/tests/basic_computer_games/footbal2.bas +181 -0
- data/test/integration/tests/basic_computer_games/footbal2.input +23 -0
- data/test/integration/tests/basic_computer_games/footbal2.output +318 -0
- data/test/integration/tests/basic_computer_games/furtradr.bas +170 -0
- data/test/integration/tests/basic_computer_games/furtradr.input +20 -0
- data/test/integration/tests/basic_computer_games/furtradr.output +133 -0
- data/test/integration/tests/basic_computer_games/golf.bas +244 -0
- data/test/integration/tests/basic_computer_games/golf.input +11 -0
- data/test/integration/tests/basic_computer_games/golf.output +69 -0
- data/test/integration/tests/basic_computer_games/gomoko.bas +54 -0
- data/test/integration/tests/basic_computer_games/gomoko.input +6 -0
- data/test/integration/tests/basic_computer_games/gomoko.output +66 -0
- data/test/integration/tests/basic_computer_games/guess.bas +40 -0
- data/test/integration/tests/basic_computer_games/guess.input +8 -0
- data/test/integration/tests/basic_computer_games/guess.output +37 -0
- data/test/integration/tests/basic_computer_games/gunner.bas +52 -0
- data/test/integration/tests/basic_computer_games/gunner.input +18 -0
- data/test/integration/tests/basic_computer_games/gunner.output +91 -0
- data/test/integration/tests/basic_computer_games/hamurabi.bas +119 -0
- data/test/integration/tests/basic_computer_games/hamurabi.input +7 -0
- data/test/integration/tests/basic_computer_games/hamurabi.output +51 -0
- data/test/integration/tests/basic_computer_games/hangman.bas +81 -0
- data/test/integration/tests/basic_computer_games/hangman.input +69 -0
- data/test/integration/tests/basic_computer_games/hangman.output +889 -0
- data/test/integration/tests/basic_computer_games/hello.bas +83 -0
- data/test/integration/tests/basic_computer_games/hello.input +7 -0
- data/test/integration/tests/basic_computer_games/hello.output +46 -0
- data/test/integration/tests/basic_computer_games/hexapawn.bas +174 -0
- data/test/integration/tests/basic_computer_games/hexapawn.input +38 -0
- data/test/integration/tests/basic_computer_games/hexapawn.output +521 -0
- data/test/integration/tests/basic_computer_games/hi-q.bas +135 -0
- data/test/integration/tests/basic_computer_games/hi-q.input +14 -0
- data/test/integration/tests/basic_computer_games/hi-q.output +115 -0
- data/test/integration/tests/basic_computer_games/hilo.bas +29 -0
- data/test/integration/tests/basic_computer_games/hilo.input +20 -0
- data/test/integration/tests/basic_computer_games/hilo.output +76 -0
- data/test/integration/tests/basic_computer_games/hockey.bas +210 -0
- data/test/integration/tests/basic_computer_games/hockey.input +59 -0
- data/test/integration/tests/basic_computer_games/hockey.output +243 -0
- data/test/integration/tests/basic_computer_games/horsrace.bas +130 -0
- data/test/integration/tests/basic_computer_games/horsrace.input +11 -0
- data/test/integration/tests/basic_computer_games/horsrace.output +517 -0
- data/test/integration/tests/basic_computer_games/hurkle.bas +51 -0
- data/test/integration/tests/basic_computer_games/hurkle.input +16 -0
- data/test/integration/tests/basic_computer_games/hurkle.output +81 -0
- data/test/integration/tests/basic_computer_games/kinema.bas +34 -0
- data/test/integration/tests/basic_computer_games/kinema.input +9 -0
- data/test/integration/tests/basic_computer_games/kinema.output +64 -0
- data/test/integration/tests/basic_computer_games/king.bas +268 -0
- data/test/integration/tests/basic_computer_games/king.input +7 -0
- data/test/integration/tests/basic_computer_games/king.output +57 -0
- data/test/integration/tests/basic_computer_games/lem.bas +246 -0
- data/test/integration/tests/basic_computer_games/lem.input +4 -0
- data/test/integration/tests/basic_computer_games/lem.output +68 -0
- data/test/integration/tests/basic_computer_games/letter.bas +26 -0
- data/test/integration/tests/basic_computer_games/letter.input +24 -0
- data/test/integration/tests/basic_computer_games/letter.output +123 -0
- data/test/integration/tests/basic_computer_games/life.bas +66 -0
- data/test/integration/tests/basic_computer_games/life.input +4 -0
- data/test/integration/tests/basic_computer_games/life.options +1 -0
- data/test/integration/tests/basic_computer_games/life.output +200 -0
- data/test/integration/tests/basic_computer_games/life2.bas +83 -0
- data/test/integration/tests/basic_computer_games/life2.input +17 -0
- data/test/integration/tests/basic_computer_games/life2.output +113 -0
- data/test/integration/tests/basic_computer_games/litquiz.bas +49 -0
- data/test/integration/tests/basic_computer_games/litquiz.input +4 -0
- data/test/integration/tests/basic_computer_games/litquiz.output +36 -0
- data/test/integration/tests/basic_computer_games/love.bas +34 -0
- data/test/integration/tests/basic_computer_games/love.input +1 -0
- data/test/integration/tests/basic_computer_games/love.output +67 -0
- data/test/integration/tests/basic_computer_games/lunar.bas +48 -0
- data/test/integration/tests/basic_computer_games/lunar.input +87 -0
- data/test/integration/tests/basic_computer_games/lunar.output +195 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.bas +232 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.input +18 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.output +67 -0
- data/test/integration/tests/basic_computer_games/mathdice.bas +60 -0
- data/test/integration/tests/basic_computer_games/mathdice.input +4 -0
- data/test/integration/tests/basic_computer_games/mathdice.output +86 -0
- data/test/integration/tests/basic_computer_games/mugwump.bas +56 -0
- data/test/integration/tests/basic_computer_games/mugwump.input +16 -0
- data/test/integration/tests/basic_computer_games/mugwump.output +139 -0
- data/test/integration/tests/basic_computer_games/name.bas +25 -0
- data/test/integration/tests/basic_computer_games/name.input +2 -0
- data/test/integration/tests/basic_computer_games/name.output +22 -0
- data/test/integration/tests/basic_computer_games/nicoma.bas +34 -0
- data/test/integration/tests/basic_computer_games/nicoma.input +8 -0
- data/test/integration/tests/basic_computer_games/nicoma.output +36 -0
- data/test/integration/tests/basic_computer_games/nim.bas +156 -0
- data/test/integration/tests/basic_computer_games/nim.input +8 -0
- data/test/integration/tests/basic_computer_games/nim.output +30 -0
- data/test/integration/tests/basic_computer_games/number.bas +37 -0
- data/test/integration/tests/basic_computer_games/number.input +19 -0
- data/test/integration/tests/basic_computer_games/number.output +73 -0
- data/test/integration/tests/basic_computer_games/onecheck.bas +86 -0
- data/test/integration/tests/basic_computer_games/onecheck.input +6 -0
- data/test/integration/tests/basic_computer_games/onecheck.output +77 -0
- data/test/integration/tests/basic_computer_games/orbit.bas +96 -0
- data/test/integration/tests/basic_computer_games/orbit.input +10 -0
- data/test/integration/tests/basic_computer_games/orbit.output +113 -0
- data/test/integration/tests/basic_computer_games/pizza.bas +68 -0
- data/test/integration/tests/basic_computer_games/pizza.input +10 -0
- data/test/integration/tests/basic_computer_games/pizza.output +93 -0
- data/test/integration/tests/basic_computer_games/poetry.bas +42 -0
- data/test/integration/tests/basic_computer_games/poetry.input +0 -0
- data/test/integration/tests/basic_computer_games/poetry.options +1 -0
- data/test/integration/tests/basic_computer_games/poetry.output +50 -0
- data/test/integration/tests/basic_computer_games/poker.bas +416 -0
- data/test/integration/tests/basic_computer_games/poker.input +34 -0
- data/test/integration/tests/basic_computer_games/poker.output +197 -0
- data/test/integration/tests/basic_computer_games/queen.bas +168 -0
- data/test/integration/tests/basic_computer_games/queen.input +10 -0
- data/test/integration/tests/basic_computer_games/queen.output +133 -0
- data/test/integration/tests/basic_computer_games/reverse.bas +62 -0
- data/test/integration/tests/basic_computer_games/reverse.input +12 -0
- data/test/integration/tests/basic_computer_games/reverse.output +79 -0
- data/test/integration/tests/basic_computer_games/rocket.bas +71 -0
- data/test/integration/tests/basic_computer_games/rocket.input +42 -0
- data/test/integration/tests/basic_computer_games/rocket.output +149 -0
- data/test/integration/tests/basic_computer_games/rocksp.bas +33 -0
- data/test/integration/tests/basic_computer_games/rocksp.input +9 -0
- data/test/integration/tests/basic_computer_games/rocksp.output +69 -0
- data/test/integration/tests/basic_computer_games/roulette.bas +239 -0
- data/test/integration/tests/basic_computer_games/roulette.input +9 -0
- data/test/integration/tests/basic_computer_games/roulette.output +98 -0
- data/test/integration/tests/basic_computer_games/rusrou.bas +26 -0
- data/test/integration/tests/basic_computer_games/rusrou.input +9 -0
- data/test/integration/tests/basic_computer_games/rusrou.output +50 -0
- data/test/integration/tests/basic_computer_games/salvo.bas +329 -0
- data/test/integration/tests/basic_computer_games/salvo.input +21 -0
- data/test/integration/tests/basic_computer_games/salvo.output +49 -0
- data/test/integration/tests/basic_computer_games/sinewave.bas +17 -0
- data/test/integration/tests/basic_computer_games/sinewave.input +0 -0
- data/test/integration/tests/basic_computer_games/sinewave.output +168 -0
- data/test/integration/tests/basic_computer_games/slalom.bas +165 -0
- data/test/integration/tests/basic_computer_games/slalom.input +20 -0
- data/test/integration/tests/basic_computer_games/slalom.output +122 -0
- data/test/integration/tests/basic_computer_games/slots.bas +134 -0
- data/test/integration/tests/basic_computer_games/slots.input +2 -0
- data/test/integration/tests/basic_computer_games/slots.output +20 -0
- data/test/integration/tests/basic_computer_games/splat.bas +128 -0
- data/test/integration/tests/basic_computer_games/splat.input +9 -0
- data/test/integration/tests/basic_computer_games/splat.output +61 -0
- data/test/integration/tests/basic_computer_games/stars.bas +54 -0
- data/test/integration/tests/basic_computer_games/stars.input +15 -0
- data/test/integration/tests/basic_computer_games/stars.output +70 -0
- data/test/integration/tests/basic_computer_games/stock.bas +232 -0
- data/test/integration/tests/basic_computer_games/stock.input +30 -0
- data/test/integration/tests/basic_computer_games/stock.output +156 -0
- data/test/integration/tests/basic_computer_games/superstartrek.bas +425 -0
- data/test/integration/tests/basic_computer_games/superstartrek.input +21 -0
- data/test/integration/tests/basic_computer_games/superstartrek.output +151 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.bas +127 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.input +1 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.output +134 -0
- data/test/integration/tests/basic_computer_games/synonym.bas +53 -0
- data/test/integration/tests/basic_computer_games/synonym.input +13 -0
- data/test/integration/tests/basic_computer_games/synonym.output +57 -0
- data/test/integration/tests/basic_computer_games/target.bas +51 -0
- data/test/integration/tests/basic_computer_games/target.input +2 -0
- data/test/integration/tests/basic_computer_games/target.output +39 -0
- data/test/integration/tests/basic_computer_games/tictac1.bas +69 -0
- data/test/integration/tests/basic_computer_games/tictac1.input +10 -0
- data/test/integration/tests/basic_computer_games/tictac1.output +49 -0
- data/test/integration/tests/basic_computer_games/tictac2.bas +114 -0
- data/test/integration/tests/basic_computer_games/tictac2.input +6 -0
- data/test/integration/tests/basic_computer_games/tictac2.output +104 -0
- data/test/integration/tests/basic_computer_games/towers.bas +125 -0
- data/test/integration/tests/basic_computer_games/towers.input +9 -0
- data/test/integration/tests/basic_computer_games/towers.output +70 -0
- data/test/integration/tests/basic_computer_games/train.bas +24 -0
- data/test/integration/tests/basic_computer_games/train.input +4 -0
- data/test/integration/tests/basic_computer_games/train.output +23 -0
- data/test/integration/tests/basic_computer_games/trap.bas +49 -0
- data/test/integration/tests/basic_computer_games/trap.input +7 -0
- data/test/integration/tests/basic_computer_games/trap.output +40 -0
- data/test/integration/tests/basic_computer_games/war.bas +68 -0
- data/test/integration/tests/basic_computer_games/war.input +11 -0
- data/test/integration/tests/basic_computer_games/war.output +54 -0
- data/test/integration/tests/basic_computer_games/weekday.bas +150 -0
- data/test/integration/tests/basic_computer_games/weekday.input +2 -0
- data/test/integration/tests/basic_computer_games/weekday.output +28 -0
- data/test/integration/tests/basic_computer_games/word.bas +65 -0
- data/test/integration/tests/basic_computer_games/word.input +6 -0
- data/test/integration/tests/basic_computer_games/word.output +0 -0
- data/test/integration/tests/fast/abs.bas +5 -0
- data/test/integration/tests/fast/abs.input +0 -0
- data/test/integration/tests/fast/abs.output +5 -0
- data/test/integration/tests/fast/add.bas +5 -0
- data/test/integration/tests/fast/add.input +0 -0
- data/test/integration/tests/fast/add.output +5 -0
- data/test/integration/tests/fast/and.bas +5 -0
- data/test/integration/tests/fast/and.input +0 -0
- data/test/integration/tests/fast/and.output +5 -0
- data/test/integration/tests/fast/array.bas +11 -0
- data/test/integration/tests/fast/array.input +0 -0
- data/test/integration/tests/fast/array.output +6 -0
- data/test/integration/tests/fast/asc.bas +1 -0
- data/test/integration/tests/fast/asc.input +0 -0
- data/test/integration/tests/fast/asc.output +1 -0
- data/test/integration/tests/fast/chr.bas +1 -0
- data/test/integration/tests/fast/chr.input +0 -0
- data/test/integration/tests/fast/chr.output +1 -0
- data/test/integration/tests/fast/cos.bas +1 -0
- data/test/integration/tests/fast/cos.input +0 -0
- data/test/integration/tests/fast/cos.output +1 -0
- data/test/integration/tests/fast/def_fn.bas +9 -0
- data/test/integration/tests/fast/def_fn.input +0 -0
- data/test/integration/tests/fast/def_fn.output +5 -0
- data/test/integration/tests/fast/divide.bas +5 -0
- data/test/integration/tests/fast/divide.input +0 -0
- data/test/integration/tests/fast/divide.output +5 -0
- data/test/integration/tests/fast/end.bas +3 -0
- data/test/integration/tests/fast/end.input +0 -0
- data/test/integration/tests/fast/end.output +1 -0
- data/test/integration/tests/fast/eq.bas +3 -0
- data/test/integration/tests/fast/eq.input +0 -0
- data/test/integration/tests/fast/eq.output +3 -0
- data/test/integration/tests/fast/exp.bas +2 -0
- data/test/integration/tests/fast/exp.input +0 -0
- data/test/integration/tests/fast/exp.output +2 -0
- data/test/integration/tests/fast/float.bas +3 -0
- data/test/integration/tests/fast/float.input +0 -0
- data/test/integration/tests/fast/float.output +2 -0
- data/test/integration/tests/fast/for_next.bas +61 -0
- data/test/integration/tests/fast/for_next.input +0 -0
- data/test/integration/tests/fast/for_next.output +46 -0
- data/test/integration/tests/fast/ge.bas +3 -0
- data/test/integration/tests/fast/ge.input +0 -0
- data/test/integration/tests/fast/ge.output +3 -0
- data/test/integration/tests/fast/gosub_return.bas +10 -0
- data/test/integration/tests/fast/gosub_return.input +0 -0
- data/test/integration/tests/fast/gosub_return.output +4 -0
- data/test/integration/tests/fast/goto.bas +3 -0
- data/test/integration/tests/fast/goto.input +0 -0
- data/test/integration/tests/fast/goto.output +1 -0
- data/test/integration/tests/fast/gt.bas +3 -0
- data/test/integration/tests/fast/gt.input +0 -0
- data/test/integration/tests/fast/gt.output +3 -0
- data/test/integration/tests/fast/if.bas +25 -0
- data/test/integration/tests/fast/if.input +0 -0
- data/test/integration/tests/fast/if.output +8 -0
- data/test/integration/tests/fast/input.bas +24 -0
- data/test/integration/tests/fast/input.input +10 -0
- data/test/integration/tests/fast/input.output +28 -0
- data/test/integration/tests/fast/int.bas +5 -0
- data/test/integration/tests/fast/int.input +0 -0
- data/test/integration/tests/fast/int.output +5 -0
- data/test/integration/tests/fast/integer_plus_string.bas +1 -0
- data/test/integration/tests/fast/integer_plus_string.input +0 -0
- data/test/integration/tests/fast/integer_plus_string.output +1 -0
- data/test/integration/tests/fast/invalid_argument.bas +1 -0
- data/test/integration/tests/fast/invalid_argument.input +0 -0
- data/test/integration/tests/fast/invalid_argument.output +1 -0
- data/test/integration/tests/fast/le.bas +3 -0
- data/test/integration/tests/fast/le.input +0 -0
- data/test/integration/tests/fast/le.output +3 -0
- data/test/integration/tests/fast/left.bas +1 -0
- data/test/integration/tests/fast/left.input +0 -0
- data/test/integration/tests/fast/left.output +1 -0
- data/test/integration/tests/fast/len.bas +2 -0
- data/test/integration/tests/fast/len.input +0 -0
- data/test/integration/tests/fast/len.output +2 -0
- data/test/integration/tests/fast/let.bas +6 -0
- data/test/integration/tests/fast/let.input +0 -0
- data/test/integration/tests/fast/let.output +4 -0
- data/test/integration/tests/fast/log.bas +1 -0
- data/test/integration/tests/fast/log.input +0 -0
- data/test/integration/tests/fast/log.output +1 -0
- data/test/integration/tests/fast/lt.bas +3 -0
- data/test/integration/tests/fast/lt.input +0 -0
- data/test/integration/tests/fast/lt.output +3 -0
- data/test/integration/tests/fast/math.output +0 -0
- data/test/integration/tests/fast/mid.bas +2 -0
- data/test/integration/tests/fast/mid.input +0 -0
- data/test/integration/tests/fast/mid.output +2 -0
- data/test/integration/tests/fast/multiply.bas +5 -0
- data/test/integration/tests/fast/multiply.input +0 -0
- data/test/integration/tests/fast/multiply.output +5 -0
- data/test/integration/tests/fast/ne.bas +3 -0
- data/test/integration/tests/fast/ne.input +0 -0
- data/test/integration/tests/fast/ne.output +3 -0
- data/test/integration/tests/fast/negate.bas +4 -0
- data/test/integration/tests/fast/negate.input +0 -0
- data/test/integration/tests/fast/negate.output +3 -0
- data/test/integration/tests/fast/not.bas +4 -0
- data/test/integration/tests/fast/not.input +0 -0
- data/test/integration/tests/fast/not.output +4 -0
- data/test/integration/tests/fast/on_goto.bas +6 -0
- data/test/integration/tests/fast/on_goto.input +0 -0
- data/test/integration/tests/fast/on_goto.output +2 -0
- data/test/integration/tests/fast/or.bas +5 -0
- data/test/integration/tests/fast/or.input +0 -0
- data/test/integration/tests/fast/or.output +5 -0
- data/test/integration/tests/fast/parentheses.bas +1 -0
- data/test/integration/tests/fast/parentheses.input +0 -0
- data/test/integration/tests/fast/parentheses.output +1 -0
- data/test/integration/tests/fast/power.bas +4 -0
- data/test/integration/tests/fast/power.input +0 -0
- data/test/integration/tests/fast/power.output +4 -0
- data/test/integration/tests/fast/print.bas +6 -0
- data/test/integration/tests/fast/print.input +0 -0
- data/test/integration/tests/fast/print.output +4 -0
- data/test/integration/tests/fast/read_data.bas +15 -0
- data/test/integration/tests/fast/read_data.input +0 -0
- data/test/integration/tests/fast/read_data.output +4 -0
- data/test/integration/tests/fast/rem.bas +1 -0
- data/test/integration/tests/fast/rem.input +0 -0
- data/test/integration/tests/fast/rem.output +0 -0
- data/test/integration/tests/fast/right.bas +1 -0
- data/test/integration/tests/fast/right.input +0 -0
- data/test/integration/tests/fast/right.output +1 -0
- data/test/integration/tests/fast/rnd.bas +5 -0
- data/test/integration/tests/fast/rnd.input +0 -0
- data/test/integration/tests/fast/rnd.output +5 -0
- data/test/integration/tests/fast/sgn.bas +5 -0
- data/test/integration/tests/fast/sgn.input +0 -0
- data/test/integration/tests/fast/sgn.output +5 -0
- data/test/integration/tests/fast/sin.bas +1 -0
- data/test/integration/tests/fast/sin.input +0 -0
- data/test/integration/tests/fast/sin.output +1 -0
- data/test/integration/tests/fast/sqr.bas +2 -0
- data/test/integration/tests/fast/sqr.input +0 -0
- data/test/integration/tests/fast/sqr.output +2 -0
- data/test/integration/tests/fast/stop.bas +3 -0
- data/test/integration/tests/fast/stop.input +0 -0
- data/test/integration/tests/fast/stop.output +2 -0
- data/test/integration/tests/fast/str.bas +3 -0
- data/test/integration/tests/fast/str.input +0 -0
- data/test/integration/tests/fast/str.output +3 -0
- data/test/integration/tests/fast/string_addition.bas +1 -0
- data/test/integration/tests/fast/string_addition.input +0 -0
- data/test/integration/tests/fast/string_addition.output +1 -0
- data/test/integration/tests/fast/string_comparisons.bas +7 -0
- data/test/integration/tests/fast/string_comparisons.input +0 -0
- data/test/integration/tests/fast/string_comparisons.output +4 -0
- data/test/integration/tests/fast/string_plus_integer.bas +1 -0
- data/test/integration/tests/fast/string_plus_integer.input +0 -0
- data/test/integration/tests/fast/string_plus_integer.output +1 -0
- data/test/integration/tests/fast/subtract.bas +5 -0
- data/test/integration/tests/fast/subtract.input +0 -0
- data/test/integration/tests/fast/subtract.output +5 -0
- data/test/integration/tests/fast/tab.bas +4 -0
- data/test/integration/tests/fast/tab.input +0 -0
- data/test/integration/tests/fast/tab.output +3 -0
- data/test/integration/tests/fast/tan.bas +1 -0
- data/test/integration/tests/fast/tan.input +0 -0
- data/test/integration/tests/fast/tan.output +1 -0
- data/test/integration/tests/fast/val.bas +3 -0
- data/test/integration/tests/fast/val.input +0 -0
- data/test/integration/tests/fast/val.output +3 -0
- data/test/spec/argument_checker_spec.rb +128 -0
- data/test/spec/basic_array_spec.rb +100 -0
- data/test/spec/basic_float_spec.rb +168 -0
- data/test/spec/basic_integer_spec.rb +270 -0
- data/test/spec/basic_numeric_spec.rb +16 -0
- data/test/spec/basic_object_spec.rb +22 -0
- data/test/spec/basic_string_spec.rb +259 -0
- data/test/spec/for_stack_spec.rb +70 -0
- data/test/spec/input_reader_spec.rb +143 -0
- data/test/spec/input_spec.rb +102 -0
- data/test/spec/line_spec.rb +18 -0
- data/test/spec/output_spec.rb +153 -0
- data/test/spec/parser_spec.rb +562 -0
- data/test/spec/program_spec.rb +45 -0
- data/test/spec/spec_helper.rb +15 -0
- data/test/spec/support/basic_numeric_helpers.rb +327 -0
- data/test/spec/support/basic_object_helpers.rb +22 -0
- data/test/spec/transcript_spec.rb +37 -0
- data/test/spec/transform_spec.rb +513 -0
- metadata +742 -0
@@ -0,0 +1,128 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
module Basic101
|
4
|
+
|
5
|
+
describe ArgumentChecker do
|
6
|
+
|
7
|
+
subject {described_class.new(args, required_types, optional_types)}
|
8
|
+
|
9
|
+
context 'when takes [string]' do
|
10
|
+
|
11
|
+
let(:required_types) {[BasicString]}
|
12
|
+
let(:optional_types) {[]}
|
13
|
+
|
14
|
+
context 'when given [string]' do
|
15
|
+
let(:args) {[BasicString.new('')]}
|
16
|
+
specify do
|
17
|
+
expect{subject.check}.to_not raise_error
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
context 'when given []' do
|
22
|
+
let(:args) {[]}
|
23
|
+
specify do
|
24
|
+
expect do
|
25
|
+
subject.check
|
26
|
+
end.to raise_error InvalidArgumentError,
|
27
|
+
'Wrong number of arguments (0 instead of 1)'
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
context 'when given [string, string]' do
|
32
|
+
let(:args) {[BasicString.new(''), BasicString.new('')]}
|
33
|
+
specify do
|
34
|
+
expect do
|
35
|
+
subject.check
|
36
|
+
end.to raise_error InvalidArgumentError,
|
37
|
+
'Wrong number of arguments (2 instead of 1)'
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
context 'when given [integer]' do
|
42
|
+
let(:args) {[BasicInteger.new('')]}
|
43
|
+
specify do
|
44
|
+
expect do
|
45
|
+
subject.check
|
46
|
+
end.to raise_error InvalidArgumentError,
|
47
|
+
'Expected string but got integer'
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
|
53
|
+
context 'when takes [integer, integer?]' do
|
54
|
+
|
55
|
+
let(:required_types) {[BasicInteger]}
|
56
|
+
let(:optional_types) {[BasicInteger]}
|
57
|
+
|
58
|
+
context 'when given [integer]' do
|
59
|
+
let(:args) {[BasicInteger.new(0)]}
|
60
|
+
specify do
|
61
|
+
expect do
|
62
|
+
subject.check
|
63
|
+
end.to_not raise_error
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
context 'when given [integer, integer]' do
|
68
|
+
let(:args) {[BasicInteger.new(0), BasicInteger.new(0)]}
|
69
|
+
specify do
|
70
|
+
expect{subject.check}.to_not raise_error
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
context 'when given []' do
|
75
|
+
let(:args) {[]}
|
76
|
+
specify do
|
77
|
+
expect do
|
78
|
+
subject.check
|
79
|
+
end.to raise_error InvalidArgumentError,
|
80
|
+
'Wrong number of arguments (0 instead of 1..2)'
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
context 'when given [integer, integer, integer]' do
|
85
|
+
let(:args) {3.times.map {BasicInteger.new(0)}}
|
86
|
+
specify do
|
87
|
+
expect do
|
88
|
+
subject.check
|
89
|
+
end.to raise_error InvalidArgumentError,
|
90
|
+
'Wrong number of arguments (3 instead of 1..2)'
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
context 'when given [integer]' do
|
95
|
+
let(:args) {[BasicString.new('')]}
|
96
|
+
specify do
|
97
|
+
expect do
|
98
|
+
subject.check
|
99
|
+
end.to raise_error InvalidArgumentError,
|
100
|
+
'Expected integer but got string'
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
context 'when given [integer, string]' do
|
105
|
+
let(:args) {[BasicString.new('')]}
|
106
|
+
specify do
|
107
|
+
expect do
|
108
|
+
subject.check
|
109
|
+
end.to raise_error InvalidArgumentError,
|
110
|
+
'Expected integer but got string'
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
context 'when given [string, string]' do
|
115
|
+
let(:args) {[BasicString.new('')]}
|
116
|
+
specify do
|
117
|
+
expect do
|
118
|
+
subject.check
|
119
|
+
end.to raise_error InvalidArgumentError,
|
120
|
+
'Expected integer but got string'
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
end
|
125
|
+
|
126
|
+
end
|
127
|
+
|
128
|
+
end
|
@@ -0,0 +1,100 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
module Basic101
|
4
|
+
|
5
|
+
describe BasicArray do
|
6
|
+
|
7
|
+
let(:default) {BasicInteger.new(0)}
|
8
|
+
subject {BasicArray.new(num_dimensions, default)}
|
9
|
+
|
10
|
+
describe 'default dimensions' do
|
11
|
+
|
12
|
+
context 'when 1 dimension' do
|
13
|
+
let(:num_dimensions) {1}
|
14
|
+
it 'should set each element to the default' do
|
15
|
+
expect(subject.get([0])).to eq default
|
16
|
+
expect(subject.get([10])).to eq default
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
context 'when 2 dimensions' do
|
21
|
+
let(:num_dimensions) {2}
|
22
|
+
it 'should set each element to the default' do
|
23
|
+
expect(subject.get([0, 0])).to eq default
|
24
|
+
expect(subject.get([0, 10])).to eq default
|
25
|
+
expect(subject.get([10, 0])).to eq default
|
26
|
+
expect(subject.get([10, 10])).to eq default
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
describe '#dimension' do
|
33
|
+
|
34
|
+
context 'when normal' do
|
35
|
+
let(:num_dimensions) {2}
|
36
|
+
before(:each) {subject.dimension([2, 3])}
|
37
|
+
it 'should set each element to the default' do
|
38
|
+
expect(subject.get([0, 0])).to eq default
|
39
|
+
expect(subject.get([0, 3])).to eq default
|
40
|
+
expect(subject.get([2, 0])).to eq default
|
41
|
+
expect(subject.get([2, 3])).to eq default
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
context 'max index 0' do
|
46
|
+
let(:num_dimensions) {1}
|
47
|
+
before(:each) {subject.dimension([0])}
|
48
|
+
specify do
|
49
|
+
expect(subject.get([0])).to eq default
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
context 'negative max index' do
|
54
|
+
let(:num_dimensions) {1}
|
55
|
+
specify do
|
56
|
+
expect{subject.dimension([-1])}.to raise_error ArraySizeError
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
61
|
+
|
62
|
+
describe '#set' do
|
63
|
+
let(:num_dimensions) {2}
|
64
|
+
before(:each) do
|
65
|
+
subject.dimension([1, 1])
|
66
|
+
subject.set([0, 0], BasicInteger.new(1))
|
67
|
+
subject.set([0, 1], BasicInteger.new(2))
|
68
|
+
subject.set([1, 0], BasicInteger.new(3))
|
69
|
+
subject.set([1, 1], BasicInteger.new(4))
|
70
|
+
end
|
71
|
+
specify {expect(subject.get([0, 0])).to eq BasicInteger.new(1)}
|
72
|
+
specify {expect(subject.get([0, 1])).to eq BasicInteger.new(2)}
|
73
|
+
specify {expect(subject.get([1, 0])).to eq BasicInteger.new(3)}
|
74
|
+
specify {expect(subject.get([1, 1])).to eq BasicInteger.new(4)}
|
75
|
+
end
|
76
|
+
|
77
|
+
describe 'bounds checking' do
|
78
|
+
|
79
|
+
let(:num_dimensions) {2}
|
80
|
+
|
81
|
+
it 'should reject negative indices' do
|
82
|
+
expect{subject.get([0, -1])}.to raise_error IndexError
|
83
|
+
end
|
84
|
+
|
85
|
+
it 'should reject too few indices' do
|
86
|
+
expect{subject.get([0])}.to raise_error IndexError
|
87
|
+
end
|
88
|
+
|
89
|
+
it 'should reject too many indices' do
|
90
|
+
expect{subject.get([0, 0, 0])}.to raise_error IndexError
|
91
|
+
end
|
92
|
+
|
93
|
+
it 'should reject too large an index' do
|
94
|
+
expect{subject.get([0, 11])}.to raise_error IndexError
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
end
|
99
|
+
|
100
|
+
end
|
@@ -0,0 +1,168 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
module Basic101
|
4
|
+
|
5
|
+
describe BasicFloat do
|
6
|
+
|
7
|
+
it_should_behave_like 'a basic numeric'
|
8
|
+
|
9
|
+
describe '#simplest' do
|
10
|
+
|
11
|
+
context 'when no fractional part' do
|
12
|
+
it 'should return a basic integer' do
|
13
|
+
a = described_class.new(12.0)
|
14
|
+
b = a.simplest
|
15
|
+
b.should eq BasicInteger.new(12)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
context 'when fractional part' do
|
20
|
+
it 'should return itself' do
|
21
|
+
a = described_class.new(12.34)
|
22
|
+
b = a.simplest
|
23
|
+
b.should eq a
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'type_name' do
|
30
|
+
let(:type_name) {'float'}
|
31
|
+
subject {described_class.new(0)}
|
32
|
+
specify {expect(subject.class.type_name).to eq type_name}
|
33
|
+
specify {expect(subject.type_name).to eq type_name}
|
34
|
+
end
|
35
|
+
|
36
|
+
describe '.from_s' do
|
37
|
+
|
38
|
+
context 'when fixed-point' do
|
39
|
+
specify do
|
40
|
+
a = '1.2'
|
41
|
+
b = described_class.from_s(a)
|
42
|
+
expect(b.value).to eq 1.2
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
context 'when exponential' do
|
47
|
+
specify do
|
48
|
+
a = '-1.2E-2'
|
49
|
+
b = described_class.from_s(a)
|
50
|
+
expect(b.value).to eq -1.2E-2
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
context 'when no leading digits' do
|
55
|
+
specify do
|
56
|
+
a = '.2'
|
57
|
+
b = described_class.from_s(a)
|
58
|
+
expect(b.value).to eq 0.2
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
context 'when no trailing digits' do
|
63
|
+
specify do
|
64
|
+
a = '2.'
|
65
|
+
b = described_class.from_s(a)
|
66
|
+
expect(b.value).to eq 2.0
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
71
|
+
|
72
|
+
describe '#to_integer' do
|
73
|
+
specify do
|
74
|
+
a = described_class.new(2.6)
|
75
|
+
expect(a.to_integer).to eq BasicInteger.new(2)
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
describe '#to_float' do
|
80
|
+
specify do
|
81
|
+
a = described_class.new(2.6)
|
82
|
+
expect(a.to_float).to eq a
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
describe '#to_string' do
|
87
|
+
specify do
|
88
|
+
a = described_class.new(2.6)
|
89
|
+
expect{a.to_string}.to raise_error TypeError
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
describe '#and' do
|
94
|
+
specify do
|
95
|
+
a = described_class.new(0b1100)
|
96
|
+
b = BasicInteger.new(0b0110)
|
97
|
+
c = a.and(b)
|
98
|
+
expect(c).to eq BasicInteger.new(0b0100)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
describe '#or' do
|
103
|
+
specify do
|
104
|
+
a = described_class.new(0b1100)
|
105
|
+
b = BasicInteger.new(0b0110)
|
106
|
+
c = a.or(b)
|
107
|
+
expect(c).to eq BasicInteger.new(0b1110)
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
describe '#not' do
|
112
|
+
specify do
|
113
|
+
a = described_class.new(10)
|
114
|
+
b = a.not
|
115
|
+
expect(b).to eq BasicInteger.new(-11)
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe '#floor' do
|
120
|
+
specify do
|
121
|
+
a = described_class.new(-1.5)
|
122
|
+
b = a.floor
|
123
|
+
expect(b).to eq BasicInteger.new(-2.0)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
describe '#abs' do
|
128
|
+
|
129
|
+
it 'should turn negative into positive' do
|
130
|
+
a = described_class.new(-1.5)
|
131
|
+
b = a.abs
|
132
|
+
expect(b).to eq described_class.new(1.5)
|
133
|
+
end
|
134
|
+
|
135
|
+
it 'should leave positive alone' do
|
136
|
+
a = described_class.new(1.5)
|
137
|
+
b = a.abs
|
138
|
+
expect(b).to eq described_class.new(1.5)
|
139
|
+
end
|
140
|
+
|
141
|
+
end
|
142
|
+
|
143
|
+
describe '#sqr' do
|
144
|
+
specify do
|
145
|
+
a = described_class.new(2)
|
146
|
+
b = a.sqr
|
147
|
+
expect(b).to eq described_class.new(2 ** 0.5)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
describe '#exp' do
|
152
|
+
specify do
|
153
|
+
a = described_class.new(1.5)
|
154
|
+
b = a.exp
|
155
|
+
expect(b).to eq described_class.new(Math::E ** 1.5)
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
describe '#str' do
|
160
|
+
specify do
|
161
|
+
a = described_class.new(-12.34)
|
162
|
+
expect(a.str).to eq BasicString.new('-12.34')
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
end
|
167
|
+
|
168
|
+
end
|
@@ -0,0 +1,270 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
module Basic101
|
4
|
+
|
5
|
+
describe BasicInteger do
|
6
|
+
|
7
|
+
it_should_behave_like 'a basic numeric'
|
8
|
+
|
9
|
+
describe '#simplest' do
|
10
|
+
it 'should return itself' do
|
11
|
+
a = BasicInteger.new(1)
|
12
|
+
b = a.simplest
|
13
|
+
expect(b).to eq a
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
describe '.from_bool' do
|
18
|
+
|
19
|
+
it 'should convert true to basic -1' do
|
20
|
+
a = BasicInteger.from_bool(true)
|
21
|
+
expect(a).to eq BasicInteger.new(-1)
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'should convert false to basic 0' do
|
25
|
+
a = BasicInteger.from_bool(false)
|
26
|
+
expect(a).to eq BasicInteger.new(0)
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
describe 'type_name' do
|
32
|
+
let(:type_name) {'integer'}
|
33
|
+
subject {described_class.new(0)}
|
34
|
+
specify {expect(subject.class.type_name).to eq type_name}
|
35
|
+
specify {expect(subject.type_name).to eq type_name}
|
36
|
+
end
|
37
|
+
|
38
|
+
describe '#str' do
|
39
|
+
specify do
|
40
|
+
a = BasicInteger.new(-12)
|
41
|
+
expect(a.str).to eq BasicString.new('-12')
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe '#to_integer' do
|
46
|
+
specify do
|
47
|
+
a = BasicInteger.new(1)
|
48
|
+
expect(a.to_integer).to eq a
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe '#to_float' do
|
53
|
+
specify do
|
54
|
+
a = BasicInteger.new(1)
|
55
|
+
expect(a.to_float).to eq BasicFloat.new(1)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe '#to_string' do
|
60
|
+
specify do
|
61
|
+
a = BasicInteger.new(1)
|
62
|
+
expect {a.to_string}.to raise_error TypeError
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe '#and' do
|
67
|
+
|
68
|
+
context 'when 0, 0' do
|
69
|
+
specify do
|
70
|
+
a = BasicInteger.new(0)
|
71
|
+
b = BasicInteger.new(0)
|
72
|
+
c = a.and(b)
|
73
|
+
expect(c).to eq BasicInteger.new(0)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
context 'when 0, -1' do
|
78
|
+
specify do
|
79
|
+
a = BasicInteger.new(0)
|
80
|
+
b = BasicInteger.new(-1)
|
81
|
+
c = a.and(b)
|
82
|
+
expect(c).to eq BasicInteger.new(0)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
context 'when -1, 0' do
|
87
|
+
specify do
|
88
|
+
a = BasicInteger.new(-1)
|
89
|
+
b = BasicInteger.new(0)
|
90
|
+
c = a.and(b)
|
91
|
+
expect(c).to eq BasicInteger.new(0)
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
context 'when -1, -1' do
|
96
|
+
specify do
|
97
|
+
a = BasicInteger.new(-1)
|
98
|
+
b = BasicInteger.new(-1)
|
99
|
+
c = a.and(b)
|
100
|
+
expect(c).to eq BasicInteger.new(-1)
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
context 'when bitwise' do
|
105
|
+
specify do
|
106
|
+
a = BasicInteger.new(0b1100)
|
107
|
+
b = BasicInteger.new(0b0110)
|
108
|
+
c = a.and(b)
|
109
|
+
expect(c).to eq BasicInteger.new(0b0100)
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
context 'when float' do
|
114
|
+
specify do
|
115
|
+
a = BasicFloat.new(0b11)
|
116
|
+
b = BasicFloat.new(-1.5)
|
117
|
+
c = a.and(b)
|
118
|
+
expect(c).to eq BasicInteger.new(0b11)
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
end
|
123
|
+
|
124
|
+
describe '#or' do
|
125
|
+
|
126
|
+
context 'when 0, 0' do
|
127
|
+
specify do
|
128
|
+
a = BasicInteger.new(0)
|
129
|
+
b = BasicInteger.new(0)
|
130
|
+
c = a.or(b)
|
131
|
+
expect(c).to eq BasicInteger.new(0)
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
context 'when 0, -1' do
|
136
|
+
specify do
|
137
|
+
a = BasicInteger.new(0)
|
138
|
+
b = BasicInteger.new(-1)
|
139
|
+
c = a.or(b)
|
140
|
+
expect(c).to eq BasicInteger.new(-1)
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
context 'when -1, 0' do
|
145
|
+
specify do
|
146
|
+
a = BasicInteger.new(-1)
|
147
|
+
b = BasicInteger.new(0)
|
148
|
+
c = a.or(b)
|
149
|
+
expect(c).to eq BasicInteger.new(-1)
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
context 'when -1, -1' do
|
154
|
+
specify do
|
155
|
+
a = BasicInteger.new(-1)
|
156
|
+
b = BasicInteger.new(-1)
|
157
|
+
c = a.or(b)
|
158
|
+
expect(c).to eq BasicInteger.new(-1)
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
context 'when bitwise' do
|
163
|
+
specify do
|
164
|
+
a = BasicInteger.new(0b1100)
|
165
|
+
b = BasicInteger.new(0b0110)
|
166
|
+
c = a.or(b)
|
167
|
+
expect(c).to eq BasicInteger.new(0b1110)
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
context 'when float' do
|
172
|
+
specify do
|
173
|
+
a = BasicFloat.new(1)
|
174
|
+
b = BasicFloat.new(-2.2)
|
175
|
+
c = a.or(b)
|
176
|
+
expect(c).to eq BasicInteger.new(-1)
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
180
|
+
end
|
181
|
+
|
182
|
+
describe '#not' do
|
183
|
+
|
184
|
+
context 'when 0' do
|
185
|
+
specify do
|
186
|
+
a = BasicInteger.new(0)
|
187
|
+
b = a.not
|
188
|
+
expect(b).to eq BasicInteger.new(-1)
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
context 'when -1' do
|
193
|
+
specify do
|
194
|
+
a = BasicInteger.new(-1)
|
195
|
+
b = a.not
|
196
|
+
expect(b).to eq BasicInteger.new(0)
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
context 'when bitwise' do
|
201
|
+
specify do
|
202
|
+
a = BasicInteger.new(123)
|
203
|
+
b = a.not
|
204
|
+
expect(b).to eq BasicInteger.new(-124)
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
end
|
209
|
+
|
210
|
+
describe '#chr' do
|
211
|
+
|
212
|
+
context 'normal' do
|
213
|
+
specify do
|
214
|
+
a = BasicInteger.new(65)
|
215
|
+
b = a.chr
|
216
|
+
expect(b).to eq BasicString.new("A")
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
220
|
+
context 'value too small' do
|
221
|
+
specify do
|
222
|
+
a = BasicInteger.new(-1)
|
223
|
+
expect {a.chr}.to raise_error InvalidArgumentError
|
224
|
+
end
|
225
|
+
end
|
226
|
+
|
227
|
+
context 'value too large' do
|
228
|
+
specify do
|
229
|
+
a = BasicInteger.new(256)
|
230
|
+
expect {a.chr}.to raise_error InvalidArgumentError
|
231
|
+
end
|
232
|
+
end
|
233
|
+
|
234
|
+
end
|
235
|
+
|
236
|
+
describe '#abs' do
|
237
|
+
|
238
|
+
it 'should turn negative into positive' do
|
239
|
+
a = BasicInteger.new(-1)
|
240
|
+
b = a.abs
|
241
|
+
expect(b).to eq BasicInteger.new(1)
|
242
|
+
end
|
243
|
+
|
244
|
+
it 'should leave positive alone' do
|
245
|
+
a = BasicInteger.new(1)
|
246
|
+
b = a.abs
|
247
|
+
expect(b).to eq BasicInteger.new(1)
|
248
|
+
end
|
249
|
+
|
250
|
+
end
|
251
|
+
|
252
|
+
describe '#sqr' do
|
253
|
+
specify do
|
254
|
+
a = BasicInteger.new(4)
|
255
|
+
b = a.sqr
|
256
|
+
expect(b).to eq BasicInteger.new(2)
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
describe '#exp' do
|
261
|
+
specify do
|
262
|
+
a = BasicInteger.new(4)
|
263
|
+
b = a.exp
|
264
|
+
expect(b).to eq BasicFloat.new(Math::E ** 4)
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
268
|
+
end
|
269
|
+
|
270
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
module Basic101
|
4
|
+
|
5
|
+
describe BasicNumeric do
|
6
|
+
|
7
|
+
describe 'type_name' do
|
8
|
+
let(:type_name) {'numeric'}
|
9
|
+
subject {described_class.new(0)}
|
10
|
+
specify {expect(subject.class.type_name).to eq type_name}
|
11
|
+
specify {expect(subject.type_name).to eq type_name}
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
module Basic101
|
4
|
+
|
5
|
+
describe BasicObject do
|
6
|
+
|
7
|
+
describe 'type_name' do
|
8
|
+
let(:type_name) {'object'}
|
9
|
+
specify {expect(subject.class.type_name).to eq type_name}
|
10
|
+
specify {expect(subject.type_name).to eq type_name}
|
11
|
+
end
|
12
|
+
|
13
|
+
describe '#eval' do
|
14
|
+
let(:runtime) {double Runtime}
|
15
|
+
it 'should return itself' do
|
16
|
+
subject.eval(runtime).should eq subject
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|