blob: 6f3b19ec2ce6b3b1167b359f9e07ff090a31bb82 [file] [log] [blame]
/*
* Copyright 2001-2009 The Apache Software Foundation.
*
* 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.apache.juddi.v3.tck;
import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.juddi.v3.bpel.BPEL_010_IntegrationTest;
import org.apache.juddi.v3.client.config.UDDIClient;
import org.apache.juddi.v3.client.transport.Transport;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.Assume;
import org.junit.BeforeClass;
import org.junit.Test;
import org.uddi.api_v3.AuthToken;
import org.uddi.api_v3.GetAuthToken;
import org.uddi.v3_service.UDDISecurityPortType;
/**
* @author <a href="mailto:kstam@apache.org">Kurt T Stam</a>
* @author <a href="mailto:alexoree@apache.org">Alex O'Ree</a>
*/
public class UDDI_010_PublisherIntegrationTest {
private static Log logger = LogFactory.getLog(UDDI_010_PublisherIntegrationTest.class);
private static UDDIClient manager;
@BeforeClass
public static void startRegistry() throws ConfigurationException {
if (!TckPublisher.isEnabled()) {
return;
}
if (!TckPublisher.isJUDDI()) {
return;
}
manager = new UDDIClient();
manager.start();
JUDDI_300_MultiNodeIntegrationTest.testSetupReplicationConfig();
}
@AfterClass
public static void stopRegistry() throws ConfigurationException {
if (!TckPublisher.isEnabled()) {
return;
}
if (!TckPublisher.isJUDDI()) {
return;
}
manager.stop();
}
@Test
public void testAuthToken() {
Assume.assumeTrue(TckPublisher.isEnabled());
Assume.assumeTrue(TckPublisher.isUDDIAuthMode());
try {
Transport transport = manager.getTransport("uddiv3");
UDDISecurityPortType securityService = transport.getUDDISecurityService();
GetAuthToken getAuthToken = new GetAuthToken();
getAuthToken.setUserID(TckPublisher.getRootPublisherId());
getAuthToken.setCred(TckPublisher.getRootPassword());
AuthToken authToken = securityService.getAuthToken(getAuthToken);
//logger.info("Don't log auth tokens!");
Assert.assertNotNull(authToken);
} catch (Exception e) {
e.printStackTrace();
Assert.fail();
}
}
}