Testopia is a test case management extension for Bugzilla, designed to integrate bug reporting with test case run results. Test Case Management Allows users to create, manage, and organize test cases efficiently. It integrates with Bugzilla products, components, versions, and milestones, allowing centralized management and bug attachment to test case run results. Test Plan Management …
Category Archives: Bugzilla
What is Bugzilla?
Bugzilla is an open source web based bug tracking program that, as the name suggests, was created by the Mozilla Foundation. The program was first developed by Netscape in 1998 when it relicensed its Netscape Navigator under an open-source license as the original Mozilla suite. The software allows users to submit tickets and for project members to …
Bugzilla Plugin for Helga Chat Bot
Helga is a Python chat bot. Full documentation can be found at http://helga.readthedocs.org. The Bugzilla plugin allows Helga to respond to Bugzilla ticket numbers in IRC and print information about the tickets. For example: 03:14 <devzing> bz 123 03:14 <helgabot> devzing might be talking about https://app.devzing.com/demo/bugzilla/show_bug.cgi?id=123 [[TestProduct] Ticketing Box City selector] Find out more at https://github.com/ktdreyer/helga-bugzilla
Access Bugzilla from Perl
BZ-Client 2 is now available in a developer release on CPAN and GitHub. Example: my $client = BZ::Client->new( url => $url, user => $user, password => $password, autologin => 0 ); $client->login(); $ids = [ 69, 101 ]; my $bugs = BZ::Client::Bug->get( $client, $ids );
Access Bugzilla from Python
The python-bugzilla package is available on GitHub or PyPi pip install python-bugzilla This package provides two bits: ‘bugzilla’ python module for talking to a Bugzilla instance over XMLRPC /usr/bin/bugzilla command line tool for performing actions from the command line: create or edit bugs, various queries, etc. This was originally written specifically for Red Hat’s Bugzilla …
Bugzilla 5.0 is right around the corner
Bugzilla 5.0 is right around the corner and honestly we’re a little excited. Are you an early adopter? Bugzilla 5.0rc2 is available now if you like to live on the bleeding edge. There aren’t any changes expected between now and when 5.0 is officially released in a couple of weeks. If you are interested in …
Github Integration
This integration will allow you to use GetHub commit comments to update bugs This will cause any commit comments to be added to bugs references by the comment. E.g. the commit comment “This fixes bug 123” will cause “This fixes bug 123” to be added as a comment to bug 123. You must configure both …
XML-RPC Client
From time to time we’ve had people wonder if the XML-RPC API is turned on for their Bugzilla installation. The answer is yes in all cases. Nevertheless it is difficult to verify as Bugzilla will not give you a meaningful response if you go to https://<mybugzilla>/xmlrpc.cgi in your browser. Other clients want to verify some …
All Bugzilla Accounts Upgraded to 4.4.5
Bugzilla 4.4.5 is a security release which addresses the following issue: Adobe does not properly restrict the SWF file format, which allows remote attackers to conduct cross-site request forgery (CSRF) attacks against Bugzilla’s JSONP endpoint, possibly obtaining sensitive bug information, via a crafted OBJECT element with SWF content satisfying the character-set requirements of a callback API. For more details see: https://bugzilla.mozilla.org/show_bug.cgi?id=1036213 …
Bugzilla API for Haskell
Version 0.2.1.1 of this package has been released. A Haskell interface to the Bugzilla native REST API This package is designed to provide an easy-to-use, typesafe interface to querying Bugzilla from Haskell. See: http://hackage.haskell.org/package/bugzilla-0.2.1.1 Or at Github: https://github.com/sethfowler/hsbugzilla