summaryrefslogtreecommitdiff
path: root/x-net/src/test/impl/java.injected/javax/net/ssl/DefaultSSLSocketFactoryTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'x-net/src/test/impl/java.injected/javax/net/ssl/DefaultSSLSocketFactoryTest.java')
-rw-r--r--x-net/src/test/impl/java.injected/javax/net/ssl/DefaultSSLSocketFactoryTest.java123
1 files changed, 0 insertions, 123 deletions
diff --git a/x-net/src/test/impl/java.injected/javax/net/ssl/DefaultSSLSocketFactoryTest.java b/x-net/src/test/impl/java.injected/javax/net/ssl/DefaultSSLSocketFactoryTest.java
deleted file mode 100644
index e7fcec7..0000000
--- a/x-net/src/test/impl/java.injected/javax/net/ssl/DefaultSSLSocketFactoryTest.java
+++ /dev/null
@@ -1,123 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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 javax.net.ssl;
-
-import java.io.IOException;
-import java.net.InetAddress;
-import java.net.Socket;
-import java.net.SocketException;
-
-import junit.framework.TestCase;
-
-
-/**
- * Tests for <code>DefaultSSLSocketFactory</code> class constructors and
- * methods.
- */
-public class DefaultSSLSocketFactoryTest extends TestCase {
-
- /*
- * Class under test for Socket createSocket(String, int)
- */
- public void testCreateSocketStringint() {
- DefaultSSLSocketFactory f = new DefaultSSLSocketFactory("ERROR");
- try {
- f.createSocket("localhost", 0);
- fail("No expected SocketException");
- } catch (SocketException e) {
- } catch (IOException e) {
- fail(e.toString());
- }
-
- }
-
- /*
- * Class under test for Socket createSocket(String, int, InetAddress, int)
- */
- public void testCreateSocketStringintInetAddressint() {
- DefaultSSLSocketFactory f = new DefaultSSLSocketFactory("ERROR");
- try {
- f.createSocket("localhost", 0, InetAddress.getLocalHost(), 1);
- fail("No expected SocketException");
- } catch (SocketException e) {
- } catch (IOException e) {
- fail(e.toString());
- }
- }
-
- /*
- * Class under test for Socket createSocket(InetAddress, int)
- */
- public void testCreateSocketInetAddressint() {
- DefaultSSLSocketFactory f = new DefaultSSLSocketFactory("ERROR");
- try {
- f.createSocket(InetAddress.getLocalHost(), 1);
- fail("No expected SocketException");
- } catch (SocketException e) {
- } catch (IOException e) {
- fail(e.toString());
- }
- }
-
- /*
- * Class under test for Socket createSocket(InetAddress, int, InetAddress,
- * int)
- */
- public void testCreateSocketInetAddressintInetAddressint() {
- DefaultSSLSocketFactory f = new DefaultSSLSocketFactory("ERROR");
- try {
- f.createSocket(InetAddress.getLocalHost(), 1, InetAddress
- .getLocalHost(), 2);
- fail("No expected SocketException");
- } catch (SocketException e) {
- } catch (IOException e) {
- fail(e.toString());
- }
- }
-
- public void testGetDefaultCipherSuites() {
- DefaultSSLSocketFactory f = new DefaultSSLSocketFactory("ERROR");
- String[] res = f.getDefaultCipherSuites();
- if (res == null || res.length != 0) {
- fail("incorrect result");
- }
- }
-
- public void testGetSupportedCipherSuites() {
- DefaultSSLSocketFactory f = new DefaultSSLSocketFactory("ERROR");
- String[] res = f.getSupportedCipherSuites();
- if (res == null || res.length != 0) {
- fail("incorrect result");
- }
- }
-
- /*
- * Class under test for Socket createSocket(Socket, String, int, boolean)
- */
- public void testCreateSocketSocketStringintboolean() {
- DefaultSSLSocketFactory f = new DefaultSSLSocketFactory("ERROR");
- try {
- f.createSocket(new Socket(), "localhost", 1, true);
- fail("No expected SocketException");
- } catch (SocketException e) {
- } catch (IOException e) {
- fail(e.toString());
- }
- }
-}