Unit test for randomized data - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T08:26:24Zhttp://stackoverflow.com/feeds/question/88007http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/88007/unit-test-for-randomized-data2Unit test for randomized dataDana2008-09-17T21:46:18Z2008-10-01T14:26:52Z
<p>I ran across this situation this afternoon, so I thought I'd ask what you guys do.</p>
<p>We have a randomized password generator for user password resets and while fixing a problem with it, I decided to move the routine into my (slowly growing) test harness.</p>
<p>I want to test that passwords generated conform to the rules we've set out, but of course the results of the function will be randomized (or, well, pseudo-randomized).</p>
<p>What would you guys do in the unit test? Generate a bunch of passwords, check they all pass and consider that good enough?</p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88085#880850Answer by Sklivvz for Unit test for randomized dataSklivvz2008-09-17T21:53:20Z2008-09-17T21:53:20Z<p>Well, considering they are random, there is no really way to make sure, but testing for 100 000 password should clear most doubts :)</p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88110#881105Answer by Parappa for Unit test for randomized dataParappa2008-09-17T21:56:08Z2008-09-17T21:56:08Z<p>A unit test should do the same thing every time that it runs, otherwise you may run into a situation where the unit test only fails occasionally, and that could be a real pain to debug.</p>
<p>Try seeding your pseudo-randomizer with the same seed every time (in the test, that is--not in production code). That way your test will generate the same set of inputs every time.</p>
<p>If you can't control the seed and there is no way to prevent the function you are testing from being randomized, then I guess you are stuck with an unpredictable unit test. :(</p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88111#88111-1Answer by Aeon for Unit test for randomized dataAeon2008-09-17T21:56:20Z2008-09-17T22:09:28Z<p>You can also look into mutation testing (<a href="http://jester.sourceforge.net/" rel="nofollow">Jester</a> for Java, <a href="http://glu.ttono.us/articles/2006/12/19/tormenting-your-tests-with-heckle" rel="nofollow">Heckle</a> for Ruby)</p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88123#881230Answer by Bradley Harris for Unit test for randomized dataBradley Harris2008-09-17T21:57:10Z2008-09-17T21:57:10Z<p>You could seed your random number generator with a constant value in order to get non-random results and test those results. </p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88128#881284Answer by Apocalisp for Unit test for randomized dataApocalisp2008-09-17T21:57:49Z2008-09-17T21:57:49Z<p>The function is a hypothesis that for all inputs, the output conforms to the specifications. The unit test is an attempt to falsify that hypothesis. So yes, the best you can do in this case is to generate a large amount of outputs. If they all pass your specification, then you can be reasonably sure that your function works as specified.</p>
<p>Consider putting the random number generator outside this function and passing a random number to it, making the function deterministic, instead of having it access the random number generator directly. This way, you can generate a large number of random inputs in your test harness, pass them all to your function, and test the outputs. If one fails, record what that value is so that you have a documented test case.</p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88138#881382Answer by shelfoo for Unit test for randomized datashelfoo2008-09-17T21:58:42Z2008-09-17T21:58:42Z<p>In addition to testing a few to make sure that they pass, I'd write a test to make sure that passwords that <em>break</em> the rules fail.</p>
<p>Is there anything in the codebase that's checking the passwords generated to make sure they're random enough? If not, I may look at creating the logic to check the generated passwords, testing that, and then you can state that the random password generator is working (as "bad" ones won't get out). </p>
<p>Once you've got that logic you can probably write an integration type test that would generate boatloads of passwords and pass it through the logic, at which point you'd get an idea of how "good" your random password generate is.</p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88146#881460Answer by Glenn for Unit test for randomized dataGlenn2008-09-17T21:59:44Z2008-09-17T21:59:44Z<p>I'm assuming that the user-entered passwords conform to the same restrictions as the random generated ones. So you probably want to have a set of static passwords for checking known conditions, and then you'll have a loop that does the dynamic password checks. The size of the loop isn't too important, but it should be large enough that you get that warm fuzzy feeling from your generator, but not so large that your tests take forever to run. If anything crops up over time, you can add those cases to your static list. </p>
<p>In the long run though, a weak password isn't going to break your program, and password security falls in the hands of the user. So your priority would be to make sure that the dynamic generation and strength-check doesn't break the system. </p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88177#881770Answer by Greg Beech for Unit test for randomized dataGreg Beech2008-09-17T22:03:21Z2008-09-17T22:03:21Z<p>Without knowing what your rules are it's hard to say for sure, but assuming they are something like "the password must be at least 8 characters with at least one upper case letter, one lower case letter, one number and one special character" then it's impossible even with brute force to check sufficient quantities of generated passwords to prove the algorithm is correct (as that would require somewhere over 8^70 = 1.63x10^63 checks depending on how many special characters you designate for use, which would take a very, very long time to complete).</p>
<p>Ultimately all you can do is test as many passwords as is feasible, and if any break the rules then you know the algorithm is incorrect. Probably the best thing to do is leave it running overnight, and if all is well in the morning you're likely to be OK.</p>
<p>If you want to be doubly sure in production, then implement an outer function that calls the password generation function in a loop and checks it against the rules. If it fails then log an error indicating this (so you know you need to fix it) and generate another password. Continue until you get one that meets the rules.</p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88251#882510Answer by borjab for Unit test for randomized databorjab2008-09-17T22:15:24Z2008-09-17T22:15:24Z<p>In my humble opinion you do not want a test that sometimes pass and sometimes fails. Some people may even consider that this kind of test is not a unit test. But the main idea is be sure that the function is OK when you see the green bar.</p>
<p>With this principle in mind you may try to execute it a reasonable number of times so that the chance of having a false correct is almost cero. However, une single failure of the test will force you to make more extensive tests apart from debbuging the failure.</p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/157878#1578780Answer by Rinat Abdullin for Unit test for randomized dataRinat Abdullin2008-10-01T14:26:52Z2008-10-01T14:26:52Z<p>Either use fixed random seed or make it reproducible (i.e.: derive from the current day)</p>