Package games.stendhal.common.parser

Source Code of games.stendhal.common.parser.CaseInsensitiveExprMatcherTest

/* $Id: CaseInsensitiveExprMatcherTest.java,v 1.1 2011/05/01 19:41:43 martinfuchs Exp $ */
/***************************************************************************
*                   (C) Copyright 2003-2010 - Stendhal                    *
***************************************************************************
***************************************************************************
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                                   *
*                                                                         *
***************************************************************************/
package games.stendhal.common.parser;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import games.stendhal.common.parser.CaseInsensitiveExprMatcher;
import games.stendhal.common.parser.ConversationParser;
import games.stendhal.common.parser.Expression;
import games.stendhal.common.parser.ExpressionMatcher;
import games.stendhal.common.parser.Sentence;

import org.junit.Test;

/**
* Test the CaseInsensitiveExprMatcher class.
*
* @author Martin Fuchs
*/
public class CaseInsensitiveExprMatcherTest {

  @Test
  public final void testCaseInsensitiveMatching() {
    final ExpressionMatcher matcher = new CaseInsensitiveExprMatcher();

    final Expression e1 = new Expression("aBc", "VER");
    final Expression e2 = new Expression("abc", "VER");
    final Expression e3 = new Expression("ab", "VER");
    final Expression e4 = new Expression("abc", "SUB");
    final Expression e5 = new Expression("X", "SUB");

    assertTrue(matcher.match(e1, e2));
    assertFalse(matcher.match(e1, e3));
    assertTrue(matcher.match(e1, e4));
    assertFalse(matcher.match(e1, e5));
    assertFalse(matcher.match(e4, e5));
  }

  /**
   * Tests for sentenceMatching.
   */
  @Test
  public final void testSentenceMatching() {
    Sentence m1 = ConversationParser.parseAsMatcher("|ICASE|hello");
    assertFalse(m1.hasError());
    assertEquals("|ICASE|hello", m1.toString());

    assertEquals(true, ConversationParser.parse("hello").matchesFull(m1));
    assertEquals(true, ConversationParser.parse("hallo").matchesFull(m1));
    assertEquals(false, ConversationParser.parse("hailo").matchesFull(m1));

    m1 = ConversationParser.parseAsMatcher("|EXACT|ICASE|hello");
    assertFalse(m1.hasError());
    assertEquals("|EXACT|ICASE|hello", m1.toString());

    assertEquals(true, ConversationParser.parse("hello").matchesFull(m1));
    assertEquals(false, ConversationParser.parse("hallo").matchesFull(m1));
    assertEquals(false, ConversationParser.parse("hailo").matchesFull(m1));
  }

}
TOP

Related Classes of games.stendhal.common.parser.CaseInsensitiveExprMatcherTest

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.