blob: 9014178ed00f0e6c44918d217bb15b9c6b08dd15 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.update.tests.api;
import java.io.File;
import java.net.URL;
import org.eclipse.update.core.ISite;
import org.eclipse.update.core.SiteManager;
import org.eclipse.update.tests.UpdateManagerTestCase;
public class TestSiteAPI extends UpdateManagerTestCase {
/**
* Test the getFeatures()
*/
public TestSiteAPI(String arg0) {
super(arg0);
}
public void testURL() throws Exception {
ISite site = SiteManager.getSite(SOURCE_FILE_SITE, null);
assertEquals(new File(site.getURL().getFile()),new File(SOURCE_FILE_SITE.getFile()));
ISite site2 = SiteManager.getSite(SOURCE_HTTP_SITE, null);
assertEquals(site2.getURL(),new URL("http", getHttpHost(),getHttpPort(), bundle.getString("HTTP_PATH_1")+"site.xml"));
}
}