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
|
# frozen_string_literal: true
require 'aruba/generators/script_file'
When 'I run {command}' do |cmd|
cmd = sanitize_text(cmd)
run_command_and_stop(cmd, fail_on_error: false)
end
When 'I successfully run {command}' do |cmd|
cmd = sanitize_text(cmd)
run_command_and_stop(cmd, fail_on_error: true)
end
When 'I successfully run {command} for up to {float} seconds' do |cmd, secs|
cmd = sanitize_text(cmd)
run_command_and_stop(cmd, fail_on_error: true, exit_timeout: secs.to_f)
end
When 'I run the following commands:/script:' do |commands|
full_path = expand_path('bin/myscript')
Aruba.platform.mkdir(expand_path('bin'))
shell = Aruba.platform.default_shell
Aruba::ScriptFile.new(interpreter: shell, content: commands, path: full_path).call
run_command_and_stop(Shellwords.escape(full_path), fail_on_error: false)
end
When 'I run the following commands/script with/in {command}:' do |shell, commands|
full_path = expand_path('bin/myscript')
Aruba.platform.mkdir(expand_path('bin'))
Aruba::ScriptFile.new(interpreter: shell, content: commands, path: full_path).call
run_command_and_stop(Shellwords.escape(full_path), fail_on_error: false)
end
When 'I run {command} interactively' do |cmd|
run_command(sanitize_text(cmd))
end
# Merge interactive and background after refactoring with event queue
When 'I run {command} in background' do |cmd|
run_command(sanitize_text(cmd))
end
When 'I type {string}' do |input|
type(unescape_text(input))
end
When 'I close the stdin stream' do
close_input
end
When 'I pipe in a/the file( named) {string}' do |file|
pipe_in_file(file)
close_input
end
When 'I stop the command started last' do
last_command_started.stop
end
When 'I stop the command {string}' do |command|
aruba.command_monitor.find(command).stop
end
When 'I terminate the command started last' do
last_command_started.terminate
end
When 'I terminate the command {string}' do |command|
aruba.command_monitor.find(command).terminate
end
When(/^I stop the command(?: started last)? if (output|stdout|stderr) contains:$/) \
do |channel, expected|
Timeout.timeout(aruba.config.exit_timeout) do
loop do
output = last_command_started.public_send channel.to_sym, wait_for_io: 0
output = sanitize_text(output)
expected = sanitize_text(expected)
if output.include? expected
last_command_started.terminate
break
end
sleep 0.1
end
end
rescue Timeout::Error
last_command_started.terminate
end
When 'I wait for output/stdout to contain:' do |expected|
Timeout.timeout(aruba.config.exit_timeout) do
loop do
output = last_command_started.stdout wait_for_io: 0
output = sanitize_text(output)
expected = sanitize_text(expected)
break if output.include? expected
sleep 0.1
end
end
end
When 'I wait for output/stdout to contain {string}' do |expected|
Timeout.timeout(aruba.config.exit_timeout) do
loop do
output = last_command_started.stdout wait_for_io: 0
output = sanitize_text(output)
expected = sanitize_text(expected)
break if output.include? expected
sleep 0.1
end
end
end
Then 'the output should be {int} bytes long' do |size|
expect(last_command_started).to have_output_size size.to_i
end
## the stderr should contain "hello"
Then '(the ){channel} should contain {string}' do |channel, expected|
combined_output = send(:"all_#{channel}")
expect(combined_output).to include_output_string expected
end
## the stderr should not contain "hello"
Then '(the ){channel} should not contain {string}' do |channel, expected|
combined_output = send(:"all_#{channel}")
expect(combined_output).not_to include_output_string expected
end
## the stderr should contain exactly "hello"
Then '(the ){channel} should contain exactly {string}' do |channel, expected|
combined_output = send(:"all_#{channel}")
expect(combined_output).to output_string_eq expected
end
## the stderr should not contain exactly "hello"
Then '(the ){channel} should not contain exactly {string}' do |channel, expected|
combined_output = send(:"all_#{channel}")
expect(combined_output).not_to output_string_eq expected
end
## the stderr from "echo -n 'Hello'" should contain "hello"
Then '(the ){channel} from {string} should contain {string}' do |channel, cmd, expected|
matcher = case channel
when 'output'; then :have_output
when 'stderr'; then :have_output_on_stderr
when 'stdout'; then :have_output_on_stdout
end
command = aruba.command_monitor.find(Aruba.platform.detect_ruby(cmd))
output_string_matcher = :an_output_string_including
expect(command).to send(matcher, send(output_string_matcher, expected))
end
## the stderr from "echo -n 'Hello'" should contain exactly "hello"
Then '(the ){channel} from {string} should contain exactly {string}' \
do |channel, cmd, expected|
matcher = case channel
when 'output'; then :have_output
when 'stderr'; then :have_output_on_stderr
when 'stdout'; then :have_output_on_stdout
end
command = aruba.command_monitor.find(Aruba.platform.detect_ruby(cmd))
output_string_matcher = :an_output_string_being_eq
expect(command).to send(matcher, send(output_string_matcher, expected))
end
## the stderr from "echo -n 'Hello'" should not contain "hello"
Then '(the ){channel} from {string} should not contain {string}' do |channel, cmd, expected|
matcher = case channel
when 'output'; then :have_output
when 'stderr'; then :have_output_on_stderr
when 'stdout'; then :have_output_on_stdout
end
command = aruba.command_monitor.find(Aruba.platform.detect_ruby(cmd))
output_string_matcher = :an_output_string_including
expect(command).not_to send(matcher, send(output_string_matcher, expected))
end
## the stderr from "echo -n 'Hello'" should not contain exactly "hello"
Then '(the ){channel} from {string} should not contain exactly {string}' \
do |channel, cmd, expected|
matcher = case channel
when 'output'; then :have_output
when 'stderr'; then :have_output_on_stderr
when 'stdout'; then :have_output_on_stdout
end
command = aruba.command_monitor.find(Aruba.platform.detect_ruby(cmd))
output_string_matcher = :an_output_string_being_eq
expect(command).not_to send(matcher, send(output_string_matcher, expected))
end
## the stderr should contain:
Then '(the ){channel} should contain:' do |channel, expected|
combined_output = send(:"all_#{channel}")
expect(combined_output).to include_output_string(expected)
end
## the stderr should not contain:
Then '(the ){channel} should not contain:' do |channel, expected|
combined_output = send(:"all_#{channel}")
expect(combined_output).not_to include_output_string(expected)
end
## the stderr should contain exactly:
Then '(the ){channel} should contain exactly:' do |channel, expected|
combined_output = send(:"all_#{channel}")
expect(combined_output).to output_string_eq(expected)
end
## the stderr should not contain exactly:
Then '(the ){channel} should not contain exactly:' do |channel, expected|
combined_output = send(:"all_#{channel}")
expect(combined_output).not_to output_string_eq(expected)
end
## the stderr from "echo -n 'Hello'" should not contain:
Then '(the ){channel} from {string} should not contain:' do |channel, cmd, expected|
matcher = case channel
when 'output'; then :have_output
when 'stderr'; then :have_output_on_stderr
when 'stdout'; then :have_output_on_stdout
end
command = aruba.command_monitor.find(Aruba.platform.detect_ruby(cmd))
output_string_matcher = :an_output_string_including
expect(command).not_to send(matcher, send(output_string_matcher, expected))
end
## the stderr from "echo -n 'Hello'" should not contain exactly:
Then '(the ){channel} from {string} should not contain exactly:' do |channel, cmd, expected|
matcher = case channel
when 'output'; then :have_output
when 'stderr'; then :have_output_on_stderr
when 'stdout'; then :have_output_on_stdout
end
command = aruba.command_monitor.find(Aruba.platform.detect_ruby(cmd))
output_string_matcher = :an_output_string_being_eq
expect(command).not_to send(matcher, send(output_string_matcher, expected))
end
## the stderr from "echo -n 'Hello'" should contain:
Then '(the ){channel} from {string} should contain:' do |channel, cmd, expected|
matcher = case channel
when 'output'; then :have_output
when 'stderr'; then :have_output_on_stderr
when 'stdout'; then :have_output_on_stdout
end
command = aruba.command_monitor.find(Aruba.platform.detect_ruby(cmd))
output_string_matcher = :an_output_string_including
expect(command).to send(matcher, send(output_string_matcher, expected))
end
## the stderr from "echo -n 'Hello'" should contain exactly:
Then '(the ){channel} from {string} should contain exactly:' do |channel, cmd, expected|
matcher = case channel
when 'output'; then :have_output
when 'stderr'; then :have_output_on_stderr
when 'stdout'; then :have_output_on_stdout
end
command = aruba.command_monitor.find(Aruba.platform.detect_ruby(cmd))
output_string_matcher = :an_output_string_being_eq
expect(command).to send(matcher, send(output_string_matcher, expected))
end
# "the output should match" allows regex in the partial_output, if
# you don't need regex, use "the output should contain" instead since
# that way, you don't have to escape regex characters that
# appear naturally in the output
Then(%r{^the output should( not)? match /([^/]*)/$}) do |negated, expected|
if negated
expect(all_commands)
.not_to include have_output an_output_string_matching(expected)
else
expect(all_commands)
.to include have_output an_output_string_matching(expected)
end
end
Then(/^the output should( not)? match %r<([^>]*)>$/) do |negated, expected|
if negated
expect(all_commands)
.not_to include have_output an_output_string_matching(expected)
else
expect(all_commands)
.to include have_output an_output_string_matching(expected)
end
end
Then(/^the output should( not)? match:$/) do |negated, expected|
if negated
expect(all_commands)
.not_to include have_output an_output_string_matching(expected)
else
expect(all_commands)
.to include have_output an_output_string_matching(expected)
end
end
Then(/^the exit status should( not)? be (\d+)$/) do |negated, exit_status|
last_command_started.stop if last_command_stopped.empty?
if negated
expect(last_command_stopped).not_to have_exit_status exit_status.to_i
else
expect(last_command_stopped).to have_exit_status exit_status.to_i
end
end
Then(/^it should not (pass|fail) with "(.*?)"$/) do |pass_fail, expected|
last_command_started.stop
if pass_fail == 'pass'
expect(last_command_stopped).to be_successfully_executed
else
expect(last_command_stopped).not_to be_successfully_executed
end
expect(last_command_stopped).not_to have_output an_output_string_including(expected)
end
Then(/^it should (pass|fail) with "(.*?)"$/) do |pass_fail, expected|
last_command_started.stop
if pass_fail == 'pass'
expect(last_command_stopped).to be_successfully_executed
else
expect(last_command_stopped).not_to be_successfully_executed
end
expect(last_command_stopped).to have_output an_output_string_including(expected)
end
Then(/^it should not (pass|fail) with:$/) do |pass_fail, expected|
last_command_started.stop
if pass_fail == 'pass'
expect(last_command_stopped).to be_successfully_executed
else
expect(last_command_stopped).not_to be_successfully_executed
end
expect(last_command_stopped).not_to have_output an_output_string_including(expected)
end
Then(/^it should (pass|fail) with:$/) do |pass_fail, expected|
last_command_started.stop
if pass_fail == 'pass'
expect(last_command_stopped).to be_successfully_executed
else
expect(last_command_stopped).not_to be_successfully_executed
end
expect(last_command_stopped).to have_output an_output_string_including(expected)
end
Then(/^it should not (pass|fail) with exactly:$/) do |pass_fail, expected|
last_command_started.stop
if pass_fail == 'pass'
expect(last_command_stopped).to be_successfully_executed
else
expect(last_command_stopped).not_to be_successfully_executed
end
expect(last_command_stopped).not_to have_output an_output_string_eq(expected)
end
Then(/^it should (pass|fail) with exactly:$/) do |pass_fail, expected|
last_command_started.stop
if pass_fail == 'pass'
expect(last_command_stopped).to be_successfully_executed
else
expect(last_command_stopped).not_to be_successfully_executed
end
expect(last_command_stopped.output).to output_string_eq(expected)
end
Then(/^it should not (pass|fail) (?:with regexp?|matching):$/) do |pass_fail, expected|
last_command_started.stop
if pass_fail == 'pass'
expect(last_command_stopped).to be_successfully_executed
else
expect(last_command_stopped).not_to be_successfully_executed
end
expect(last_command_stopped).not_to have_output an_output_string_matching(expected)
end
Then(/^it should (pass|fail) (?:with regexp?|matching):$/) do |pass_fail, expected|
last_command_started.stop
if pass_fail == 'pass'
expect(last_command_stopped).to be_successfully_executed
else
expect(last_command_stopped).not_to be_successfully_executed
end
expect(last_command_stopped).to have_output an_output_string_matching(expected)
end
Then '(the ){channel} should not contain anything' do |channel|
combined_output = send(:"all_#{channel}")
expect(combined_output).to output_string_eq ''
end
Then(/^(?:the )?(output|stdout|stderr) should( not)? contain all of these lines:$/) \
do |channel, negated, table|
table.raw.flatten.each do |expected|
_matcher = case channel
when 'output'; then :have_output
when 'stderr'; then :have_output_on_stderr
when 'stdout'; then :have_output_on_stdout
end
# TODO: This isn't actually using the above. It's hardcoded to use have_output only
if negated
expect(all_commands)
.not_to include have_output an_output_string_including(expected)
else
expect(all_commands)
.to include have_output an_output_string_including(expected)
end
end
end
Given(/^the (?:default )?aruba io wait timeout is ([\d.]+) seconds?$/) do |seconds|
aruba.config.io_wait_timeout = seconds.to_f
end
Given(/^the (?:default )?aruba exit timeout is ([\d.]+) seconds?$/) do |seconds|
aruba.config.exit_timeout = seconds.to_f
end
Given 'the( default) aruba stop signal is {string}' do |signal|
aruba.config.stop_signal = signal
end
Given(/^I wait ([\d.]+) seconds? for (?:a|the) command to start up$/) do |seconds|
aruba.config.startup_wait_time = seconds.to_f
end
When 'I send the signal {string} to the command {string}' do |signal, command|
cmd = all_commands.find { |c| c.commandline == command }
raise ArgumentError, %(No command "#{command}" found) if cmd.nil?
cmd.send_signal signal
end
When 'I send the signal {string} to the command started last' do |signal|
last_command_started.send_signal signal
end
Given 'I look for executables in {string} within the current directory' do |directory|
prepend_environment_variable 'PATH', expand_path(directory) + File::PATH_SEPARATOR
end
|