From ec8a172b3b555f73e6d2a11e8f50b58b818304dc Mon Sep 17 00:00:00 2001 From: Rasika Perera Date: Fri, 13 Oct 2017 19:09:08 +0530 Subject: [PATCH] Adding license --- .../core/mgt/impl/FeatureManagerImplTest.java | 48 ++++++++++++++----- .../core/mgt/impl/ProfileManagerImplTest.java | 17 +++++++ 2 files changed, 53 insertions(+), 12 deletions(-) diff --git a/components/policy-mgt/org.wso2.carbon.policy.mgt.core/src/test/java/org/wso2/carbon/policy/mgt/core/mgt/impl/FeatureManagerImplTest.java b/components/policy-mgt/org.wso2.carbon.policy.mgt.core/src/test/java/org/wso2/carbon/policy/mgt/core/mgt/impl/FeatureManagerImplTest.java index bf42625abf..3e12f8b562 100644 --- a/components/policy-mgt/org.wso2.carbon.policy.mgt.core/src/test/java/org/wso2/carbon/policy/mgt/core/mgt/impl/FeatureManagerImplTest.java +++ b/components/policy-mgt/org.wso2.carbon.policy.mgt.core/src/test/java/org/wso2/carbon/policy/mgt/core/mgt/impl/FeatureManagerImplTest.java @@ -1,3 +1,20 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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 org.wso2.carbon.policy.mgt.core.mgt.impl; import org.apache.commons.logging.Log; @@ -9,7 +26,6 @@ import org.testng.annotations.Test; import org.testng.internal.collections.Pair; import org.wso2.carbon.context.PrivilegedCarbonContext; import org.wso2.carbon.device.mgt.common.DeviceIdentifier; -import org.wso2.carbon.device.mgt.common.Feature; import org.wso2.carbon.device.mgt.common.IllegalTransactionStateException; import org.wso2.carbon.device.mgt.common.group.mgt.DeviceGroup; import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManager; @@ -87,7 +103,7 @@ public class FeatureManagerImplTest extends BasePolicyManagementDAOTest { } @Test(description = "This test case tests handling ProfileManagerDAOException when adding new profile feature", - dependsOnMethods = "testAddProfileFeature") + dependsOnMethods = "testAddProfileFeature") public void testAddProfileFeatureThrowingProfileManagerDAOException() throws Exception { Profile profile = ProfileCreator.getProfile(FeatureCreator.getFeatureList(), DEVICE_TYPE_D); profile1 = profileManager.addProfile(profile); @@ -110,7 +126,8 @@ public class FeatureManagerImplTest extends BasePolicyManagementDAOTest { profile1 = profileManager.addProfile(profile); FeatureDAO featureDAO = mock(FeatureDAO.class); - when(featureDAO.addProfileFeature(any(ProfileFeature.class), anyInt())).thenThrow(new FeatureManagerDAOException()); + when(featureDAO.addProfileFeature(any(ProfileFeature.class), anyInt())).thenThrow( + new FeatureManagerDAOException()); ProfileFeature profileFeature = profile.getProfileFeaturesList().get(0); testThrowingException(featureManager, @@ -144,7 +161,7 @@ public class FeatureManagerImplTest extends BasePolicyManagementDAOTest { //Adding profile profile1 = profileManager.addProfile(profile); profileFeaturesList1 = featureManager.addProfileFeatures(profile.getProfileFeaturesList(), - profile1.getProfileId()); + profile1.getProfileId()); Assert.assertEquals(profileFeaturesList1.size(), profile.getProfileFeaturesList().size()); } @@ -182,7 +199,8 @@ public class FeatureManagerImplTest extends BasePolicyManagementDAOTest { profile1 = profileManager.addProfile(profile); FeatureDAO featureDAO = mock(FeatureDAO.class); - when(featureDAO.addProfileFeature(any(ProfileFeature.class), anyInt())).thenThrow(new FeatureManagerDAOException()); + when(featureDAO.addProfileFeature(any(ProfileFeature.class), anyInt())).thenThrow( + new FeatureManagerDAOException()); List profileFeaturesList = profile.getProfileFeaturesList(); testThrowingException(featureManager, @@ -226,7 +244,7 @@ public class FeatureManagerImplTest extends BasePolicyManagementDAOTest { int createdProfileId = profileManager.addProfile(profile).getProfileId(); profileFeaturesList1.get(0).setFeatureCode(newFeatureCode); List updatedProfileFeatures = featureManager.updateProfileFeatures(profileFeaturesList1, - createdProfileId); + createdProfileId); Assert.assertEquals(updatedProfileFeatures.get(0).getFeatureCode(), newFeatureCode); } @@ -242,7 +260,8 @@ public class FeatureManagerImplTest extends BasePolicyManagementDAOTest { List profileFeaturesList = profile.getProfileFeaturesList(); testThrowingException(featureManager, profileFeaturesList, - p -> featureManager.updateProfileFeatures((List) p, profile1.getProfileId()), + p -> featureManager + .updateProfileFeatures((List) p, profile1.getProfileId()), "profileDAO", profileDAO, ProfileManagerDAOException.class); } @@ -254,12 +273,14 @@ public class FeatureManagerImplTest extends BasePolicyManagementDAOTest { profile1 = profileManager.addProfile(profile); FeatureDAO featureDAO = mock(FeatureDAO.class); - when(featureDAO.addProfileFeature(any(ProfileFeature.class), anyInt())).thenThrow(new FeatureManagerDAOException()); + when(featureDAO.addProfileFeature(any(ProfileFeature.class), anyInt())).thenThrow( + new FeatureManagerDAOException()); List profileFeaturesList = profile.getProfileFeaturesList(); testThrowingException(featureManager, profileFeaturesList, - p -> featureManager.updateProfileFeatures((List) p, profile1.getProfileId()), + p -> featureManager + .updateProfileFeatures((List) p, profile1.getProfileId()), "featureDAO", featureDAO, FeatureManagerDAOException.class); } @@ -296,7 +317,8 @@ public class FeatureManagerImplTest extends BasePolicyManagementDAOTest { } - @Test(description = "This test case tests handling ProfileManagerDAOException when retrieving features of a profile", + @Test(description = "This test case tests handling ProfileManagerDAOException when retrieving features of a " + + "profile", dependsOnMethods = "testGetFeaturesForProfile") public void testGetFeaturesForProfileThrowingProfileManagerDAOException() throws Exception { Profile profile = ProfileCreator.getProfile(FeatureCreator.getFeatureList(), DEVICE_TYPE_D); @@ -312,14 +334,16 @@ public class FeatureManagerImplTest extends BasePolicyManagementDAOTest { ProfileManagerDAOException.class); } - @Test(description = "This test case tests handling FeatureManagerDAOException when retrieving features of a profile", + @Test(description = "This test case tests handling FeatureManagerDAOException when retrieving features of a " + + "profile", dependsOnMethods = "testGetFeaturesForProfileThrowingProfileManagerDAOException") public void testGetFeaturesForProfileThrowingFeatureManagerDAOException() throws Exception { Profile profile = ProfileCreator.getProfile(FeatureCreator.getFeatureList(), DEVICE_TYPE_D); profile1 = profileManager.addProfile(profile); FeatureDAO featureDAO = mock(FeatureDAO.class); - when(featureDAO.addProfileFeature(any(ProfileFeature.class), anyInt())).thenThrow(new FeatureManagerDAOException()); + when(featureDAO.addProfileFeature(any(ProfileFeature.class), anyInt())).thenThrow( + new FeatureManagerDAOException()); testThrowingException(featureManager, null, diff --git a/components/policy-mgt/org.wso2.carbon.policy.mgt.core/src/test/java/org/wso2/carbon/policy/mgt/core/mgt/impl/ProfileManagerImplTest.java b/components/policy-mgt/org.wso2.carbon.policy.mgt.core/src/test/java/org/wso2/carbon/policy/mgt/core/mgt/impl/ProfileManagerImplTest.java index 92924e5aad..622a3e0414 100644 --- a/components/policy-mgt/org.wso2.carbon.policy.mgt.core/src/test/java/org/wso2/carbon/policy/mgt/core/mgt/impl/ProfileManagerImplTest.java +++ b/components/policy-mgt/org.wso2.carbon.policy.mgt.core/src/test/java/org/wso2/carbon/policy/mgt/core/mgt/impl/ProfileManagerImplTest.java @@ -1,3 +1,20 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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 org.wso2.carbon.policy.mgt.core.mgt.impl; import org.apache.commons.logging.Log;