{5} Assigned, Active Tickets by Owner (Full Description) (1 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

akhavr

Ticket Summary Component Milestone Type Created
Description
#1 free ringtone None None startup 08/01/07

Event flow:

  1. System starts up and reads its configuration from configuration files in such order:
    • system-wide configuration file ('/etc/rwt/config.py')
    • user configuration file ('$HOME/.rwt/config.py')
    • project configuration file ( '$cwd/rwt-config.py')
    • command line options
  2. If a random seed is specified, System initializes pseudo random numbers generator from it. Otherwise, it initializes from system time.
  3. System sets starting web page as the current one.
  4. System performs the following procedure for the current web page:
    1. download the page content
    2. if the output contains a text, satisfying any error regexp, notify the user and stop the execution
    3. get all links from the page
    4. limit the links set to those satisfying allowed url regexps
    5. select random link and set it as the current one
    6. log the action as an executable python code
    7. repead the step
  5. System continues the previous cycle until the earlies happen: the time limit would be reached or the number of links tranversed would be exceeded.

Tests:

  1. System-wide configuration file doesn't exist
  2. System-wide configuration file is not a valid python script
  3. User configuration file doesn't exist
  4. User configuration file is not a valid python script
  5. Project configuration file doesn't exist
  6. Project configuration file is not a valid python script
  7. Command line option is broken (define CLI syntax!)
  8. Random seed is not a number
  9. A page is unavailable (returns anything bug 2* or 3* HTTP code)
  10. No error regexps.
  11. Invalid error regexp (e.g. not a regexp at all)
  12. No links on the page (define behaviour! e.g. return to the previous page and select another link)
  13. Time limit is not a number
  14. Tranversed links limit is not a number.
  15. Success test of a simple static local website.

Note: See TracReports for help on using and creating reports.