Best practice for incorrect parameters on a remove method - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T16:36:10Zhttp://stackoverflow.com/feeds/question/731012http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/731012/best-practice-for-incorrect-parameters-on-a-remove-method3Best practice for incorrect parameters on a remove methodTom Martin2009-04-08T17:33:39Z2009-04-08T19:15:28Z
<p>So I have an abstract data type called RegionModel with a series of values (Region), each mapped to an index. It's possible to remove a number of regions by calling:</p>
<pre><code>regionModel.removeRegions(index, numberOfRegionsToRemove);
</code></pre>
<p>My question is what's the best way to handle a call when the index is valid :</p>
<p><em>(between 0 (inclusive) and the number of Regions in the model (exclusive))</em> </p>
<p>but the numberOfRegionsToRemove is invalid:</p>
<p><em>(index + regionsToRemove > the number of regions in the model)</em></p>
<p>Is it best to throw an exception like IllegalArgumentException or just to remove as many Regions as I can (all the regions from index to the end of the model)?</p>
<p><em>Sub-question:</em> if I throw an exception what's the recommended way to unit test that the call threw the exception and left the model untouched (I'm using Java and JUnit here but I guess this isn't a Java specific question).</p>
http://stackoverflow.com/questions/731012/best-practice-for-incorrect-parameters-on-a-remove-method/731022#7310221Answer by Mitchel Sellers for Best practice for incorrect parameters on a remove methodMitchel Sellers2009-04-08T17:35:44Z2009-04-08T17:35:44Z<p>I would say that an argument such as illegalArgumentException would be the best way to go here. If the calling code was not passing a workable value, you wouldn't necessarily want to trust that they really wanted to remove what it had them do.</p>
http://stackoverflow.com/questions/731012/best-practice-for-incorrect-parameters-on-a-remove-method/731029#7310292Answer by casperOne for Best practice for incorrect parameters on a remove methodcasperOne2009-04-08T17:40:10Z2009-04-08T17:40:10Z<p>Typically, for structures like this, you have a remove method which takes an index and if that index is outside the bounds of the items in the structure, an exception is thrown.</p>
<p>That being said, you should be consistent with whatever that remove method that takes a single index does. If it simply ignores incorrect indexes, then ignore it if your range exceeds (or even starts before) the indexes of the items in your structure.</p>
http://stackoverflow.com/questions/731012/best-practice-for-incorrect-parameters-on-a-remove-method/731069#7310691Answer by bedwyr for Best practice for incorrect parameters on a remove methodbedwyr2009-04-08T17:52:07Z2009-04-08T19:15:28Z<p>I agree with Mitchel and casperOne -- an Exception makes the most sense.</p>
<p>As far as unit testing is concerned, JUnit4 allows you to exceptions directly:
<a href="http://www.ibm.com/developerworks/java/library/j-junit4.html" rel="nofollow">http://www.ibm.com/developerworks/java/library/j-junit4.html</a></p>
<p>You would need only to pass parameters which are guaranteed to cause the exception, and add the correct annotation (<code>@Test(expected=IllegalArgumentException.class)</code>) to the JUnit test method.</p>
<p><strong>Edit</strong>: As Tom Martin mentioned, JUnit 4 is a decent-sized step away from JUnit 3. It is, however, possible to also test exceptions using JUnit 3. It's just not as easy.</p>
<p>One of the ways I've tested exceptions is by using a <code>try/catch</code> block within the class itself, and embedding <code>Assert</code> statements within it.</p>
<p>Here's a simple example -- it's not complete (e.g. regionModel is assumed to be instantiated), but it should get the idea across:</p>
<pre><code>public void testRemoveRegionsInvalidInputs() {
int originalSize = regionModel.length();
int index = 0;
int numberOfRegionsToRemove = 1,000; // > than regionModel's current size
try {
regionModel.removeRegions(index, numberOfRegionsToRemove);
// Since the exception will immediately go into the 'catch' block this code will only run if the IllegalArgumentException wasn't thrown
Assert.assertTrue("Exception not Thrown!", false);
}
catch (IllegalArgumentException e) {
Assert.assertTrue("Exception thrown, but regionModel was modified", regionModel.length() == originalSize);
}
catch (Exception e) {
Assert.assertTrue("Incorrect exception thrown", false);
}
}
</code></pre>