views:

203

answers:

3

In the classic Testing Computer Software, Cem Kaner et al. describe a bugtracking system similar to, but subtly different from, mainstream bugtracking systems.

It has all the usual fields such as reporter, steps to reproduce etc but there are two points which I find very unusual:

  1. There are three 'Severity' levels, and five 'Priority' levels. *Only* the bug's reporter is allowed to set the Severity, and *only* the PM is allowed to set the Priority. The idea, as I understand it, is to give each party equal say on the relative importance of each bug. You can have minor, high-priority bugs (a splash screen displaying offensive language, for instance) and critical, low-priority bugs (in extremely rare circumstances, the program crashes and takes down the whole computer with it.)
  2. Each bug has a 'Treat as deferred' checkbox. This can be set *only* by the reporter or by the lead tester, and only if a bug has been resolved as anything else than 'Fixed'. The idea is to prevent the PM from downplaying bugs as 'Not A Bug' or 'Won't Fix'. When development starts on the next release, all bugs that have been tagged thus are reopened.

I have never seen any bugtracking system fully implement these ideas, especially the second one. Has anyone seen a system that does? Or does anyone know a mainstream, open-sourceish system that can be tweaked to do so?

UPDATE

The shop were I work now has asked me to evaluate JIRA. At first glance JIRA seems customizable enough to implement Kaner et al.'s workflow. It's possible to add almost any kind of field to the bug reports. Has anyone done this before, i.e., add custom fields to JIRA? How painless was your experience? Is it possible to do this in Bugzilla or Trac?

+1  A: 

If you want to experiment with that, it would be easy to implement this kind of workflow in gjallar.

http://www.gjallar.se

Stephan Eggermont
+1  A: 

Mantis could fit your bill

  • item #1 is easily done with workflows
  • item #2 - you tag tickets and create custom filters to find all those with 'Treat as deferred'- not a checkbox, but IMHO even better

I have been also asked to look at Jira, and all I do now is compare how well it matches whatever Mantis can do.

webwesen
Funny that you should say that. I'm in the same situation myself(having to compare Mantis and JIRA).
lindelof
+1  A: 

JIRA is pretty painless, you just click on a couple of links in the admin menu and you have extra custom fields. The permissions and validations are also highly customizable, might take some time to grasp the big picture though - there is just so much of things you can tweak.

Some pointers about how this can be done in jira:

  • JIRA has five priority levels (by default, they are jira-wide and not per-project)
  • Severity can be added as a custom field with any options you want for it
  • Restrict permissions on plain "edit all issue fields"
    • create workflow transitions like 'set priority'/'set severity'
    • set permission on these workflow transitions to allow certain groups only
  • 'Treat as deferred' can also be a workflow transition, like above
  • Reopened bugs (in the default workflow) go into a 'Reopened' state (can be changed)
Evgeny