Package org.apache.juddi.v3.tck

Source Code of org.apache.juddi.v3.tck.UDDI_010_PublisherIntegrationTest

/*
* 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.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 UDDIClient manager;

  @BeforeClass
  public static void startRegistry() throws ConfigurationException {
    manager  = new UDDIClient();
    manager.start();
  }
 
  @AfterClass
  public static void stopRegistry() throws ConfigurationException {
    manager.stop();
  }
 
     @Test
     public void testAuthToken() {
             Assume.assumeTrue(TckPublisher.isUDDIAuthMode());
       try {
         Transport transport = manager.getTransport();
           UDDISecurityPortType securityService = transport.getUDDISecurityService();
           GetAuthToken getAuthToken = new GetAuthToken();
           getAuthToken.setUserID(TckPublisher.getRootPublisherId());
           getAuthToken.setCred(TckPublisher.getRootPassword());
           AuthToken authToken = securityService.getAuthToken(getAuthToken);
           System.out.println("Don't log auth tokens!");
           Assert.assertNotNull(authToken);
       } catch (Exception e) {
           e.printStackTrace();
           Assert.fail();
       }
     }
 
}
TOP

Related Classes of org.apache.juddi.v3.tck.UDDI_010_PublisherIntegrationTest

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.