Remove unnecessary initMocks() in openflow-protocol-impl
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / core / SslContextFactoryTest.java
1 /*
2  * Copyright (c) 2014 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowjava.protocol.impl.core;
10
11 import static org.junit.Assert.assertNotNull;
12
13 import com.google.common.collect.Lists;
14 import javax.net.ssl.SSLContext;
15 import org.junit.Before;
16 import org.junit.Test;
17 import org.opendaylight.openflowjava.protocol.api.connection.TlsConfiguration;
18 import org.opendaylight.openflowjava.protocol.api.connection.TlsConfigurationImpl;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.KeystoreType;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.PathType;
21
22 /**
23  * Unit tests for SslContextFactory.
24  *
25  * @author jameshall
26  */
27 public class SslContextFactoryTest {
28
29     SslContextFactory sslContextFactory;
30     TlsConfiguration tlsConfiguration ;
31
32     /**
33      * Sets up test environment.
34      */
35     @Before
36     public void setUp() {
37         tlsConfiguration = new TlsConfigurationImpl(KeystoreType.JKS, "/exemplary-ctlTrustStore",
38                 PathType.CLASSPATH, KeystoreType.JKS, "/exemplary-ctlKeystore", PathType.CLASSPATH,
39                 Lists.newArrayList("TLS_RSA_WITH_AES_128_CBC_SHA", "TLS_RSA_WITH_AES_128_CBC_SHA256")) ;
40         sslContextFactory = new SslContextFactory(tlsConfiguration);
41     }
42
43     @Test
44     public void testGetServerContext() {
45         SSLContext context  = sslContextFactory.getServerContext() ;
46
47         assertNotNull(context);
48     }
49 }