Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Today Random testing again Some background (Hamlet) Why not always use random testing? More YAFFS & project Grill Alex! Maybe I’ve forgotten something.

Similar presentations


Presentation on theme: "1 Today Random testing again Some background (Hamlet) Why not always use random testing? More YAFFS & project Grill Alex! Maybe I’ve forgotten something."— Presentation transcript:

1 1 Today Random testing again Some background (Hamlet) Why not always use random testing? More YAFFS & project Grill Alex! Maybe I’ve forgotten something important CUTE: “concolic” testing

2 2 Random Testing “Random testing is, of course, the most used and least useful method” Original slang meaning of “random” to mean “wrong” or “disorganized and useless” We mean random in the mathematical sense Take a stream of pseudo-random numbers and map them into test operations/cases

3 3 Random Testing Hamlet talks about one advantage of random testing (that often doesn’t really appear): With random testing and an operational profile giving usage patterns for the program, with probabilities random testing can establish statistically meaningful estimates of program reliability “In program testing, with systematic methods we know what we are doing, but not what it means; only by giving up all systematization can the significance of testing be known.” - Hamlet, “Random Testing”

4 4 Operational Profiles & Reliability Can make statements like: “It’s 99% certain that P will fail no more than 1 in 1,000,000 times.” “It’s 95% certain that P has a mean-time-to- failure greater than 100 hours of operation.” Real statistics! Sadly, usable operational profiles with probabilities attached are very rare And the numbers mean nothing if the profile is something you make up

5 5 Random Testing Hamlet also notes that random testing is a good “baseline” for other methods to compare to Keeps us honest If systematic is no better, then it may not be a very good approach What’s good about 80% (no loop) path coverage? “If, on the other hand, a comparison with random testing as the standard were available, it might help us to write better standards, or to improve the significance of systematic methods.” - Hamlet, “Random Testing”

6 6 Hamlet’s Claims Two cases “when only random testing will do” (Hamlet, Workshop on Random Testing 06) Well, maybe not only random testing Cases where systematic testing is meaningless (no plan has a rational basis) Cases where systematic testing is too difficult to carry out Hamlet emphasizes the dangers of adding systematic choice without justification: confusing what software should do with what it does do

7 7 Hamlet’s Claims Danger of ignoring a test case because “Oh come on, it couldn’t possibly fail to handle that correctly” or “Nobody would ever do that” Compare to game theory: cases where if we really know something about opponent’s play we can take advantage But, lacking that, random strategy may be “inefficient” but is the only strategy that cannot be “gamed” if opponent knows what we’re up to This is not to imply that programs we test are adversaries, “out to get us” – but it’s sometimes useful to act as if they are

8 8 Sidebar: Proving an Assumption

9 9 Problems with Random Testing Why not use random testing for everything? Oracle problem: figuring out if a random test is successful is often much harder than with a systematic test Sometimes we can’t do differential testing

10 10 Problems with Random Testing Why not use random testing for everything? Generation problem: how do we make a random input? What, exactly, is a random C program? Is a random C program going to fit any sane (but unknown) operational profile? Are these the bugs we care about most? For some programs, producing well- formed input that makes for interesting tests is fundamentally hard

11 11 Problems with Random Testing Why not use random testing for everything? Even with feedback, produces lots of redundant or uninteresting operations Not good at testing boundary conditions where the boundaries are drawn from a large range If the program only breaks when x = 2^31 don’t expect to find that randomly

12 12 Problems with Random Testing Why not use random testing for everything? Related problem: not good when an error depends on an unlikely relationship between inputs Program only fails when x + y = MAXINT? Good luck finding that if you don’t bake it into the “random” tester explicitly...

13 13 Now, Let’s Talk About YAFFS Project due date: May 13 What to submit: Test report Document, preferably a pdf Tester More on how to submit in a second Two buggy versions of YAFFS Submit as.c (or.h I guess) file, where the name is original_yaffs_name.login.bug#.c And two test cases (more on this too)

14 14 Submitting the Tester Give me a tarball I want to be able to go to a YAFFS install cd direct tar xvf login.tester.tar make clean; make./directtest2k And see it run Use whatever language you see fit, so long as that holds true Admittedly, if I can’t make head or tail of your tester (say it’s in FORTRAN or unlambda), grading it fairly will be harder

15 15 Tester Output If YAFFS passes the test, your tester should terminate with error code 0 and print (on standard output) the string: TEST SUCCESSFULLY COMPLETED If YAFFS fails terminate with code 2 and print (again, on stdout): TEST FAILED See my (very) stupid tester on the website

16 16 Tester Output I’ll count it as a case where you find a bug in YAFFS if the program hangs: Hasn’t terminated by the time limit of 60 minutes Is not producing any new output

17 17 Tester Output Sanity check I’m going to make sure none of your testers say “TEST FAILED” or hang when run with the original YAFFS So let me know if you have found a YAFFS bug

18 18 Tester Output If you want to use a script to have your “directtest2k” run another tool on YAFFS, and then parse the output to produce that result, that’s ok with me It’s worth some points, but not strictly required, that your tool also be able to produce a test case when a test fails – something more specific than “run the tester”

19 19 Tester Output Bonus if you include delta-debugging tools for your test case format C programs (or python scripts) are very nice test cases, and easily delta- debuggable Document your test case format and why you chose it in the test report

20 20 Test Cases for Your Own Bugs Again, any format you like, so long as I can replay and see exactly what to do with YAFFS to produce the bug One-minimal test cases are worth more credit Oh, I forgot to mention – your bugs should be ones that my stupid tester can’t find Shouldn’t be hard, I give some examples for you to look at

21 21 Test Case Output Use the same output TEST SUCCESSFULLY COMPLETED vs. TEST FAILED

22 22 About the Time Limit I know our hardware will vary If you want, send me early versions of your tester and I’ll try to run them on my machine and let you know If it works How long it takes to run

23 23 What to Test You must test these functions: yaffs_StartUp yaffs_mount yaffs_unmount yaffs_open yaffs_write yaffs_read yaffs_close yaffs_mkdir yaffs_rmdir yaffs_unlink

24 24 What to Test Can use other functions to figure out what’s going on with YAFFS Might make it easier to find some bugs But only use these basics in the test cases you submit for your bugs – make sure the bug can be exposed using only the core operations! For open, need to test these options: O_TRUNC, O_APPEND, _O_RDONLY, O_WRONLY, O_EXCL, O_CREAT, O_RDWR

25 25 How to Test Perform all tests on /ram2k Use my replacement yaffscfg2k.c On the website

26 26 Tools for Testing Might want to look at CUTE and SPLAT (links on the web page) Warning: academic software, don’t expect it to work (I’m having difficulties right now) CIL is a very useful tool if your testing ambitions involve instrumenting the code somehow (http://hal.cs.berkeley.edu/cil) E.g., want to compute path coverage? Instrument every branch with a bit vector insertion

27 27 Tools for Testing Lots of other tools out there for testing Look around – you might find something useful that will save you a lot of work Warning, again: the academic software is often not-quite-ready-for-prime-time

28 28 Questions?

29 29 Some advice Take a look at my tester Take a look at one of the bugs Figure out why my tester can’t find it


Download ppt "1 Today Random testing again Some background (Hamlet) Why not always use random testing? More YAFFS & project Grill Alex! Maybe I’ve forgotten something."

Similar presentations


Ads by Google