Official Letsdiskuss Logo
Official Letsdiskuss Logo

Language



Blog
Earn With Us

singha kash

Blogger | Posted on |


Are software testers less skilful than software developers?

0
0



The majority of software development is actually rather straightforward and boring: decompose the task into steps, create things that should do them (often grouping closely related tasks together into one class or system or module or whatever), plug ’em together, and apply any known techniques to take care of any unusual conditions, such as needing extreme scalability, fault tolerance, low latency, etc. But then there are the people who go above and beyond, to invent those “known techniques” that later people apply, or at least tackle unusually difficult problems.

Testing requires more out-of-the-box thinking. A form takes an integer from 1 to 100? Just for starters, let’s see what happens if we give it zero. (We hope it doesn’t crash the ship’s vital systems!) Or 101. Or leave it blank. Or put in 3.5.

A very basic test (such as applied to a very simple new feature in an existing well-tested app), or a beginning tester, might leave it there, only testing common unintentional user errors. But a good tester will take it up another notch. There are several ways to do that.

One is to test against at least some of the unusual conditions that can be brought about either by the user or the network or machinery itself, whether deliberately or not. What happens if we get to this point in the form, and close the application? Forcibly kill it from the OS? Open the same web-app in a new browser tab? Open another instance of the same desktop app? Log out? Power down? Leave it all up, but disconnect from the network? Let the phone battery die?

Another approach, harder but much more fun, would be to test against deliberately malicious inputs. Now we’re entering not ordinary testing but security testing territory. Twenty years ago that might have been optional, but not any more, at least for anything on the Internet (not just the Web). Going back to the integer field on a form: try a number a hundred digits long — is that too much for the integer type the system will be trying to stuff it into, or will it parrot it back accurately? Or “fred” — is it guarding against non-numeric inputs, or trying to convert them? Or “5’); DROP TABLE Users; —” — is it guarding against SQL injection? Or “<script type=”javascript”>alert(‘gotcha!’)</script>” — is it guarding against script injection? Or a non-numeric string a million characters long — can we overflow a buffer, and maybe stick code somewhere that gets executed, or alter some internal variables? And then there’s what it might do with various inputs in combination with other input values — what if we re describing an input, and say the minimum is 37 and the maximum is 12? This is just scratching the surface. To do security testing well, really requires being a fairly expert developer — not necessarily the aspects of writing maintainable code, but a keen understanding of exactly what is going on inside the machine, and how something can be forced to go wrong.