Package com.github.maven.plugins.core

Source Code of com.github.maven.plugins.core.MatchNonProxyTest$TestMojo

/*
* Copyright (c) 2012 GitHub Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
package com.github.maven.plugins.core;

import java.io.File;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertFalse;

import java.util.concurrent.atomic.AtomicReference;

import org.apache.maven.execution.MavenSession;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.settings.Proxy;
import org.apache.maven.settings.Settings;
import org.apache.maven.settings.building.DefaultSettingsBuilderFactory;
import org.apache.maven.settings.building.DefaultSettingsBuildingRequest;
import org.apache.maven.settings.building.FileSettingsSource;
import org.apache.maven.settings.building.SettingsBuilder;
import org.apache.maven.settings.building.SettingsBuildingResult;
import org.eclipse.egit.github.core.client.GitHubClient;
import org.eclipse.egit.github.core.client.IGitHubConstants;
import org.junit.Test;

/**
* NonProxy tests for the various configuration
*
* @author  Kiyofumi Kondoh
*/
public class MatchNonProxyTest {

  private class TestMojo extends GitHubProjectMojo {

    private final AtomicReference<String> host = new AtomicReference<String>();

    protected GitHubClient createClient() {
      host.set(null);
      return super.createClient();
    }

    protected GitHubClient createClient(String hostname)
        throws MojoExecutionException {
      host.set(hostname);
      return super.createClient(hostname);
    }

    public GitHubClient createClient(String host, String userName,
        String password, String oauth2Token, String serverId,
        Settings settings, MavenSession session)
        throws MojoExecutionException {
      return super.createClient(host, userName, password, oauth2Token,
          serverId, settings, session);
    }

    public void execute() throws MojoExecutionException,
        MojoFailureException {
      // Intentionally left blank
    }
  }

