![]() |
|
We don't bite newbies here... much | |
PerlMonks |
How to test Interactive/Graphical Modulesby Molt (Chaplain) |
on Aug 06, 2003 at 13:35 UTC ( #281395=perlmeditation: print w/replies, xml ) | Need Help?? |
I've recently begun work on a purely graphical module, actually an extension to the SDL::OpenGL module to support nVidia's Cg shader language. As this is the first big XS project I've done for a good while I'm trying to be even more stringent than I normally am when it comes to testing it. The issue comes from the fact that the only tests I can run unattended are simple 'automatic' things, whereas I'd quite like to test that the image on screen looks right ('Is the teapot green?', 'Can you see the chessboard reflected in the car's body?') If this wasn't bad enough a lot of the functionality relies on having a valid OpenGL rendering window before it can even think of working, this means that installing without first loading the GUI is going to be strange. In essence my module cannot properly initialise itself without this kind of environment being set up. Admittedly the module itself is useless without this so I'm not quite so bothered about that, it only hurts when installing it remotely. I'm wondering what people's opinions are with regard to the testing of modules such as this (And GUI widget modules, and keyboard input modules etc). Is there a varient to the standard testing methodology for such modules? Should I build a complete test system and demand the user sit there whilst I show them some nice pictures to test functionality? Maybe a build system that can tell when it's running non-interactive and so skips the more advanced tests, but still runs it's non-interactive graphical tests so still needs the GUI running? Is it really acceptable to allow someone to finalise the install based on a headless connection's limited set of tests? Obviously I will have a full test suite during development anyway to detect errors slipping into the code as it's torturously refactored and extended. What level of testing is absolutely required to be run for a module to be installed? How much inconvenience during installation can be traded off for this safety?
Back to
Meditations
|
|