/* * JBoss, Home of Professional Open Source. * Copyright 2009, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.ejb3.timer.schedule; import org.jboss.as.ejb3.timerservice.schedule.value.RangeValue; import org.junit.Assert; import org.junit.Test; /** * RangeValueTestCase * * @author Jaikiran Pai * @version $Revision: $ */ public class RangeValueTestCase { @Test public void testInvalidRange() { String[] invalidRangeValues = {null, "", " ", "0.1", "1d", "1.0", "?", "%", "$", "!", "&", "-", "/", ",", ".", "1-", "1-2-3", "1+2", "**", "*-", "*,1", "1,*", "5/*", "1, 2/2", "---", "-", "--", " -2 -3 -4", "-0", "1--"}; for (String invalidRange : invalidRangeValues) { boolean accepts = RangeValue.accepts(invalidRange); Assert.assertFalse("Range value accepted an invalid value: " + invalidRange, accepts); try { RangeValue invalidRangeValue = new RangeValue(invalidRange); Assert.fail("Range value did *not* throw IllegalArgumentException for an invalid range: " + invalidRange); } catch (IllegalArgumentException iae) { // expected } } } @Test public void testValidRange() { String[] validRanges = {"1-8", "-7--1", "7--1", "1st Fri-1st Mon"}; for (String validRange : validRanges) { boolean accepts = RangeValue.accepts(validRange); Assert.assertTrue("Valid range value wasn't accepted: " + validRange, accepts); RangeValue validRangeValue = new RangeValue(validRange); } } }