  /**
   * matchNonProxy tests with single nonProxyHosts
   */
  @Test
  public void matchNonProxyWithSingle_nonPorxyHosts() throws Exception
  {
    SettingsBuilder builder = new DefaultSettingsBuilderFactory().newInstance();
    assertNotNull( builder );

    DefaultSettingsBuildingRequest request = new DefaultSettingsBuildingRequest();
    request.setSystemProperties( System.getProperties() );
    FileSettingsSource fileSource = new FileSettingsSource( new File("src/test/resources/settings/proxy/nonproxy-github.xml").getAbsoluteFile() );
    request.setUserSettingsSource( fileSource );

    SettingsBuildingResult result = builder.build( request );
    assertNotNull( result );
    assertNotNull( result.getEffectiveSettings() );

    TestMojo mojo = new TestMojo();
    assertNotNull( mojo );

    assertNotNull( result.getEffectiveSettings().getProxies() );
    for ( final Proxy proxy : result.getEffectiveSettings().getProxies() )
    {
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, IGitHubConstants.HOST_DEFAULT );
        assertTrue( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, IGitHubConstants.HOST_API );
        assertFalse( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, "hoge." + IGitHubConstants.HOST_DEFAULT );
        assertFalse( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, "hoge" + IGitHubConstants.HOST_DEFAULT );
        assertFalse( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, mojo.host.get() );
        assertTrue( isNonProxy );
      }
    }
  }

  /**
   * matchNonProxy tests with multiple nonProxyHosts
   */
  @Test
  public void matchNonProxyWithMultiple_nonPorxyHosts() throws Exception
  {
    SettingsBuilder builder = new DefaultSettingsBuilderFactory().newInstance();
    assertNotNull( builder );

    DefaultSettingsBuildingRequest request = new DefaultSettingsBuildingRequest();
    request.setSystemProperties( System.getProperties() );
    FileSettingsSource fileSource = new FileSettingsSource( new File("src/test/resources/settings/proxy/nonproxy-github_and_api.xml").getAbsoluteFile() );
    request.setUserSettingsSource( fileSource );

    SettingsBuildingResult result = builder.build( request );
    assertNotNull( result );
    assertNotNull( result.getEffectiveSettings() );

    TestMojo mojo = new TestMojo();
    assertNotNull( mojo );

    assertNotNull( result.getEffectiveSettings().getProxies() );
    for ( final Proxy proxy : result.getEffectiveSettings().getProxies() )
    {
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, IGitHubConstants.HOST_DEFAULT );
        assertTrue( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, IGitHubConstants.HOST_API );
        assertTrue( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, "hoge." + IGitHubConstants.HOST_DEFAULT );
        assertFalse( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, "hoge" + IGitHubConstants.HOST_DEFAULT );
        assertFalse( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, mojo.host.get() );
        assertTrue( isNonProxy );
      }
    }
  }

  /**
   * matchNonProxy tests with wildcard nonProxyHosts
   */
  @Test
  public void matchNonProxyWithWildcard_nonPorxyHosts() throws Exception
  {
    SettingsBuilder builder = new DefaultSettingsBuilderFactory().newInstance();
    assertNotNull( builder );

    DefaultSettingsBuildingRequest request = new DefaultSettingsBuildingRequest();
    request.setSystemProperties( System.getProperties() );
    FileSettingsSource fileSource = new FileSettingsSource( new File("src/test/resources/settings/proxy/nonproxy-github_wildcard.xml").getAbsoluteFile() );
    request.setUserSettingsSource( fileSource );

    SettingsBuildingResult result = builder.build( request );
    assertNotNull( result );
    assertNotNull( result.getEffectiveSettings() );

    TestMojo mojo = new TestMojo();
    assertNotNull( mojo );

    assertNotNull( result.getEffectiveSettings().getProxies() );
    for ( final Proxy proxy : result.getEffectiveSettings().getProxies() )
    {
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, IGitHubConstants.HOST_DEFAULT );
        assertTrue( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, IGitHubConstants.HOST_API );
        assertTrue( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, "hoge." + IGitHubConstants.HOST_DEFAULT );
        assertTrue( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, "hoge" + IGitHubConstants.HOST_DEFAULT );
        assertTrue( isNonProxy );
      }
      {
        final boolean isNonProxy = mojo.matchNonProxy( proxy, mojo.host.get() );
        assertTrue( isNonProxy );
      }
    }
  }




  /**
   * getProxy tests with single nonProxyHosts
   */
  @Test
  public void getProxyWithSingle_nonProxyHosts() throws Exception
  {
    SettingsBuilder builder = new DefaultSettingsBuilderFactory().newInstance();
    assertNotNull( builder );

    DefaultSettingsBuildingRequest request = new DefaultSettingsBuildingRequest();
    request.setSystemProperties( System.getProperties() );
    FileSettingsSource fileSource = new FileSettingsSource( new File("src/test/resources/settings/proxy/nonproxy-github.xml").getAbsoluteFile() );
    request.setUserSettingsSource( fileSource );

    SettingsBuildingResult result = builder.build( request );
    assertNotNull( result );
    assertNotNull( result.getEffectiveSettings() );

    TestMojo mojo = new TestMojo();
    assertNotNull( mojo );

    {
      Proxy proxy = mojo.getProxy( result.getEffectiveSettings(), "intra_github-test-nonproxy", mojo.host.get() );
      assertNull( proxy );
    }
    {
      Proxy proxy = mojo.getProxy( result.getEffectiveSettings(), "intra_github-test-nonproxy", "intra-github.com" );
      assertNotNull( proxy );
    }
  }

  /**
   * getProxy tests with nonProxyHosts, which have same id
   */
  @Test
  public void getProxyIntraWithSameId() throws Exception
  {
    SettingsBuilder builder = new DefaultSettingsBuilderFactory().newInstance();
    assertNotNull( builder );

    DefaultSettingsBuildingRequest request = new DefaultSettingsBuildingRequest();
    request.setSystemProperties( System.getProperties() );
    FileSettingsSource fileSource = new FileSettingsSource( new File("src/test/resources/settings/proxy/nonproxy-intra_github.xml").getAbsoluteFile() );
    request.setUserSettingsSource( fileSource );

    SettingsBuildingResult result = builder.build( request );
    assertNotNull( result );
    assertNotNull( result.getEffectiveSettings() );

    TestMojo mojo = new TestMojo();
    assertNotNull( mojo );

    {
      Proxy proxy = mojo.getProxy( result.getEffectiveSettings(), "intra_github-test-nonproxy", mojo.host.get() );
      assertNotNull( proxy );
    }
    {
      Proxy proxy = mojo.getProxy( result.getEffectiveSettings(), "intra_github-test-nonproxy", "intra-github.com" );
      assertNull( proxy );
    }
    {
      Proxy proxy = mojo.getProxy( result.getEffectiveSettings(), "intra_github-test-nonproxy", "intra_github.com" );
      assertNotNull( proxy );
    }
  }

  /**
   * getProxy tests with nonProxyHosts, which doesn't have same id
   */
  @Test
  public void getProxyIntraNoSameId() throws Exception
  {
    SettingsBuilder builder = new DefaultSettingsBuilderFactory().newInstance();
    assertNotNull( builder );

    DefaultSettingsBuildingRequest request = new DefaultSettingsBuildingRequest();
    request.setSystemProperties( System.getProperties() );
    FileSettingsSource fileSource = new FileSettingsSource( new File("src/test/resources/settings/proxy/nonproxy-intra_github-no_same_id.xml").getAbsoluteFile() );
    request.setUserSettingsSource( fileSource );

    SettingsBuildingResult result = builder.build( request );
    assertNotNull( result );
    assertNotNull( result.getEffectiveSettings() );

    TestMojo mojo = new TestMojo();
    assertNotNull( mojo );

    {
      Proxy proxy = mojo.getProxy( result.getEffectiveSettings(), "intra_github-test-nonproxy", mojo.host.get() );
      assertNotNull( proxy );
    }
    {
      Proxy proxy = mojo.getProxy( result.getEffectiveSettings(), "intra_github-test-nonproxy", "intra-github.com" );
      assertNull( proxy );
    }
    {
      Proxy proxy = mojo.getProxy( result.getEffectiveSettings(), "intra_github-test-nonproxy", "intra_github.com" );
      assertNotNull( proxy );
    }
  }


}
TOP

Related Classes of com.github.maven.plugins.core.MatchNonProxyTest$TestMojo

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.