/** * AnalyzerBeans * Copyright (C) 2014 Neopost - Customer Information Management * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program 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 distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.eobjects.analyzer.reference; import junit.framework.TestCase; public class RegexStringPatternTest extends TestCase { public void testEquals() throws Exception { RegexStringPattern rsp1 = new RegexStringPattern("Danish email", "[a-z]+@[a-z]+\\.dk", true); RegexStringPattern rsp2 = new RegexStringPattern("Danish email", "[a-z]+@[a-z]+\\.com", true); assertFalse(rsp1.equals(rsp2)); rsp2 = new RegexStringPattern("Danish email", "[a-z]+@[a-z]+\\.dk", true); assertTrue(rsp1.equals(rsp1)); } public void testMatchesEntireString() throws Exception { RegexStringPattern rsp = new RegexStringPattern("Danish email", "[a-z]+@[a-z]+\\.dk", true); assertEquals("Danish email", rsp.getName()); assertTrue(rsp.matches("kasper@eobjects.dk")); assertFalse(rsp.matches("kasper@eobjects.org")); assertFalse(rsp.matches("kasper[at]eobjects.org")); assertFalse(rsp.matches("@eobjects.dk")); assertFalse(rsp.matches(" kasper@eobjects.dk")); assertFalse(rsp.matches("kasper@eobjects.dk ")); assertFalse(rsp.matches("hello kasper@eobjects.dk world")); assertFalse(rsp.matches(null)); } public void testMatchesNotEntireString() throws Exception { RegexStringPattern rsp = new RegexStringPattern("Danish email", "[a-z]+@[a-z]+\\.dk", false); assertEquals("Danish email", rsp.getName()); assertTrue(rsp.matches("kasper@eobjects.dk")); assertFalse(rsp.matches("kasper@eobjects.org")); assertFalse(rsp.matches("kasper[at]eobjects.org")); assertFalse(rsp.matches("@eobjects.dk")); assertTrue(rsp.matches(" kasper@eobjects.dk")); assertTrue(rsp.matches("kasper@eobjects.dk ")); assertTrue(rsp.matches("hello kasper@eobjects.dk world")); assertFalse(rsp.matches(null)); } }