Class: Rex::Ui::Text::ProgressTracker::UnitTest

Inherits:
Test::Unit::TestCase
  • Object
show all
Defined in:
lib/rex/ui/text/progress_tracker.rb.ut.rb

Instance Method Summary collapse

Instance Method Details

#test_stuffObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/rex/ui/text/progress_tracker.rb.ut.rb', line 11

def test_stuff
  output   = Rex::Ui::Text::Output::Buffer.new
  pt       = Rex::Ui::Text::ProgressTracker.new(output)

  pt.range = 1..10

  assert_equal(1, pt.start)
  assert_equal(10, pt.stop)

  pt.start = 2
  assert_equal(2, pt.start)
  pt.stop = 9
  assert_equal(9, pt.stop)
  assert_equal(2, pt.pos)
  assert_equal('', output.buf)
  assert_equal(3, pt.step)
  assert_equal(4, pt.step("test"))
  assert_equal("[*] 4: test\n", output.buf)
  output.reset
  assert_equal("[-] bad\n", pt.error("bad"))
  output.reset
  assert_equal("[-] fatal: bad\n", pt.abort("bad"))
end