Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 8f1bd7083911d340c7af94348571b193fc38d32f (plain) (tree)
1
2
3
4
5
6
7
8


                                                                                
                                                                        
                                                            


                                          



                                                                                 
                                           
 

                                            
                                                        
                                                            
                      
 


                                     

                               










                                                                
           




                                                                                  
                                                                                   











                                                                              
                                                                                   
         
 
/*******************************************************************************
 *  Copyright (c) 2011 Christian Trutz
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License 2.0
 *  which accompanies this distribution, and is available at
 *  https://www.eclipse.org/legal/epl-2.0/
 *
 *  SPDX-License-Identifier: EPL-2.0
 *
 *  Contributors:
 *    Christian Trutz - initial API and implementation
 *******************************************************************************/
package org.eclipse.egit.github.core.tests;

import static org.junit.Assert.assertEquals;

import org.eclipse.egit.github.core.client.GitHubClient;
import org.eclipse.egit.github.core.client.IGitHubConstants;
import org.junit.Test;

/**
 * Unit tests of {@link GitHubClient}
 */
public class GitHubClientTest {

	private static class PrefixClient extends GitHubClient {

		public PrefixClient(String host) {
			super(host);
		}

		String uri(String uri) {
			return super.configureUri(uri);
		}
	}

	/**
	 * Verify prefix with API v3 host
	 */
	@Test
	public void prefixHostApiV3() {
		PrefixClient client = new PrefixClient(IGitHubConstants.HOST_API);
		assertEquals("/api/v3/repos/o/n", client.uri("/api/v3/repos/o/n"));
		assertEquals("/repos/o/n", client.uri("/repos/o/n"));
		assertEquals("/api/v2/json/repos/search/test",
				client.uri("/api/v2/json/repos/search/test"));
	}

	/**
	 * Verify prefix with localhost
	 */
	@Test
	public void prefixLocalhost() {
		PrefixClient client = new PrefixClient("localhost");
		assertEquals("/api/v3/repos/o/n", client.uri("/repos/o/n"));
		assertEquals("/api/v3/repos/o/n", client.uri("/api/v3/repos/o/n"));
	}
}

Back to the top