Package com.eclipsesource.tabris.tracking.internal.util

Source Code of com.eclipsesource.tabris.tracking.internal.util.UniversalUserAgentProviderTest

/*******************************************************************************
* Copyright (c) 2014 EclipseSource and others. All rights reserved. This program and the
* accompanying materials are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html Contributors: EclipseSource - initial API and
* implementation
******************************************************************************/
package com.eclipsesource.tabris.tracking.internal.util;

import static org.junit.Assert.assertEquals;

import org.junit.Before;
import org.junit.Test;

import com.eclipsesource.tabris.tracking.TrackingInfo;


public class UniversalUserAgentProviderTest {

  private UniversalUserAgentProvider provider;

  @Before
  public void setUp() {
    provider = new UniversalUserAgentProvider();
  }

  @Test ( expected = IllegalArgumentException.class )
  public void testFailsWithNullTrackingInfo() {
    provider.getUserAgent( null );
  }

  @Test ( expected = IllegalStateException.class )
  public void testFailsWithNullUserAgent() {
    provider.getUserAgent( new TrackingInfo() );
  }

  @Test ( expected = IllegalStateException.class )
  public void testFailsWithEmptyUserAgent() {
    TrackingInfo info = new TrackingInfo();
    info.setUserAgent( "" );

    provider.getUserAgent( info );
  }

  @Test
  public void testProvidesUserAgent() throws Exception {
    TrackingInfo info = new TrackingInfo();
    info.setUserAgent( "foo" );

    String userAgent = provider.getUserAgent( info );

    assertEquals( "foo", userAgent );
  }
}
TOP

Related Classes of com.eclipsesource.tabris.tracking.internal.util.UniversalUserAgentProviderTest

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.