195 lines
6.4 KiB
Java
195 lines
6.4 KiB
Java
package function;
|
|
|
|
import static org.junit.Assert.*;
|
|
|
|
import org.junit.*;
|
|
|
|
import error.ErrorManager;
|
|
import function.ArgumentValidator.*;
|
|
import sexpression.*;
|
|
|
|
public class ArgumentValidatorTester {
|
|
|
|
private ArgumentValidator validator;
|
|
|
|
private Cons makeArgumentListOfSize(int size) {
|
|
Cons argumentList = Nil.getUniqueInstance();
|
|
|
|
for (int i = 0; i < size; i++)
|
|
argumentList = new Cons(Nil.getUniqueInstance(), argumentList);
|
|
|
|
return argumentList;
|
|
}
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
validator = new ArgumentValidator("TEST");
|
|
}
|
|
|
|
@Test
|
|
public void noConstraints_DoesNotThrowExceptionWithNoArguments() {
|
|
validator.validate(makeArgumentListOfSize(0));
|
|
}
|
|
|
|
@Test
|
|
public void noConstraints_DoesNotThrowExceptionWithOneArgument() {
|
|
validator.validate(makeArgumentListOfSize(1));
|
|
}
|
|
|
|
@Test
|
|
public void noConstraints_DoesNotThrowExceptionWithManyArguments() {
|
|
validator.validate(makeArgumentListOfSize(20));
|
|
}
|
|
|
|
@Test(expected = TooFewArgumentsException.class)
|
|
public void tooFewArgumentsWithMinimumSet_ThrowsException() {
|
|
validator.setMinimumNumberOfArguments(1);
|
|
validator.validate(makeArgumentListOfSize(0));
|
|
}
|
|
|
|
@Test(expected = TooManyArgumentsException.class)
|
|
public void tooManyArgumentsWithMaximumSet_ThrowsException() {
|
|
validator.setMaximumNumberOfArguments(1);
|
|
validator.validate(makeArgumentListOfSize(2));
|
|
}
|
|
|
|
@Test
|
|
public void exactNumberOfArguments_DoesNotThrowException() {
|
|
validator.setExactNumberOfArguments(5);
|
|
validator.validate(makeArgumentListOfSize(5));
|
|
}
|
|
|
|
@Test(expected = TooFewArgumentsException.class)
|
|
public void tooFewArgumentsWithExactSet_ThrowsException() {
|
|
validator.setExactNumberOfArguments(3);
|
|
validator.validate(makeArgumentListOfSize(2));
|
|
}
|
|
|
|
@Test(expected = TooManyArgumentsException.class)
|
|
public void tooManyArgumentsWithExactSet_ThrowsException() {
|
|
validator.setExactNumberOfArguments(3);
|
|
validator.validate(makeArgumentListOfSize(4));
|
|
}
|
|
|
|
@Test
|
|
public void tooManyArgumentsException_HasCorrectSeverity() {
|
|
TooManyArgumentsException e = new TooManyArgumentsException("TEST", Nil.getUniqueInstance());
|
|
|
|
assertTrue(e.getSeverity() < ErrorManager.CRITICAL_LEVEL);
|
|
}
|
|
|
|
@Test
|
|
public void tooManyArgumentsException_HasMessageText() {
|
|
TooManyArgumentsException e = new TooManyArgumentsException("TEST", Nil.getUniqueInstance());
|
|
|
|
assertNotNull(e.getMessage());
|
|
assertTrue(e.getMessage().length() > 0);
|
|
}
|
|
|
|
@Test
|
|
public void tooFewArgumentsException_HasCorrectSeverity() {
|
|
TooFewArgumentsException e = new TooFewArgumentsException("TEST", Nil.getUniqueInstance());
|
|
|
|
assertTrue(e.getSeverity() < ErrorManager.CRITICAL_LEVEL);
|
|
}
|
|
|
|
@Test
|
|
public void tooFewArgumentsException_HasMessageText() {
|
|
TooFewArgumentsException e = new TooFewArgumentsException("TEST", Nil.getUniqueInstance());
|
|
|
|
assertNotNull(e.getMessage());
|
|
assertTrue(e.getMessage().length() > 0);
|
|
}
|
|
|
|
@Test
|
|
public void BadArgumentTypeException_HasCorrectSeverity() {
|
|
BadArgumentTypeException e = new BadArgumentTypeException("TEST", Nil.getUniqueInstance(), SExpression.class);
|
|
|
|
assertTrue(e.getSeverity() < ErrorManager.CRITICAL_LEVEL);
|
|
}
|
|
|
|
@Test
|
|
public void BadArgumentTypeException_HasMessageText() {
|
|
BadArgumentTypeException e = new BadArgumentTypeException("TEST", Nil.getUniqueInstance(), SExpression.class);
|
|
|
|
assertNotNull(e.getMessage());
|
|
assertTrue(e.getMessage().length() > 0);
|
|
}
|
|
|
|
@Test
|
|
public void correctArgumentType_DoesNotThrowException() {
|
|
validator.setEveryArgumentExpectedType(Nil.class);
|
|
validator.validate(makeArgumentListOfSize(1));
|
|
}
|
|
|
|
@Test(expected = BadArgumentTypeException.class)
|
|
public void badArgumentType_ThrowsException() {
|
|
validator.setEveryArgumentExpectedType(LispString.class);
|
|
validator.validate(makeArgumentListOfSize(1));
|
|
}
|
|
|
|
@Test
|
|
public void correctFirstAndRestArgumentTypes_DoesNotThrowException() {
|
|
Cons argumentList = new Cons(Symbol.T, new Cons(Nil.getUniqueInstance(), Nil.getUniqueInstance()));
|
|
|
|
validator.setFirstArgumentExpectedType(Symbol.class);
|
|
validator.setTrailingArgumentExpectedType(Cons.class);
|
|
validator.validate(argumentList);
|
|
}
|
|
|
|
@Test(expected = BadArgumentTypeException.class)
|
|
public void badFirstArgumentType_ThrowsException() {
|
|
Cons argumentList = new Cons(Symbol.T, new Cons(Nil.getUniqueInstance(), Nil.getUniqueInstance()));
|
|
|
|
validator.setFirstArgumentExpectedType(Cons.class);
|
|
validator.setTrailingArgumentExpectedType(Cons.class);
|
|
validator.validate(argumentList);
|
|
}
|
|
|
|
@Test(expected = BadArgumentTypeException.class)
|
|
public void badTrailingArgumentType_ThrowsException() {
|
|
Cons argumentList = new Cons(Symbol.T, new Cons(Nil.getUniqueInstance(), Nil.getUniqueInstance()));
|
|
|
|
validator.setFirstArgumentExpectedType(Symbol.class);
|
|
validator.setTrailingArgumentExpectedType(Symbol.class);
|
|
validator.validate(argumentList);
|
|
}
|
|
|
|
@Test
|
|
public void expectedTypeWithNoDisplayName_DoesNotCauseNPE() {
|
|
Cons argumentList = new Cons(Symbol.T, new Cons(Nil.getUniqueInstance(), Nil.getUniqueInstance()));
|
|
SExpression withoutDisplayName = new SExpression() {};
|
|
|
|
validator.setEveryArgumentExpectedType(withoutDisplayName.getClass());
|
|
|
|
try {
|
|
validator.validate(argumentList);
|
|
} catch (BadArgumentTypeException e) {
|
|
e.getMessage();
|
|
}
|
|
}
|
|
|
|
@Test(expected = DottedArgumentListException.class)
|
|
public void givenDottedArgumentList_ThrowsException() {
|
|
Cons argumentList = new Cons(Symbol.T, Symbol.T);
|
|
|
|
validator.validate(argumentList);
|
|
}
|
|
|
|
@Test(expected = DottedArgumentListException.class)
|
|
public void givenLargeDottedArgumentList_ThrowsException() {
|
|
Cons argumentList = new Cons(Symbol.T, new Cons(Symbol.T, Symbol.T));
|
|
|
|
validator.validate(argumentList);
|
|
}
|
|
|
|
@Test
|
|
public void dottedArgumentListException_HasMessageText() {
|
|
DottedArgumentListException e = new DottedArgumentListException("TEST", Nil.getUniqueInstance());
|
|
|
|
assertNotNull(e.getMessage());
|
|
assertTrue(e.getMessage().length() > 0);
|
|
}
|
|
|
|
}
|