blob: 1fa2b8bbb289745f28f5a7436acba53f06697816 [file] [log] [blame]
/*
* Copyright 2018 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.mifos.core.lang.validation;
import io.mifos.core.lang.validation.constraints.ValidIdentifier;
import org.junit.Assert;
import org.junit.Test;
import static io.mifos.core.lang.validation.TestHelper.isValid;
/**
* @author Myrle Krantz
*/
public class ValidIdentifierTest {
@Test
public void validIdentifierWithTilda()
{
final AnnotatedClass annotatedInstance = new AnnotatedClass("xy~mn");
Assert.assertFalse(isValid(annotatedInstance));
}
@Test
public void validIdentifierWithUnderscore()
{
final AnnotatedClass annotatedInstance = new AnnotatedClass("xy_mn");
Assert.assertTrue(isValid(annotatedInstance));
}
@Test
public void validIdentifierWithDot()
{
final AnnotatedClass annotatedInstance = new AnnotatedClass("xy.mn");
Assert.assertTrue(isValid(annotatedInstance));
}
@Test
public void validIdentifierWithDash()
{
final AnnotatedClass annotatedInstance = new AnnotatedClass("xy-mn");
Assert.assertTrue(isValid(annotatedInstance));
}
@Test
public void validIdentifier()
{
final AnnotatedClass annotatedInstance = new AnnotatedClass("xxxx");
Assert.assertTrue(isValid(annotatedInstance));
}
@Test
public void nullIdentifier()
{
final AnnotatedClass annotatedInstance = new AnnotatedClass(null);
Assert.assertFalse(isValid(annotatedInstance));
}
@Test
public void emptyStringIdentifier()
{
final AnnotatedClass annotatedInstance = new AnnotatedClass("");
Assert.assertFalse(isValid(annotatedInstance));
}
@Test
public void tooShortStringIdentifier()
{
final AnnotatedClass annotatedInstance = new AnnotatedClass("x");
Assert.assertFalse(isValid(annotatedInstance));
}
@Test
public void tooLongStringIdentifier()
{
final AnnotatedClass annotatedInstance = new AnnotatedClass("012345");
Assert.assertFalse(isValid(annotatedInstance));
}
@Test
public void notEncodableStringIdentifier()
{
final AnnotatedClass annotatedInstance = new AnnotatedClass("x/y/z");
Assert.assertFalse(isValid(annotatedInstance));
}
private static class AnnotatedClass {
@ValidIdentifier(maxLength = 5)
String applicationName;
AnnotatedClass(final String applicationName) {
this.applicationName = applicationName;
}
}
}