Coverage Report - com.jeantessier.text.TestMaximumCapacityPatternCache
 
Classes in this File Line Coverage Branch Coverage Complexity
TestMaximumCapacityPatternCache
83%
41/49
N/A
1.364
 
 1  
 /*
 2  
  *  Copyright (c) 2001-2009, Jean Tessier
 3  
  *  All rights reserved.
 4  
  *  
 5  
  *  Redistribution and use in source and binary forms, with or without
 6  
  *  modification, are permitted provided that the following conditions
 7  
  *  are met:
 8  
  *  
 9  
  *      * Redistributions of source code must retain the above copyright
 10  
  *        notice, this list of conditions and the following disclaimer.
 11  
  *  
 12  
  *      * Redistributions in binary form must reproduce the above copyright
 13  
  *        notice, this list of conditions and the following disclaimer in the
 14  
  *        documentation and/or other materials provided with the distribution.
 15  
  *  
 16  
  *      * Neither the name of Jean Tessier nor the names of his contributors
 17  
  *        may be used to endorse or promote products derived from this software
 18  
  *        without specific prior written permission.
 19  
  *  
 20  
  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 21  
  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 22  
  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 23  
  *  A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR
 24  
  *  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 25  
  *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 26  
  *  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 27  
  *  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 28  
  *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 29  
  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 30  
  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 31  
  */
 32  
 
 33  
 package com.jeantessier.text;
 34  
 
 35  
 import junit.framework.*;
 36  
 
 37  
 import org.apache.oro.text.*;
 38  
 import org.apache.oro.text.regex.*;
 39  
 
 40  10
 public class TestMaximumCapacityPatternCache extends TestCase {
 41  
     private PatternCache cache;
 42  
 
 43  
     protected void setUp() throws Exception {
 44  10
         cache = new MaximumCapacityPatternCache();
 45  10
     }
 46  
 
 47  
     public void testCapacity() {
 48  1
         assertEquals(20, cache.capacity());
 49  1
     }
 50  
 
 51  
     public void testSize() throws MalformedPatternException {
 52  1
         assertEquals("empty", 0, cache.size());
 53  
 
 54  1
         cache.addPattern("/foo/");
 55  
 
 56  1
         assertEquals("add one", 1, cache.size());
 57  
 
 58  1
         cache.addPattern("/foo/");
 59  
 
 60  1
         assertEquals("add same again", 1, cache.size());
 61  
 
 62  1
         cache.addPattern("/bar/");
 63  
 
 64  1
         assertEquals("add another", 2, cache.size());
 65  1
     }
 66  
 
 67  
     public void testAddPattern() throws MalformedPatternException {
 68  1
         Object pattern1 = cache.addPattern("/foo/");
 69  1
         assertNotNull("add returns null", pattern1);
 70  
 
 71  1
         Object pattern2 = cache.addPattern("/foo/");
 72  1
         assertSame("add twice returns different", pattern1, pattern2);
 73  1
     }
 74  
 
 75  
     public void testAddPatternWithOption() throws MalformedPatternException {
 76  1
         Object pattern = cache.addPattern("/foo/", Perl5Compiler.CASE_INSENSITIVE_MASK);
 77  1
         assertNotNull("add returns null", pattern);
 78  1
     }
 79  
 
 80  
     public void testAddMalformedPattern() throws MalformedPatternException {
 81  
         try {
 82  1
             cache.addPattern("foo(");
 83  0
             fail("Added a malformed pattern");
 84  1
         } catch (MalformedPatternException e) {
 85  
             // expected
 86  0
         }
 87  1
     }
 88  
 
 89  
     public void testAddMalformedPatternWithOption() throws MalformedPatternException {
 90  
         try {
 91  1
             cache.addPattern("foo(", Perl5Compiler.CASE_INSENSITIVE_MASK);
 92  0
             fail("Added a malformed pattern");
 93  1
         } catch (MalformedPatternException e) {
 94  
             // expected
 95  0
         }
 96  1
     }
 97  
 
 98  
     public void testGetPattern() throws MalformedCachePatternException {
 99  1
         Object pattern1 = cache.getPattern("/foo/");
 100  1
         assertNotNull("get returns null", pattern1);
 101  
 
 102  1
         Object pattern2 = cache.getPattern("/foo/");
 103  1
         assertSame("get twice returns different", pattern1, pattern2);
 104  1
     }
 105  
 
 106  
     public void testGetPatternWithOption() throws MalformedCachePatternException {
 107  1
         Object pattern = cache.getPattern("/foo/", Perl5Compiler.CASE_INSENSITIVE_MASK);
 108  1
         assertNotNull("get returns null", pattern);
 109  1
     }
 110  
 
 111  
     public void testGetMalformedPattern() throws MalformedCachePatternException {
 112  
         try {
 113  1
             cache.getPattern("foo(");
 114  0
             fail("Got malformed pattern");
 115  1
         } catch (MalformedCachePatternException e) {
 116  
             // Expected
 117  0
         }
 118  1
     }
 119  
 
 120  
     public void testGetMalformedPatternWithOption() throws MalformedCachePatternException {
 121  
         try {
 122  1
             cache.getPattern("foo(", Perl5Compiler.CASE_INSENSITIVE_MASK);
 123  0
             fail("Got malformed pattern");
 124  1
         } catch (MalformedCachePatternException e) {
 125  
             // Expected
 126  0
         }
 127  1
     }
 128  
 }