aruba 0.14.14 → 1.0.0.pre.alpha.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (246) hide show
  1. checksums.yaml +5 -5
  2. data/.cucumberproignore +3 -0
  3. data/.github/ISSUE_TEMPLATE.md +48 -0
  4. data/.github/PULL_REQUEST_TEMPLATE.md +39 -0
  5. data/.gitignore +1 -0
  6. data/.rspec +1 -0
  7. data/.rubocop.yml +1 -5
  8. data/.travis.yml +35 -27
  9. data/CONTRIBUTING.md +131 -29
  10. data/Dockerfile +67 -0
  11. data/Gemfile +33 -80
  12. data/History.md +602 -0
  13. data/README.md +24 -196
  14. data/Rakefile +87 -27
  15. data/appveyor.yml +0 -1
  16. data/aruba.gemspec +30 -40
  17. data/bin/bootstrap +34 -0
  18. data/bin/build +3 -0
  19. data/{script → bin}/console +0 -0
  20. data/bin/release +3 -0
  21. data/bin/test +9 -0
  22. data/cucumber.yml +1 -3
  23. data/docker-compose.yml +26 -0
  24. data/{bin → exec}/aruba +0 -0
  25. data/fixtures/cli-app/README.md +1 -1
  26. data/fixtures/cli-app/features/support/aruba.rb +1 -0
  27. data/fixtures/cli-app/features/support/env.rb +1 -1
  28. data/fixtures/cli-app/lib/cli/app.rb +1 -5
  29. data/fixtures/cli-app/spec/spec_helper.rb +1 -6
  30. data/fixtures/empty-app/lib/cli/app.rb +2 -0
  31. data/lib/aruba/api.rb +3 -3
  32. data/lib/aruba/api/{commands.rb → command.rb} +4 -30
  33. data/lib/aruba/api/core.rb +8 -25
  34. data/lib/aruba/api/deprecated.rb +150 -408
  35. data/lib/aruba/api/filesystem.rb +17 -2
  36. data/lib/aruba/api/rvm.rb +44 -0
  37. data/lib/aruba/aruba_path.rb +56 -32
  38. data/lib/aruba/basic_configuration.rb +3 -5
  39. data/lib/aruba/colorizer.rb +99 -10
  40. data/lib/aruba/command.rb +0 -2
  41. data/lib/aruba/config.rb +5 -5
  42. data/lib/aruba/config/jruby.rb +5 -15
  43. data/lib/aruba/console.rb +2 -0
  44. data/lib/aruba/console/help.rb +1 -7
  45. data/lib/aruba/cucumber.rb +0 -2
  46. data/lib/aruba/cucumber/command.rb +98 -72
  47. data/lib/aruba/cucumber/file.rb +15 -3
  48. data/lib/aruba/cucumber/hooks.rb +71 -10
  49. data/lib/aruba/event_bus/name_resolver.rb +2 -10
  50. data/lib/aruba/generators/script_file.rb +1 -1
  51. data/lib/aruba/in_process.rb +0 -2
  52. data/lib/aruba/initializer.rb +4 -14
  53. data/lib/aruba/matchers/base/object_formatter.rb +0 -5
  54. data/lib/aruba/matchers/file/have_same_file_content.rb +5 -5
  55. data/lib/aruba/matchers/string/output_string_eq.rb +1 -1
  56. data/lib/aruba/platforms/announcer.rb +11 -16
  57. data/lib/aruba/platforms/aruba_file_creator.rb +1 -5
  58. data/lib/aruba/platforms/aruba_logger.rb +1 -5
  59. data/lib/aruba/platforms/command_monitor.rb +10 -14
  60. data/lib/aruba/platforms/determine_disk_usage.rb +8 -3
  61. data/lib/aruba/platforms/filesystem_status.rb +1 -5
  62. data/lib/aruba/platforms/unix_command_string.rb +1 -8
  63. data/lib/aruba/platforms/unix_environment_variables.rb +6 -8
  64. data/lib/aruba/platforms/unix_platform.rb +9 -22
  65. data/lib/aruba/platforms/unix_which.rb +4 -0
  66. data/lib/aruba/platforms/windows_command_string.rb +6 -14
  67. data/lib/aruba/platforms/windows_environment_variables.rb +4 -16
  68. data/lib/aruba/platforms/windows_which.rb +4 -0
  69. data/lib/aruba/processes/basic_process.rb +22 -18
  70. data/lib/aruba/processes/spawn_process.rb +12 -35
  71. data/lib/aruba/rspec.rb +1 -0
  72. data/lib/aruba/runtime.rb +3 -4
  73. data/lib/aruba/setup.rb +9 -11
  74. data/lib/aruba/spawn_process.rb +1 -4
  75. data/lib/aruba/tasks/docker_helpers.rb +158 -0
  76. data/lib/aruba/version.rb +1 -1
  77. metadata +62 -230
  78. data/CHANGELOG.md +0 -991
  79. data/features/.nav +0 -72
  80. data/features/01_getting_started_with_aruba/cleanup_working_directory.feature +0 -57
  81. data/features/01_getting_started_with_aruba/run_commands.feature +0 -217
  82. data/features/01_getting_started_with_aruba/supported_testing_frameworks.feature +0 -88
  83. data/features/02_configure_aruba/activate_announcer_on_command_failure.feature +0 -38
  84. data/features/02_configure_aruba/basics.feature +0 -151
  85. data/features/02_configure_aruba/command_runtime_environment.feature +0 -129
  86. data/features/02_configure_aruba/console_history_file.feature +0 -38
  87. data/features/02_configure_aruba/exit_timeout.feature +0 -60
  88. data/features/02_configure_aruba/fixtures_directories.feature +0 -38
  89. data/features/02_configure_aruba/fixtures_path_prefix.feature +0 -23
  90. data/features/02_configure_aruba/home_directory.feature +0 -80
  91. data/features/02_configure_aruba/io_timeout.feature +0 -30
  92. data/features/02_configure_aruba/keep_ansi.feature +0 -30
  93. data/features/02_configure_aruba/log_level.feature +0 -38
  94. data/features/02_configure_aruba/physical_block_size.feature +0 -53
  95. data/features/02_configure_aruba/remove_ansi_escape_sequences.feature +0 -38
  96. data/features/02_configure_aruba/root_directory.feature +0 -30
  97. data/features/02_configure_aruba/startup_wait_time.feature +0 -48
  98. data/features/02_configure_aruba/working_directory.feature +0 -38
  99. data/features/03_testing_frameworks/cucumber/announce_information_for_troubleshooting.feature +0 -306
  100. data/features/03_testing_frameworks/cucumber/disable_bunder.feature +0 -18
  101. data/features/03_testing_frameworks/cucumber/steps/command/check_for_exit_statuses.feature +0 -136
  102. data/features/03_testing_frameworks/cucumber/steps/command/check_output_of_command.feature +0 -514
  103. data/features/03_testing_frameworks/cucumber/steps/command/check_stderr_of_command.feature +0 -68
  104. data/features/03_testing_frameworks/cucumber/steps/command/check_stdout_of_command.feature +0 -109
  105. data/features/03_testing_frameworks/cucumber/steps/command/debug_your_command_in_aruba.feature +0 -118
  106. data/features/03_testing_frameworks/cucumber/steps/command/run_a_command.feature +0 -66
  107. data/features/03_testing_frameworks/cucumber/steps/command/run_command_in_process.feature +0 -485
  108. data/features/03_testing_frameworks/cucumber/steps/command/run_command_interactively.feature +0 -90
  109. data/features/03_testing_frameworks/cucumber/steps/command/run_commands_which_require_a_shell.feature +0 -79
  110. data/features/03_testing_frameworks/cucumber/steps/command/send_signal_to_command.feature +0 -83
  111. data/features/03_testing_frameworks/cucumber/steps/command/stop_command.feature +0 -285
  112. data/features/03_testing_frameworks/cucumber/steps/environment/append_environment_variable.feature +0 -52
  113. data/features/03_testing_frameworks/cucumber/steps/environment/modify_home_variable_for_testing.feature +0 -62
  114. data/features/03_testing_frameworks/cucumber/steps/environment/prepend_environment_variable.feature +0 -52
  115. data/features/03_testing_frameworks/cucumber/steps/environment/set_environment_variable.feature +0 -49
  116. data/features/03_testing_frameworks/cucumber/steps/filesystem/append_to_file.feature +0 -45
  117. data/features/03_testing_frameworks/cucumber/steps/filesystem/cd_to_directory.feature +0 -33
  118. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_directory.feature +0 -57
  119. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_file.feature +0 -43
  120. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_file_content.feature +0 -143
  121. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_non_existence_of_directory.feature +0 -69
  122. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_non_existence_of_file.feature +0 -80
  123. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_permissions_of_file.feature +0 -39
  124. data/features/03_testing_frameworks/cucumber/steps/filesystem/compare_files.feature +0 -42
  125. data/features/03_testing_frameworks/cucumber/steps/filesystem/copy_file_or_directory.feature +0 -45
  126. data/features/03_testing_frameworks/cucumber/steps/filesystem/create_directory.feature +0 -57
  127. data/features/03_testing_frameworks/cucumber/steps/filesystem/create_file.feature +0 -76
  128. data/features/03_testing_frameworks/cucumber/steps/filesystem/move_file_or_directory.feature +0 -44
  129. data/features/03_testing_frameworks/cucumber/steps/filesystem/overwrite_file.feature +0 -72
  130. data/features/03_testing_frameworks/cucumber/steps/filesystem/remove_directory.feature +0 -38
  131. data/features/03_testing_frameworks/cucumber/steps/filesystem/remove_file.feature +0 -38
  132. data/features/03_testing_frameworks/cucumber/steps/filesystem/use_fixtures_for_setup_test.feature +0 -77
  133. data/features/03_testing_frameworks/rspec/hooks/define_after_hook_for_commands.feature +0 -43
  134. data/features/03_testing_frameworks/rspec/hooks/define_before_hook_for_commands.feature +0 -71
  135. data/features/03_testing_frameworks/rspec/setup_aruba_for_rspec.feature +0 -179
  136. data/features/04_aruba_api/command/find_a_started_command.feature +0 -83
  137. data/features/04_aruba_api/command/find_command_in_PATH.feature +0 -37
  138. data/features/04_aruba_api/command/read_stderr_of_command.feature +0 -46
  139. data/features/04_aruba_api/command/read_stdout_of_command.feature +0 -46
  140. data/features/04_aruba_api/command/run_command.feature +0 -423
  141. data/features/04_aruba_api/command/run_simple.feature +0 -254
  142. data/features/04_aruba_api/command/send_signal_to_command.feature +0 -53
  143. data/features/04_aruba_api/command/stop_all_commands.feature +0 -57
  144. data/features/04_aruba_api/command/stop_single_command.feature +0 -132
  145. data/features/04_aruba_api/command/terminate_all_commands.feature +0 -57
  146. data/features/04_aruba_api/command/use_last_command_started.feature +0 -50
  147. data/features/04_aruba_api/command/use_last_command_stopped.feature +0 -89
  148. data/features/04_aruba_api/core/expand_path.feature +0 -88
  149. data/features/04_aruba_api/environment/append_environment_variable.feature +0 -128
  150. data/features/04_aruba_api/environment/delete_environment_variable.feature +0 -63
  151. data/features/04_aruba_api/environment/prepend_environment_variable.feature +0 -128
  152. data/features/04_aruba_api/environment/set_environment_variable.feature +0 -376
  153. data/features/04_aruba_api/filesystem/cd_to_directory.feature +0 -184
  154. data/features/04_aruba_api/filesystem/check_existence_file_or_directory.feature +0 -62
  155. data/features/04_aruba_api/filesystem/check_if_path_is_absolute.feature +0 -48
  156. data/features/04_aruba_api/filesystem/check_if_path_is_directory.feature +0 -53
  157. data/features/04_aruba_api/filesystem/check_if_path_is_file.feature +0 -54
  158. data/features/04_aruba_api/filesystem/check_if_path_is_relative.feature +0 -48
  159. data/features/04_aruba_api/filesystem/create_directory.feature +0 -57
  160. data/features/04_aruba_api/filesystem/move_file_or_directory.feature +0 -119
  161. data/features/04_aruba_api/filesystem/report_disk_usage.feature +0 -152
  162. data/features/04_aruba_api/filesystem/use_fixtures.feature +0 -104
  163. data/features/04_aruba_api/text/extract_text.feature +0 -87
  164. data/features/04_aruba_api/text/replace_variables.feature +0 -45
  165. data/features/04_aruba_api/text/sanitize_text.feature +0 -228
  166. data/features/04_aruba_api/text/unescape_text.feature +0 -127
  167. data/features/05_use_rspec_matchers/command/check_timeouts.feature +0 -48
  168. data/features/05_use_rspec_matchers/directory/have_sub_directory.feature +0 -110
  169. data/features/05_use_rspec_matchers/file/be_a_command_found_in_path.feature +0 -115
  170. data/features/05_use_rspec_matchers/file/be_existing_executable.feature +0 -88
  171. data/features/05_use_rspec_matchers/file/be_existing_file.feature +0 -82
  172. data/features/05_use_rspec_matchers/file/have_file_content.feature +0 -123
  173. data/features/05_use_rspec_matchers/file/have_file_size.feature +0 -107
  174. data/features/05_use_rspec_matchers/path/be_an_absolute_path.feature +0 -74
  175. data/features/05_use_rspec_matchers/path/be_an_existing_path.feature +0 -97
  176. data/features/05_use_rspec_matchers/path/have_permissions.feature +0 -118
  177. data/features/06_use_aruba_cli/initialize_project_with_aruba.feature +0 -79
  178. data/features/06_use_aruba_cli/open_console.feature +0 -55
  179. data/features/08_other/improve_performance_if_using_jruby.feature +0 -37
  180. data/features/step_definitions/hooks.rb +0 -146
  181. data/features/support/aruba.rb +0 -7
  182. data/features/support/env.rb +0 -33
  183. data/features/support/simplecov_setup.rb +0 -11
  184. data/lib/aruba/api/bundler.rb +0 -16
  185. data/lib/aruba/cucumber/deprecated.rb +0 -93
  186. data/lib/aruba/matchers/deprecated.rb +0 -1
  187. data/lib/aruba/matchers/deprecated/file.rb +0 -17
  188. data/lib/aruba/reporting.rb +0 -126
  189. data/script/bootstrap +0 -24
  190. data/script/test +0 -3
  191. data/spec/aruba/api/bundler_spec.rb +0 -15
  192. data/spec/aruba/api/commands_spec.rb +0 -30
  193. data/spec/aruba/api/core_spec.rb +0 -184
  194. data/spec/aruba/api/deprecated_spec.rb +0 -421
  195. data/spec/aruba/api/filesystem_spec.rb +0 -746
  196. data/spec/aruba/api/runtime_spec.rb +0 -28
  197. data/spec/aruba/api_spec.rb +0 -73
  198. data/spec/aruba/aruba_path_spec.rb +0 -103
  199. data/spec/aruba/basic_configuration_spec.rb +0 -5
  200. data/spec/aruba/configuration_spec.rb +0 -5
  201. data/spec/aruba/hooks_spec.rb +0 -17
  202. data/spec/aruba/in_config_wrapper_spec.rb +0 -25
  203. data/spec/aruba/jruby_spec.rb +0 -73
  204. data/spec/aruba/matchers/command/have_output_size_spec.rb +0 -25
  205. data/spec/aruba/matchers/command_spec.rb +0 -174
  206. data/spec/aruba/matchers/deprecated_spec.rb +0 -120
  207. data/spec/aruba/matchers/directory_spec.rb +0 -57
  208. data/spec/aruba/matchers/file_spec.rb +0 -208
  209. data/spec/aruba/matchers/path_spec.rb +0 -58
  210. data/spec/aruba/platform/simple_table_spec.rb +0 -23
  211. data/spec/aruba/platform/windows_environment_variables_spec.rb +0 -500
  212. data/spec/aruba/platforms/unix_command_string_spec.rb +0 -17
  213. data/spec/aruba/platforms/windows_command_string_spec.rb +0 -22
  214. data/spec/aruba/processes/spawn_process_spec.rb +0 -112
  215. data/spec/aruba/rspec_spec.rb +0 -15
  216. data/spec/aruba/runtime_spec.rb +0 -29
  217. data/spec/event_bus/name_resolver_spec.rb +0 -68
  218. data/spec/event_bus_spec.rb +0 -158
  219. data/spec/spec_helper.rb +0 -22
  220. data/spec/support/configs/.keep +0 -0
  221. data/spec/support/configs/aruba.rb +0 -5
  222. data/spec/support/configs/pry.rb +0 -3
  223. data/spec/support/configs/rspec.rb +0 -15
  224. data/spec/support/helpers/.keep +0 -0
  225. data/spec/support/helpers/reporting.rb +0 -44
  226. data/spec/support/matchers/.keep +0 -0
  227. data/spec/support/matchers/option.rb +0 -35
  228. data/spec/support/shared_contexts/.keep +0 -0
  229. data/spec/support/shared_contexts/aruba.rb +0 -49
  230. data/spec/support/shared_examples/.keep +0 -0
  231. data/spec/support/shared_examples/configuration.rb +0 -116
  232. data/spec/support/shared_examples/directory.rb +0 -7
  233. data/spec/support/shared_examples/file.rb +0 -7
  234. data/templates/css/console.css +0 -24
  235. data/templates/css/filesystem.css +0 -42
  236. data/templates/css/pygments-autumn.css +0 -59
  237. data/templates/files.erb +0 -14
  238. data/templates/images/LICENSE +0 -22
  239. data/templates/images/folder.png +0 -0
  240. data/templates/images/page_white.png +0 -0
  241. data/templates/images/page_white_gherkin.png +0 -0
  242. data/templates/images/page_white_ruby.png +0 -0
  243. data/templates/index.erb +0 -20
  244. data/templates/js/filesystem.js +0 -5
  245. data/templates/js/jquery-1.11.3.min.js +0 -5
  246. data/templates/main.erb +0 -34
