diff options
author | Joss Armstrong <joss.armstrong@ericsson.com> | 2019-02-08 16:29:32 +0000 |
---|---|---|
committer | Takamune Cho <takamune.cho@att.com> | 2019-02-11 14:13:26 +0000 |
commit | 991d833fd7558beaf7f2f2df63deb72dabda3e8a (patch) | |
tree | cfb62d039b232beca70e61696f6a11599f3d3a14 /appc-config/appc-encryption-tool/provider/src/test | |
parent | 28c931d73c4ff56a6c14025b88c5b8e9b677fee9 (diff) |
Test coverage in encryptiontool package
Increased coverage to 100%
Issue-ID: APPC-1409
Change-Id: Iff09cf04cbdb1cb4f7ad640102f8885a571f5ae0
Signed-off-by: Joss Armstrong <joss.armstrong@ericsson.com>
Diffstat (limited to 'appc-config/appc-encryption-tool/provider/src/test')
-rw-r--r-- | appc-config/appc-encryption-tool/provider/src/test/java/org/onap/appc/encryptiontool/EncryptionToolActivatorTest.java | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/appc-config/appc-encryption-tool/provider/src/test/java/org/onap/appc/encryptiontool/EncryptionToolActivatorTest.java b/appc-config/appc-encryption-tool/provider/src/test/java/org/onap/appc/encryptiontool/EncryptionToolActivatorTest.java new file mode 100644 index 000000000..470536aa0 --- /dev/null +++ b/appc-config/appc-encryption-tool/provider/src/test/java/org/onap/appc/encryptiontool/EncryptionToolActivatorTest.java @@ -0,0 +1,54 @@ +/* + * ============LICENSE_START======================================================= + * ONAP : APPC + * ================================================================================ + * Copyright (C) 2019 Ericsson + * ================================================================================ + * 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. + * + * ============LICENSE_END========================================================= + */ + +package org.onap.appc.encryptiontool; + +import java.util.LinkedList; +import java.util.List; +import org.junit.Test; +import org.mockito.Mockito; +import org.osgi.framework.BundleContext; +import org.osgi.framework.ServiceRegistration; +import org.powermock.reflect.Whitebox; + +public class EncryptionToolActivatorTest { + + @Test + public void testStart() throws Exception { + BundleContext bundleContext = Mockito.mock(BundleContext.class); + EncryptionToolActivator activator = new EncryptionToolActivator(); + activator.start(bundleContext); + Mockito.verify(bundleContext).registerService(Mockito.anyString(), Mockito.anyObject(), Mockito.any()); + } + + @Test + public void testStop() throws Exception { + BundleContext bundleContext = Mockito.mock(BundleContext.class); + EncryptionToolActivator activator = new EncryptionToolActivator(); + List<ServiceRegistration> registrations = new LinkedList<ServiceRegistration>(); + ServiceRegistration registration = Mockito.mock(ServiceRegistration.class); + registrations.add(registration); + Whitebox.setInternalState(activator, "registrations", registrations); + activator.stop(bundleContext); + Mockito.verify(registration).unregister(); + } + +} |