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
|
# frozen_string_literal: true
require "test_helper"
module Byebug
#
# Tests adding breakpoints to methods
#
class BreakAtMethodsTest < TestCase
def program
strip_line_numbers <<-RUBY
1: module Byebug
2: #
3: # Toy class to test breakpoints
4: #
5: class #{example_class}
6: def self.a(n)
7: 2.times do
8: n += 1
9: end
10: end
11:
12: def b
13: 3
14: end
15: end
16:
17: module #{example_module}
18: def self.c
19: 1
20: end
21: end
22:
23: byebug
24:
25: #{example_class}.new.b
26: #{example_class}.a(1)
27: #{example_module}.c
28: end
RUBY
end
def test_break_with_instance_method_stops_at_correct_place
enter "break #{example_class}#b", "cont"
if RUBY_VERSION >= "2.5.0"
debug_code(program) { assert_location example_path, 13 }
else
debug_code(program) { assert_location example_path, 12 }
end
end
def test_break_with_namespaced_instance_method_stops_at_correct_place
enter "break Byebug::#{example_class}#b", "cont"
if RUBY_VERSION >= "2.5.0"
debug_code(program) { assert_location example_path, 13 }
else
debug_code(program) { assert_location example_path, 12 }
end
end
def test_break_with_class_method_stops_at_correct_place
enter "break #{example_class}.a", "cont"
if RUBY_VERSION >= "2.5.0"
debug_code(program) { assert_location example_path, 7 }
else
debug_code(program) { assert_location example_path, 6 }
end
end
def test_break_with_namespaced_class_method_stops_at_correct_place
enter "break Byebug::#{example_class}.a", "cont"
if RUBY_VERSION >= "2.5.0"
debug_code(program) { assert_location example_path, 7 }
else
debug_code(program) { assert_location example_path, 6 }
end
end
def test_break_with_module_method_stops_at_correct_place
enter "break #{example_module}.c", "cont"
if RUBY_VERSION >= "2.5.0"
debug_code(program) { assert_location(example_path, 19) }
else
debug_code(program) { assert_location(example_path, 18) }
end
end
def test_break_with_namespaced_module_method_stops_at_correct_place
enter "break Byebug::#{example_module}.c", "cont"
if RUBY_VERSION >= "2.5.0"
debug_code(program) { assert_location example_path, 19 }
else
debug_code(program) { assert_location example_path, 18 }
end
end
def test_break_with_a_method_does_not_stop_at_blocks_in_the_method
enter "break #{example_class}.a", "cont", "break 8", "cont"
debug_code(program) { assert_location example_path, 8 }
end
def test_setting_breakpoint_to_an_undefined_class_creates_breakpoint
enter "break B.a"
debug_code(program)
check_output_includes(/Created breakpoint/)
end
def test_setting_breakpoint_to_an_undefined_class_shows_error_message
enter "break ::B.a"
debug_code(program)
check_error_includes "Warning: breakpoint source is not yet defined"
end
def test_setting_breakpoint_to_invalid_location_does_not_create_breakpoint
enter "break foo"
debug_code(program) { assert_empty Byebug.breakpoints }
end
def test_setting_breakpoint_to_invalid_location_shows_an_error
enter "break foo"
debug_code(program)
check_error_includes "Invalid breakpoint location"
end
end
#
# Tests adding breakpoints to empty methods
#
class BreakAtEmptyMethodsTest < TestCase
def program
strip_line_numbers <<-RUBY
1: module Byebug
2: #
3: # Toy class to test breakpoints
4: #
5: class #{example_class}
6: def self.a
7: end
8:
9: def b
10:
11: end
12: def c; end
13: end
14:
15: byebug
16:
17: #{example_class}.new.b
18: #{example_class}.a
19: #{example_class}.new.c
20: end
RUBY
end
def test_break_with_instance_method_stops_at_correct_place
# instance method #b has extra empty line intentionally
# to test lineno 10 is not displayed.
enter "break #{example_class}#b", "cont"
debug_code(program) { assert_location example_path, 9 }
end
def test_break_with_oneline_instance_method_stops_at_correct_place
enter "break #{example_class}#c", "cont"
debug_code(program) { assert_location example_path, 12 }
end
def test_break_with_class_method_stops_at_correct_place
enter "break #{example_class}.a", "cont"
debug_code(program) { assert_location example_path, 6 }
end
end
#
# Tests adding breakpoints to lines
#
class BreakAtLinesTest < TestCase
def program
strip_line_numbers <<-RUBY
1: module Byebug
2: #
3: # Toy class to test breakpoints
4: #
5: class #{example_class}
6: def self.a
7: y = 1
8: z = 2
9: y + z
10: end
11: end
12:
13: byebug
14:
15: #{example_class}.a
16: end
RUBY
end
def test_setting_breakpoint_sets_correct_fields
enter "break 7"
debug_code(program) do
b = Breakpoint.first
exp = [b.pos, b.source, b.expr, b.hit_count, b.hit_value, b.enabled?]
act = [7, example_path, nil, 0, 0, true]
assert_equal act, exp
end
end
def test_setting_breakpoint_using_shortcut_properly_adds_the_breakpoint
enter "break 7"
debug_code(program) { assert_equal 1, Byebug.breakpoints.size }
end
def test_setting_breakpoint_to_nonexistent_line_does_not_create_breakpoint
enter "break 1000"
debug_code(program) { assert_empty Byebug.breakpoints }
end
def test_setting_breakpoint_to_nonexistent_file_does_not_create_breakpoint
enter "break asf:324"
debug_code(program) { assert_empty Byebug.breakpoints }
end
def test_setting_breakpoint_to_nonexistent_file_shows_an_error
enter "break asf:234"
debug_code(program)
check_error_includes "No file named asf"
end
def test_setting_breakpoint_with_bad_relative_path_doesnt_crash
enter "break ../relative/path.rb:8"
debug_code(program)
check_error_includes "No file named ../relative/path.rb"
end
def test_setting_breakpoint_with_relative_path_adds_the_breakpoint
enter "break ./test/commands/break_test.rb:3"
debug_code(program)
check_output_includes(/Created breakpoint/)
end
def test_setting_breakpoint_with_space_in_path_adds_the_breakpoint
with_new_file("hello world.rb", 'puts "Hello World!"') do
enter "break hello world.rb:1"
debug_code(program)
check_output_includes(/Created breakpoint/)
end
end
def test_setting_breakpoint_to_nonexistent_file_with_space_shows_an_error
enter "break /this path/isnt there/abc xyz:8"
debug_code(program)
check_error_includes "No file named /this path/isnt there/abc xyz"
end
def test_setting_breakpoint_to_path_with_colons_does_not_crash
enter "break C:/bb.rb:1"
debug_code(program)
check_error_includes "No file named C:/bb.rb"
end
def test_setting_breakpoint_to_invalid_line_does_not_create_breakpoint
enter "break 14"
debug_code(program) { assert_empty Byebug.breakpoints }
end
def test_stops_at_correct_place_when_breakpoint_set_in_a_regular_line
enter "break 7", "cont"
debug_code(program) { assert_location example_path, 7 }
end
def test_stops_at_correct_place_when_breakpoint_set_at_method_return
enter "break 10", "cont"
debug_code(program) { assert_location example_path, 10 }
end
def test_shows_return_value_information_when_breakpoint_set_at_method_return
enter "break 10", "cont"
debug_code(program)
check_output_includes "Return value is: 3"
end
def test_breaking_w_byebug_keyword_stops_at_the_next_line
debug_code(program) { assert_equal 15, frame.line }
end
def test_conditional_breakpoint_stops_if_condition_is_true
enter "break 8 if y == 1", "break 9", "cont"
debug_code(program) { assert_equal 8, frame.line }
end
def test_conditional_breakpoint_is_ignored_if_condition_is_false
enter "break 8 if y == 2", "break 9", "cont"
debug_code(program) { assert_equal 9, frame.line }
end
def test_setting_conditional_breakpoint_using_wrong_expression_ignores_it
enter "break 8 if y -=) 1", "break 9", "cont"
debug_code(program) { assert_equal 9, frame.line }
end
def test_setting_conditional_breakpoint_using_wrong_expression_shows_error
enter "break 11 if y -=) 1"
debug_code(program)
check_error_includes 'Incorrect expression "y -=) 1"; breakpoint disabled'
end
def test_shows_info_about_setting_breakpoints_when_using_just_break
enter "break", "cont"
debug_code(program)
check_output_includes(/b\[reak\] \[<file>:\]<line> \[if <expr>\]/)
end
def test_setting_breakpoint_uses_new_source
enter -> { cmd_after_replace(example_path, 7, "", "break 7") }
debug_code(program) { assert_empty Byebug.breakpoints }
end
def test_setting_breakpoint_prints_confirmation_message
enter "break 7"
debug_code(program) { @id = Breakpoint.first.id }
check_output_includes(/Created breakpoint #{@id}/)
end
def test_setting_breakpoint_to_nonexistent_line_shows_an_error
enter "break 1000"
debug_code(program)
check_error_includes "There are only 16 lines in file #{example_path}"
end
def test_setting_breakpoint_to_invalid_line_shows_an_error_and_alternatives
enter "break 14"
debug_code(program)
check_error_includes \
"Line 14 is not a valid breakpoint in file #{example_path}.",
"Valid break points are:",
"[B] 10: end",
"[B] 11: end",
"12:",
"[B] 13: byebug",
"14:",
"[B] 15: #{example_class}.a",
"[B] 16: end"
end
end
#
# Tests using the byebug keyword at the end of a method
#
class BreakWithByebugKeywordAtMethodEndTest < TestCase
def program
strip_line_numbers <<-RUBY
1: module Byebug
2: #
3: # Toy class to test byebug at the end of a method
4: #
5: class #{example_class}
6: def a
7: byebug
8: end
9:
10: new.a
11: end
12: end
RUBY
end
def test_stops_right_before_method_returns
debug_code(program) { assert_equal 8, frame.line }
end
def test_shows_nil_return_value
debug_code(program)
check_output_includes "Return value is: nil"
end
end
#
# Tests using the byebug keyword at the end of a block
#
class BreakWithByebugKeywordAtBlockEndTest < TestCase
def program
strip_line_numbers <<-RUBY
1: module Byebug
2: #
3: # Toy class to test byebug at the end of a block
4: #
5: class #{example_class}
6: def method_that_yields(b)
7: yield(b)
8: 0
9: end
10:
11: new.method_that_yields(0) do |n|
12: sleep n
13: byebug
14: end
15: end
16: end
RUBY
end
def test_stops_right_before_block_returns
debug_code(program) { assert_equal 14, frame.line }
end
def test_shows_nil_return_value
debug_code(program)
check_output_includes "Return value is: nil"
end
end
#
# Tests using the byebug keyword at the end of a class definition
#
class BreakWithByebugKeywordAtClassDefinitionEndTest < TestCase
def program
strip_line_numbers <<-RUBY
1: module Byebug
2: #
3: # Toy class to test byebug at the end of a class
4: #
5: class #{example_class}
6: def a
7: 0
8: end
9:
10: byebug
11: end
12: end
RUBY
end
def test_stops_right_before_class_definition_ends
debug_code(program) { assert_equal 11, frame.line }
end
def test_does_not_show_return_value_information
debug_code(program)
check_output_doesnt_include "Return value is: nil"
end
end
end
|