@@ -1,72 +0,0 @@
1
- - README.md
2
- - getting_started (Getting Started):
3
- - install.feature (Install Aruba)
4
- - supported_programming_languages.feature (Supportet Programming Languages)
5
- - ruby_api (Ruby API):
6
- - expand_path.feature (#expand_path)
7
- - cleanup_aruba_directory.feature (#setup_aruba)
8
- - run.feature (#run)
9
- - which.feature (#which)
10
- - append_environment_variable.feature (#append_environment_variable)
11
- - prepend_environment_variable.feature (#prepend_environment_variable)
12
- - set_environment_variable.feature (#set_environment_variable)
13
- - cd.feature (#cd)
14
- - create_directory.feature (#create_directory)
15
- - disk_usage.feature (#disk_usage)
16
- - does_exist.feature (#exist?)
17
- - is_absolute.feature (#absolute?)
18
- - filesystem/is_directory.feature (#directory?)
19
- - is_file.feature (#file?)
20
- - is_relative.feature(#relative?)
21
- - move.feature (#move)
22
- - file_system_commands.feature
23
- - command.feature (Before Hook)
24
- - command.feature (After Hook)
25
- - cucumber (Cucumber):
26
- - debug_command.feature (Debug Commmands)
27
- - environment_variables.feature (Environment Variables)
28
- - flushing.feature (Flush Output)
29
- - interactive.feature (Interactive Commands)
30
- - all_output.feature (Command Output)
31
- - stdout.feature (STDOUT)
32
- - configuration (Configuration):
33
- - exit_timeout.feature (Exit Timeout)
34
- - fixtures_directories.feature (Fixtures Directories)
35
- - fixtures_path_prefix.feature (Fixture Path Prefix)
36
- - home_directory.feature (Home Directory)
37
- - io_timeout.feature (IO Wait Timeout)
38
- - keep_ansi.feature (Keep ANSI output)
39
- - log_level.feature (Log Level)
40
- - physical_block_size.feature (Physical Block Size)
41
- - root_directory.feature (Root Directory)
42
- - working_directory.feature (Working Directory)
43
- - rspec (RSpec):
44
- - getting_started.feature (Integration)
45
- - include_an_object.feature (Matcher: Include an Object)
46
- - have_sub_directory.feature (Matcher: Have Sub Directory)
47
- - be_existing_file.feature (Matcher: Be Existing File)
48
- - have_file_content.feature (Matcher: Have File Content)
49
- - have_file_size.feature (Matcher: Have File Size)
50
- - be_an_absolute_path.feature (Matcher: Be Absolute Path)
51
- - be_an_existing_path.feature (Matcher: Be Existing Path)
52
- - have_permissions.feature (Matcher: Have Permissions)
53
- - timeouts.feature (Matcher: Timeouts)
54
- - cucumber (Cucumber):
55
- - announce.feature (Announce Information to User)
56
- - exit_statuses.feature (Exit Status of Commands)
57
- - in_process.feature (Start Commands in Process)
58
- - run.feature (Run Commands)
59
- - home_variable.feature (Modify HOME-Variable)
60
- - set_environment_variable.feature (Set Environment variables)
61
- - copy.feature (Copy files/directories)
62
- - create_directory.feature (Create Directories)
63
- - create_file.feature (Create Files)
64
- - file_content.feature (Use File Content)
65
- - move.feature (Move files/directories)
66
- - overwrite_file.feature (Overwrite Files)
67
- - use_fixture.feature (Use Fixtures)
68
- - output.feature (Output)
69
- - utf-8.feature (Support for UTF-8-strings)
70
- - development (Development):
71
- - build.feature (Build Aruba)
72
- - test.feature (Test Aruba)
@@ -1,57 +0,0 @@
1
- Feature: Cleanup Aruba Working Directory
2
-
3
- By default Aruba removes its scratch directory *before* every scenario. This
4
- isn't always the right thing to do, especially when the path to the default
5
- directory has been changed. Use the `@no-clobber`-tag on your scenarios to
6
- stop Aruba from cleaning up *before* it runs.
7
-
8
- Background:
9
- Given I use a fixture named "cli-app"
10
-
11
- Scenario: Clean up artifacts and pwd from a previous scenario
12
- Given a file named "features/cleanup.feature" with:
13
- """
14
- Feature: Check
15
- Scenario: Check #1
16
- Given a file named "file.txt" with "content"
17
- And a directory named "dir.d"
18
- Then a file named "file.txt" should exist
19
- And a directory named "dir.d" should exist
20
- When I cd to "dir.d"
21
- And I run `pwd`
22
- Then the output should match %r</tmp/aruba/dir.d$>
23
-
24
- Scenario: Check #2
25
- Then a file named "file.txt" should not exist
26
- And a directory named "dir.d" should not exist
27
- When I run `pwd`
28
- Then the output should match %r</tmp/aruba$>
29
- """
30
- When I run `cucumber`
31
- Then the features should all pass
32
-
33
- Scenario: Do not clobber before run
34
- The `@no-clobber` tag stops Aruba from clearing out its scratch directory.
35
- Other setup steps are still performed, such as setting the current working
36
- directory.
37
-
38
- Given a file named "tmp/aruba/file.txt" with "content"
39
- And a directory named "tmp/aruba/dir.d"
40
- And a file named "features/cleanup.feature" with:
41
- """
42
- Feature: Check
43
- Scenario: Check #1
44
- Given a file named "file.txt" with "content"
45
- And a directory named "dir.d"
46
- Then a file named "file.txt" should exist
47
- And a directory named "dir.d" should exist
48
-
49
- @no-clobber
50
- Scenario: Check #2
51
- Then a file named "file.txt" should exist
52
- And a directory named "dir.d" should exist
53
- When I run `pwd`
54
- Then the output should match %r</tmp/aruba$>
55
- """
56
- When I run `cucumber`
57
- Then the features should all pass
@@ -1,217 +0,0 @@
1
- Feature: Run commands with Aruba
2
-
3
- As long as you've got the neccessary programs, libraries, runtime
4
- environments, interpreters installed, it doesn't matter in which programming
5
- language your commandline application is implemented. You can even use POSIX
6
- standard tools like "printf".
7
-
8
- Below you find some examples of the "Hello, Aruba!"-application implemented
9
- with different programming languages and a single example for a POSIX
10
- standard tool. This is NOT an exclusive list. Every commandline application
11
- should run with `aruba`.
12
-
13
- Background:
14
- Given I use a fixture named "getting-started-app"
15
-
16
- @requires-bash
17
- Scenario: Bash Program
18
- Given an executable named "bin/aruba-test-cli" with:
19
- """bash
20
- #!/usr/bin/env bash
21
-
22
- echo "Hello, Aruba!"
23
- """
24
- And a file named "features/hello_aruba.feature" with:
25
- """
26
- Feature: Getting Started With Aruba
27
- Scenario: First Run of Command
28
- Given I successfully run `aruba-test-cli`
29
- Then the output should contain:
30
- \"\"\"
31
- Hello, Aruba!
32
- \"\"\"
33
- """
34
- When I successfully run `cucumber`
35
- Then the features should all pass
36
-
37
- @requires-bash
38
- Scenario: Bash Program run via bash
39
- Given a file named "features/hello_aruba.feature" with:
40
- """
41
- Feature: Getting Started With Aruba
42
- Scenario: First Run of Command
43
- Given a file named "cli.sh" with:
44
- \"\"\"
45
- echo "Hello, Aruba!"
46
- \"\"\"
47
- When I successfully run `bash ./cli.sh`
48
- Then the output should contain:
49
- \"\"\"
50
- Hello, Aruba!
51
- \"\"\"
52
- """
53
- When I successfully run `cucumber`
54
- Then the features should all pass
55
-
56
- @requires-ruby
57
- Scenario: Ruby Program
58
- Given an executable named "bin/aruba-test-cli" with:
59
- """ruby
60
- #!/usr/bin/env ruby
61
-
62
- puts "Hello, Aruba!"
63
- """
64
- And a file named "features/hello_aruba.feature" with:
65
- """
66
- Feature: Getting Started With Aruba
67
- Scenario: First Run of Command
68
- Given I successfully run `aruba-test-cli`
69
- Then the output should contain:
70
- \"\"\"
71
- Hello, Aruba!
72
- \"\"\"
73
- """
74
- When I successfully run `cucumber`
75
- Then the features should all pass
76
-
77
- @requires-ruby
78
- Scenario: Ruby Program via "ruby"
79
- Given a file named "features/hello_aruba.feature" with:
80
- """
81
- Feature: Getting Started With Aruba
82
- Scenario: First Run of Command
83
- Given a file named "cli.rb" with:
84
- \"\"\"
85
- puts "Hello, Aruba!"
86
- \"\"\"
87
- When I successfully run `ruby ./cli.rb`
88
- Then the output should contain:
89
- \"\"\"
90
- Hello, Aruba!
91
- \"\"\"
92
- """
93
- When I successfully run `cucumber`
94
- Then the features should all pass
95
-
96
- @requires-python
97
- Scenario: Python Program
98
- Given an executable named "bin/aruba-test-cli" with:
99
- """python
100
- #!/usr/bin/env python
101
-
102
- print("Hello, Aruba!")
103
- """
104
- And a file named "features/hello_aruba.feature" with:
105
- """
106
- Feature: Getting Started With Aruba
107
- Scenario: First Run of Command
108
- Given I successfully run `aruba-test-cli`
109
- Then the output should contain:
110
- \"\"\"
111
- Hello, Aruba!
112
- \"\"\"
113
- """
114
- When I successfully run `cucumber`
115
- Then the features should all pass
116
-
117
- @requires-python
118
- Scenario: Python Program via "python"
119
- Given a file named "features/hello_aruba.feature" with:
120
- """
121
- Feature: Getting Started With Aruba
122
- Scenario: First Run of Command
123
- Given a file named "cli.py" with:
124
- \"\"\"
125
- print("Hello, Aruba!")
126
- \"\"\"
127
- When I successfully run `python ./cli.py`
128
- Then the output should contain:
129
- \"\"\"
130
- Hello, Aruba!
131
- \"\"\"
132
- """
133
- When I successfully run `cucumber`
134
- Then the features should all pass
135
-
136
- @requires-perl
137
- Scenario: Perl Program
138
- Given an executable named "bin/aruba-test-cli" with:
139
- """perl
140
- #!/usr/bin/env perl
141
-
142
- print "Hello, Aruba!\n";
143
- """
144
- And a file named "features/hello_aruba.feature" with:
145
- """
146
- Feature: Getting Started With Aruba
147
- Scenario: First Run of Command
148
- Given I successfully run `aruba-test-cli`
149
- Then the output should contain:
150
- \"\"\"
151
- Hello, Aruba!
152
- \"\"\"
153
- """
154
- When I successfully run `cucumber`
155
- Then the features should all pass
156
-
157
- @requires-perl
158
- Scenario: Perl Program via "perl"
159
- Given a file named "features/hello_aruba.feature" with:
160
- """
161
- Feature: Getting Started With Aruba
162
- Scenario: First Run of Command
163
- Given a file named "cli.pl" with:
164
- \"\"\"perl
165
- print "Hello, Aruba!\n";
166
- \"\"\"
167
- When I successfully run `perl ./cli.pl`
168
- Then the output should contain:
169
- \"\"\"
170
- Hello, Aruba!
171
- \"\"\"
172
- """
173
- When I successfully run `cucumber`
174
- Then the features should all pass
175
-
176
- @requires-java
177
- Scenario: Java Program
178
-
179
- It's even possible to compile and run Java programs with Aruba.
180
-
181
- Given a file named "features/hello_aruba.feature" with:
182
- """cucumber
183
- Feature: Getting Started With Aruba
184
- Scenario: First Run of Command
185
- Given a file named "tmp/HelloArubaApp.java" with:
186
- \"\"\"
187
- class HelloArubaApp {
188
- public static void main(String[] args) {
189
- System.out.println("Hello, Aruba!");
190
- }
191
- }
192
- \"\"\"
193
- And I successfully run `javac tmp/HelloArubaApp.java` for up to 20 seconds
194
- And I cd to "tmp/"
195
- And I successfully run `java HelloArubaApp`
196
- Then the output should contain:
197
- \"\"\"
198
- Hello, Aruba!
199
- \"\"\"
200
- """
201
- When I successfully run `cucumber` for up to 21 seconds
202
- Then the features should all pass
203
-
204
- @requires-posix-standard-tools
205
- Scenario: POSIX standard tools
206
- Given a file named "features/hello_aruba.feature" with:
207
- """
208
- Feature: Getting Started With Aruba
209
- Scenario: First Run of Command
210
- Given I successfully run `printf "%s" "Hello, Aruba!"`
211
- Then the output should contain:
212
- \"\"\"
213
- Hello, Aruba!
214
- \"\"\"
215
- """
216
- When I successfully run `cucumber`
217
- Then the features should all pass
@@ -1,88 +0,0 @@
1
- Feature: Supported Testing Frameworks
2
-
3
- You can use `aruba` with all major testing frameworks from the Ruby World:
4
-
5
- \* Cucumber
6
- \* RSpec
7
- \* Minitest
8
-
9
- Background:
10
- Given I use a fixture named "cli-app"
11
-
12
- Scenario: Use "aruba" with "Cucumber"
13
- Given a file named "features/support/env.rb" with:
14
- """
15
- require 'aruba/cucumber'
16
- """
17
- And a file named "features/use_aruba_with_cucumber.feature" with:
18
- """
19
- Feature: Cucumber
20
- Scenario: First Run
21
- Given a file named "file.txt" with:
22
- \"\"\"
23
- Hello World
24
- \"\"\"
25
- Then the file "file.txt" should contain:
26
- \"\"\"
27
- Hello World
28
- \"\"\"
29
- """
30
- When I run `cucumber`
31
- Then the features should all pass
32
-
33
- Scenario: Use "aruba" with "RSpec"
34
- Given a file named "spec/spec_helper.rb" with:
35
- """
36
- $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
37
-
38
- require 'aruba/rspec'
39
- """
40
- And a file named "spec/use_aruba_with_rspec_spec.rb" with:
41
- """
42
- require 'spec_helper'
43
-
44
- RSpec.describe 'First Run', :type => :aruba do
45
- let(:file) { 'file.txt' }
46
- let(:content) { 'Hello World' }
47
-
48
- before(:each) { write_file file, content }
49
-
50
- it { expect(read(file)).to eq [content] }
51
- end
52
- """
53
- When I run `rspec`
54
- Then the specs should all pass
55
-
56
-
57
- Scenario: Use "aruba" with "Minitest"
58
- Given a file named "test/test_helper.rb" with:
59
- """
60
- $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
61
-
62
- require 'aruba/api'
63
- """
64
- And a file named "test/use_aruba_with_minitest.rb" with:
65
- """
66
- $LOAD_PATH.unshift File.expand_path('../test', __FILE__)
67
-
68
- require 'test_helper'
69
- require 'minitest/autorun'
70
-
71
- class FirstRun < Minitest::Test
72
- include Aruba::Api
73
-
74
- def setup
75
- aruba_setup
76
- end
77
-
78
- def getting_started_with_aruba
79
- file = 'file.txt'
80
- content = 'Hello World'
81
-
82
- write_file file, content
83
- read(file).must_equal [content]
84
- end
85
- end
86
- """
87
- When I run `ruby -Ilib:test test/use_aruba_with_minitest.rb`
88
- Then the tests should all pass
@@ -1,38 +0,0 @@
1
- Feature: Configure announcer activation on command failure
2
-
3
- As a developer
4
- I want to configure which announcers should get activated on command failure
5
- In order to understand what caused a command to fail
6
-
7
- Background:
8
- Given I use the fixture "cli-app"
9
-
10
- Scenario: Default value
11
- Given a file named "features/support/aruba_config.rb" with:
12
- """ruby
13
- Aruba.configure do |config|
14
- puts %(The default value is "#{config.activate_announcer_on_command_failure.inspect}")
15
- end
16
- """
17
- When I successfully run `cucumber`
18
- Then the output should contain:
19
- """ruby
20
- The default value is "[]"
21
- """
22
-
23
- Scenario: Modify value
24
- Given a file named "features/support/aruba_config.rb" with:
25
- """ruby
26
- Aruba.configure do |config|
27
- config.activate_announcer_on_command_failure = [:foo, :bar]
28
- end
29
-
30
- Aruba.configure do |config|
31
- puts %(The value is "#{config.activate_announcer_on_command_failure.inspect}")
32
- end
33
- """
34
- Then I successfully run `cucumber`
35
- Then the output should contain:
36
- """
37
- The value is "[:foo, :bar]"
38
- """