forked from community/device-mgt-core
parent
8102473cc0
commit
b1aba20200
@ -0,0 +1,104 @@
|
|||||||
|
/*
|
||||||
|
* 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.device.mgt.core.permission.mgt;
|
||||||
|
|
||||||
|
import org.apache.log4j.Logger;
|
||||||
|
import org.powermock.api.mockito.PowerMockito;
|
||||||
|
import org.powermock.core.classloader.annotations.PrepareForTest;
|
||||||
|
import org.testng.Assert;
|
||||||
|
import org.testng.IObjectFactory;
|
||||||
|
import org.testng.annotations.BeforeClass;
|
||||||
|
import org.testng.annotations.ObjectFactory;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
import org.wso2.carbon.device.mgt.common.permission.mgt.Permission;
|
||||||
|
import org.wso2.carbon.device.mgt.common.permission.mgt.PermissionManagementException;
|
||||||
|
import org.wso2.carbon.device.mgt.common.permission.mgt.PermissionManagerService;
|
||||||
|
import org.wso2.carbon.registry.core.exceptions.RegistryException;
|
||||||
|
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
|
import static org.mockito.MockitoAnnotations.initMocks;
|
||||||
|
|
||||||
|
@PrepareForTest(PermissionUtils.class)
|
||||||
|
public class PermissionManagerServiceTest {
|
||||||
|
|
||||||
|
private Permission permission;
|
||||||
|
private Logger log = Logger.getLogger(PermissionManagerServiceTest.class);
|
||||||
|
private String PERMISSION_URL = "permission/admin/device-mgt/test/testPermission";
|
||||||
|
private String PERMISSION_PATH = "permission/admin/device-mgt/test/testPermission";
|
||||||
|
private String PERMiSSION_METHOD = "ui.execute";
|
||||||
|
private String PERMISSION_NAME = "Test Permission";
|
||||||
|
|
||||||
|
//For create properties to retrieve permission.
|
||||||
|
private String HTTP_METHOD = "HTTP_METHOD";
|
||||||
|
private String URL = "URL";
|
||||||
|
|
||||||
|
private PermissionManagerService permissionManagerService;
|
||||||
|
|
||||||
|
@ObjectFactory
|
||||||
|
public IObjectFactory getObjectFactory() {
|
||||||
|
return new org.powermock.modules.testng.PowerMockObjectFactory();
|
||||||
|
}
|
||||||
|
|
||||||
|
@BeforeClass
|
||||||
|
public void init() throws RegistryException {
|
||||||
|
permissionManagerService = PermissionManagerServiceImpl.getInstance();
|
||||||
|
initMocks(this);
|
||||||
|
this.permission = new Permission();
|
||||||
|
permission.setName(PERMISSION_NAME);
|
||||||
|
permission.setPath(PERMISSION_PATH);
|
||||||
|
permission.setMethod(PERMiSSION_METHOD);
|
||||||
|
permission.setUrl(PERMISSION_URL);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test (description = "Create a new permission in the permission tree.")
|
||||||
|
public void testCreatePermission() {
|
||||||
|
try {
|
||||||
|
|
||||||
|
PowerMockito.mockStatic(PermissionUtils.class);
|
||||||
|
PowerMockito.when(PermissionUtils.putPermission(permission)).thenReturn(true);
|
||||||
|
|
||||||
|
Assert.assertTrue(permissionManagerService.addPermission(permission));
|
||||||
|
|
||||||
|
} catch (PermissionManagementException e) {
|
||||||
|
log.error("Error creating permission " + e.getErrorMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test (dependsOnMethods = {"testCreatePermission"}, description = "Test for retrieving the created permission " +
|
||||||
|
"from the permission tree.")
|
||||||
|
public void testGetPermission() throws PermissionManagementException {
|
||||||
|
Permission permission = permissionManagerService.getPermission(createProperties());
|
||||||
|
|
||||||
|
Assert.assertEquals(permission.getMethod(), PERMiSSION_METHOD);
|
||||||
|
Assert.assertEquals(permission.getName(), PERMISSION_NAME);
|
||||||
|
Assert.assertEquals(permission.getPath(), PERMISSION_PATH);
|
||||||
|
Assert.assertEquals(permission.getUrl(), PERMISSION_URL);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a Property object which will be passed to getPermission method to retrieve a permission.
|
||||||
|
* @return : Property object which contains permission url and method.
|
||||||
|
* */
|
||||||
|
private Properties createProperties() {
|
||||||
|
Properties properties = new Properties();
|
||||||
|
properties.setProperty(URL, PERMISSION_URL);
|
||||||
|
properties.setProperty(HTTP_METHOD, PERMiSSION_METHOD);
|
||||||
|
return properties;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue