Package org.cipango.sip

Source Code of org.cipango.sip.SipGrammarTest

// ========================================================================
// Copyright 2007-2008 NEXCOM Systems
// ------------------------------------------------------------------------
// Licensed 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.cipango.sip;

import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.assertFalse;
import static junit.framework.Assert.assertTrue;
import static junit.framework.Assert.fail;

import javax.servlet.sip.ServletParseException;
import javax.servlet.sip.URI;

import org.junit.Test;

public class SipGrammarTest
{
  @Test
  public void testToken()
  {
    assertTrue(SipGrammar.isToken("INVITE"));
    assertTrue(SipGrammar.isToken("+hello+-%world%!"));
    assertFalse(SipGrammar.isToken("(hello"));
  }

  @Test
  public void testLWS()
  {
    assertTrue(SipGrammar.isLWS(' '));
    assertTrue(SipGrammar.isLWS('\r'))
    assertTrue(SipGrammar.isLWS('\t'));   
    assertFalse(SipGrammar.isLWS('a'));
  }
 

  @Test
  public void testEscape()
  {
    assertTrue(SipGrammar.__header.contains('%'));
    assertEquals("%253B%40", SipGrammar.escape("%3B@", SipGrammar.__header));
  }

  @Test
  public void testURIScheme()
  {
    assertTrue(SipGrammar.isURIScheme("http"));
    assertTrue(SipGrammar.isURIScheme("hello+world"));
    assertFalse(SipGrammar.isURIScheme(".foo"));
  }

  @Test
  public void testGenericUri() throws Exception
  {
    URI uri = URIFactory.parseURI("foo://bar");
    assertEquals("foo", uri.getScheme());
    assertEquals("foo://bar", uri.toString());
   
    try
    {
      URIFactory.parseURI("1foo://bar");
      fail();
    }
    catch (ServletParseException _)
    { }
  }
}
TOP

Related Classes of org.cipango.sip.SipGrammarTest

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.