Package org.apache.rat.analysis.util

Source Code of org.apache.rat.analysis.util.MatcherMultiplexerTest

/*
* Licensed to the Apache Software Foundation (ASF) under one   *
* or more contributor license agreements.  See the NOTICE file *
* distributed with this work for additional information        *
* regarding copyright ownership.  The ASF licenses this file   *
* to you 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 org.apache.rat.analysis.util;

import junit.framework.TestCase;
import org.apache.rat.analysis.IHeaderMatcher;
import org.apache.rat.analysis.MockLicenseMatcher;
import org.apache.rat.analysis.util.HeaderMatcherMultiplexer;
import org.apache.rat.report.claim.impl.xml.MockClaimReporter;

public class MatcherMultiplexerTest extends TestCase {

  private static final String LINE_ONE = "Line One";
  private static final String LINE_TWO = "Line Two";
 
    MockClaimReporter reporter;
  MockLicenseMatcher matcherOne;
  MockLicenseMatcher matcherTwo;

  HeaderMatcherMultiplexer multiplexer;
 
  protected void setUp() throws Exception {
    super.setUp();
    matcherOne = new MockLicenseMatcher();
    matcherTwo = new MockLicenseMatcher();
    IHeaderMatcher[] matchers = {matcherOne, matcherTwo};
    multiplexer = new HeaderMatcherMultiplexer(matchers);
        reporter = new MockClaimReporter();
  }

  protected void tearDown() throws Exception {
    super.tearDown();
  }
 
  public void testMatcherLine() throws Exception {
        matcherOne.result = false;
        matcherTwo.result = false;
    multiplexer.match("subject", LINE_ONE, reporter);
    assertEquals("One line", 1, matcherOne.lines.size());
    assertEquals("Same as line passed", LINE_ONE, matcherOne.lines.get(0));
    assertEquals("One line", 1, matcherTwo.lines.size());
    assertEquals("Same as line passed", LINE_ONE, matcherTwo.lines.get(0));
    multiplexer.match("subject", LINE_TWO, reporter);
    assertEquals("One line", 2, matcherOne.lines.size());
    assertEquals("Same as line passed", LINE_TWO, matcherOne.lines.get(1));
    assertEquals("One line", 2, matcherTwo.lines.size());
    assertEquals("Same as line passed", LINE_TWO, matcherTwo.lines.get(1));
  }
 
  public void testReset() {
    multiplexer.reset();
    assertEquals("Reset once", 1, matcherOne.resets);
    assertEquals("Reset once", 1, matcherTwo.resets);
    multiplexer.reset();
    assertEquals("Reset twice", 2, matcherOne.resets);
    assertEquals("Reset twice", 2, matcherTwo.resets);
  }
}
TOP

Related Classes of org.apache.rat.analysis.util.MatcherMultiplexerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.