mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
commit
0edc9837a3
@ -23,9 +23,12 @@ import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
|||||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.EnrollmentDAO;
|
import org.wso2.carbon.device.mgt.core.dao.EnrollmentDAO;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.util.DeviceManagementDAOUtil;
|
import org.wso2.carbon.device.mgt.core.dao.util.DeviceManagementDAOUtil;
|
||||||
import org.wso2.carbon.device.mgt.core.operation.mgt.OperationMapping;
|
|
||||||
|
|
||||||
import java.sql.*;
|
import java.sql.Connection;
|
||||||
|
import java.sql.PreparedStatement;
|
||||||
|
import java.sql.ResultSet;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.sql.Timestamp;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@ -201,11 +204,36 @@ public class EnrollmentDAOImpl implements EnrollmentDAO {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private int getCountOfDevicesOfOwner(String owner, int tenantID) throws DeviceManagementDAOException {
|
||||||
|
Connection conn;
|
||||||
|
PreparedStatement stmt = null;
|
||||||
|
ResultSet rs = null;
|
||||||
|
int count = 0;
|
||||||
|
try {
|
||||||
|
conn = this.getConnection();
|
||||||
|
String checkQuery = "SELECT COUNT(ID) AS COUNT FROM DM_ENROLMENT WHERE OWNER = ? AND TENANT_ID = ?";
|
||||||
|
stmt = conn.prepareStatement(checkQuery);
|
||||||
|
stmt.setString(1, owner);
|
||||||
|
stmt.setInt(2, tenantID);
|
||||||
|
rs = stmt.executeQuery();
|
||||||
|
if(rs.next()){
|
||||||
|
count = rs.getInt("COUNT");
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
throw new DeviceManagementDAOException("Error occurred while trying to get device " +
|
||||||
|
"count of Owner : "+owner, e);
|
||||||
|
} finally {
|
||||||
|
DeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
||||||
|
}
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setStatus(String currentOwner, EnrolmentInfo.Status status,
|
public boolean setStatus(String currentOwner, EnrolmentInfo.Status status,
|
||||||
int tenantId) throws DeviceManagementDAOException {
|
int tenantId) throws DeviceManagementDAOException {
|
||||||
Connection conn;
|
Connection conn;
|
||||||
PreparedStatement stmt = null;
|
PreparedStatement stmt = null;
|
||||||
|
if(getCountOfDevicesOfOwner(currentOwner, tenantId) > 0){
|
||||||
try {
|
try {
|
||||||
conn = this.getConnection();
|
conn = this.getConnection();
|
||||||
String sql = "UPDATE DM_ENROLMENT SET STATUS = ? WHERE OWNER = ? AND TENANT_ID = ?";
|
String sql = "UPDATE DM_ENROLMENT SET STATUS = ? WHERE OWNER = ? AND TENANT_ID = ?";
|
||||||
@ -220,6 +248,9 @@ public class EnrollmentDAOImpl implements EnrollmentDAO {
|
|||||||
DeviceManagementDAOUtil.cleanupResources(stmt, null);
|
DeviceManagementDAOUtil.cleanupResources(stmt, null);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@ -20,6 +20,7 @@ import org.wso2.carbon.device.mgt.common.configuration.mgt.PlatformConfiguration
|
|||||||
import org.wso2.carbon.device.mgt.common.license.mgt.License;
|
import org.wso2.carbon.device.mgt.common.license.mgt.License;
|
||||||
import org.wso2.carbon.device.mgt.common.license.mgt.LicenseManagementException;
|
import org.wso2.carbon.device.mgt.common.license.mgt.LicenseManagementException;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class TestDeviceManager implements DeviceManager {
|
public class TestDeviceManager implements DeviceManager {
|
||||||
@ -80,7 +81,15 @@ public class TestDeviceManager implements DeviceManager {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Device getDevice(DeviceIdentifier deviceId) throws DeviceManagementException {
|
public Device getDevice(DeviceIdentifier deviceId) throws DeviceManagementException {
|
||||||
return null;
|
List<Feature> features = new ArrayList<Feature>();
|
||||||
|
List<Device.Property> properties = new ArrayList<Device.Property>();
|
||||||
|
Device.Property prop1 = new Device.Property();
|
||||||
|
prop1.setName("Prop1");
|
||||||
|
prop1.setValue("Prop1-value");
|
||||||
|
properties.add(prop1);
|
||||||
|
Device device = new Device(deviceId.getType()+"-"+deviceId.getId(), deviceId.getType(),
|
||||||
|
"This is a test Device", deviceId.getId(), null, features, properties);
|
||||||
|
return device;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -92,7 +101,7 @@ public class TestDeviceManager implements DeviceManager {
|
|||||||
@Override
|
@Override
|
||||||
public boolean setOwnership(DeviceIdentifier deviceId, String ownershipType)
|
public boolean setOwnership(DeviceIdentifier deviceId, String ownershipType)
|
||||||
throws DeviceManagementException {
|
throws DeviceManagementException {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@ -17,6 +17,7 @@ package org.wso2.carbon.device.mgt.core.service;
|
|||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.mockito.Mockito;
|
||||||
import org.testng.Assert;
|
import org.testng.Assert;
|
||||||
import org.testng.annotations.BeforeClass;
|
import org.testng.annotations.BeforeClass;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
@ -45,10 +46,12 @@ import org.wso2.carbon.registry.core.exceptions.RegistryException;
|
|||||||
import org.wso2.carbon.registry.core.internal.RegistryDataHolder;
|
import org.wso2.carbon.registry.core.internal.RegistryDataHolder;
|
||||||
import org.wso2.carbon.registry.core.jdbc.realm.InMemoryRealmService;
|
import org.wso2.carbon.registry.core.jdbc.realm.InMemoryRealmService;
|
||||||
import org.wso2.carbon.registry.core.service.RegistryService;
|
import org.wso2.carbon.registry.core.service.RegistryService;
|
||||||
|
import org.wso2.carbon.user.api.UserStoreException;
|
||||||
import org.wso2.carbon.user.core.service.RealmService;
|
import org.wso2.carbon.user.core.service.RealmService;
|
||||||
import org.wso2.carbon.utils.multitenancy.MultitenantConstants;
|
import org.wso2.carbon.utils.multitenancy.MultitenantConstants;
|
||||||
|
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
import java.lang.reflect.Field;
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
@ -98,6 +101,20 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
Assert.assertTrue(deviceTypes.size() > 0);
|
Assert.assertTrue(deviceTypes.size() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetAvailableDeviceType() throws DeviceManagementException {
|
||||||
|
DeviceType deviceType = deviceMgtService.getDeviceType(DEVICE_TYPE);
|
||||||
|
Assert.assertTrue(deviceType.getName().equalsIgnoreCase(DEVICE_TYPE));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void addLicense() throws DeviceManagementException {
|
||||||
|
License license = new License();
|
||||||
|
license.setLanguage("ENG");
|
||||||
|
license.setName("RANDON_DEVICE_LICENSE");
|
||||||
|
deviceMgtService.addLicense(DEVICE_TYPE, license);
|
||||||
|
}
|
||||||
|
|
||||||
@Test(expectedExceptions = DeviceManagementException.class)
|
@Test(expectedExceptions = DeviceManagementException.class)
|
||||||
public void testNullDeviceEnrollment() throws DeviceManagementException {
|
public void testNullDeviceEnrollment() throws DeviceManagementException {
|
||||||
deviceMgtService.enrollDevice(null);
|
deviceMgtService.enrollDevice(null);
|
||||||
@ -176,14 +193,45 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
public void testDisenrollment() throws DeviceManagementException {
|
public void testDisenrollment() throws DeviceManagementException {
|
||||||
Device device = TestDataHolder.generateDummyDeviceData(new DeviceIdentifier(DEVICE_ID, DEVICE_TYPE));
|
Device device = TestDataHolder.generateDummyDeviceData(new DeviceIdentifier(DEVICE_ID, DEVICE_TYPE));
|
||||||
boolean disenrollmentStatus = deviceMgtService.disenrollDevice(new DeviceIdentifier
|
boolean disenrollmentStatus = deviceMgtService.disenrollDevice(new DeviceIdentifier
|
||||||
(device
|
(device.getDeviceIdentifier(), device.getType()));
|
||||||
.getDeviceIdentifier(),
|
|
||||||
device.getType()));
|
|
||||||
log.info(disenrollmentStatus);
|
log.info(disenrollmentStatus);
|
||||||
|
|
||||||
Assert.assertTrue(disenrollmentStatus);
|
Assert.assertTrue(disenrollmentStatus);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testReEnrollmentofSameDeviceWithOtherUser"}, expectedExceptions =
|
||||||
|
DeviceManagementException.class)
|
||||||
|
public void testDisenrollmentWithNullDeviceID() throws DeviceManagementException {
|
||||||
|
deviceMgtService.disenrollDevice(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testReEnrollmentofSameDeviceWithOtherUser"})
|
||||||
|
public void testDisenrollmentWithNonExistentDT() throws DeviceManagementException {
|
||||||
|
Device device = TestDataHolder.generateDummyDeviceData(new DeviceIdentifier(DEVICE_ID,
|
||||||
|
"NON_EXISTENT_DT"));
|
||||||
|
boolean result = deviceMgtService.disenrollDevice(new DeviceIdentifier(
|
||||||
|
device.getDeviceIdentifier(), device.getType()));
|
||||||
|
Assert.assertTrue(!result);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testReEnrollmentofSameDeviceWithOtherUser"})
|
||||||
|
public void testDisenrollmentWithNonExistentDevice() throws DeviceManagementException {
|
||||||
|
Device device = TestDataHolder.generateDummyDeviceData(new DeviceIdentifier(ALTERNATE_DEVICE_ID,
|
||||||
|
DEVICE_TYPE));
|
||||||
|
boolean result = deviceMgtService.disenrollDevice(new DeviceIdentifier(
|
||||||
|
device.getDeviceIdentifier(), device.getType()));
|
||||||
|
Assert.assertTrue(!result);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testDisenrollment"})
|
||||||
|
public void testDisenrollAlreadyDisEnrolledDevice() throws DeviceManagementException {
|
||||||
|
Device device = TestDataHolder.generateDummyDeviceData(new DeviceIdentifier(DEVICE_ID,
|
||||||
|
DEVICE_TYPE));
|
||||||
|
boolean result = deviceMgtService.disenrollDevice(new DeviceIdentifier(
|
||||||
|
device.getDeviceIdentifier(), device.getType()));
|
||||||
|
Assert.assertTrue(result);
|
||||||
|
}
|
||||||
|
|
||||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
public void testGetDeviceCount() throws DeviceManagementException {
|
public void testGetDeviceCount() throws DeviceManagementException {
|
||||||
int count = deviceMgtService.getDeviceCount();
|
int count = deviceMgtService.getDeviceCount();
|
||||||
@ -259,6 +307,12 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
Assert.assertTrue(device.getDeviceInfo() != null);
|
Assert.assertTrue(device.getDeviceInfo() != null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
|
public void testGetDeviceTypeWithProps() throws DeviceManagementException {
|
||||||
|
Device device = deviceMgtService.getDeviceWithTypeProperties(new DeviceIdentifier(DEVICE_ID, DEVICE_TYPE));
|
||||||
|
Assert.assertTrue(!device.getProperties().isEmpty());
|
||||||
|
}
|
||||||
|
|
||||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
public void testGetDeviceWithOutInfo() throws DeviceManagementException {
|
public void testGetDeviceWithOutInfo() throws DeviceManagementException {
|
||||||
Device device = deviceMgtService.getDevice(new DeviceIdentifier(DEVICE_ID, DEVICE_TYPE)
|
Device device = deviceMgtService.getDevice(new DeviceIdentifier(DEVICE_ID, DEVICE_TYPE)
|
||||||
@ -272,6 +326,35 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
Assert.assertTrue(devices.size() > 0);
|
Assert.assertTrue(devices.size() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"}, expectedExceptions =
|
||||||
|
DeviceManagementException.class)
|
||||||
|
public void testGetAllDevicesOfRoleFailureFlow() throws DeviceManagementException, UserStoreException, NoSuchFieldException, IllegalAccessException {
|
||||||
|
int tenantID = -1234;
|
||||||
|
RealmService mockRealmService = Mockito.mock(RealmService.class, Mockito.CALLS_REAL_METHODS);
|
||||||
|
|
||||||
|
Mockito.doThrow(new UserStoreException("Mocked Exception when obtaining Tenant Realm"))
|
||||||
|
.when(mockRealmService).getTenantUserRealm(tenantID);
|
||||||
|
RealmService currentRealm = DeviceManagementDataHolder.getInstance().getRealmService();
|
||||||
|
DeviceManagementDataHolder.getInstance().setRealmService(mockRealmService);
|
||||||
|
try {
|
||||||
|
deviceMgtService.getAllDevicesOfRole("admin");
|
||||||
|
} finally {
|
||||||
|
DeviceManagementDataHolder.getInstance().setRealmService(currentRealm);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
|
public void testGetAllDevicesOfRoleWithNonExistentRole() throws DeviceManagementException {
|
||||||
|
List<Device> devices = deviceMgtService.getAllDevicesOfRole("non-existent-role");
|
||||||
|
Assert.assertTrue(devices.size() == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"}, expectedExceptions =
|
||||||
|
DeviceManagementException.class)
|
||||||
|
public void testGetAllDevicesOfRoleWithNullArgs() throws DeviceManagementException {
|
||||||
|
deviceMgtService.getAllDevicesOfRole(null);
|
||||||
|
}
|
||||||
|
|
||||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
public void testDeviceByOwner() throws DeviceManagementException {
|
public void testDeviceByOwner() throws DeviceManagementException {
|
||||||
Device device = deviceMgtService.getDevice(new DeviceIdentifier(DEVICE_ID,
|
Device device = deviceMgtService.getDevice(new DeviceIdentifier(DEVICE_ID,
|
||||||
@ -279,11 +362,47 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
Assert.assertTrue(device != null);
|
Assert.assertTrue(device != null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
|
public void testDeviceByOwnerAndNonExistentDeviceID() throws DeviceManagementException {
|
||||||
|
String nonExistentDeviceID = "4455";
|
||||||
|
Device device = deviceMgtService.getDevice(new DeviceIdentifier(nonExistentDeviceID,
|
||||||
|
DEVICE_TYPE), "admin", true);
|
||||||
|
Assert.assertTrue(device == null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"}, expectedExceptions =
|
||||||
|
DeviceManagementException.class)
|
||||||
|
public void testDeviceByOwnerWithNullDeviceID() throws DeviceManagementException {
|
||||||
|
deviceMgtService.getDevice(null, "admin", true);
|
||||||
|
}
|
||||||
|
|
||||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
public void testDeviceByDate() throws DeviceManagementException, TransactionManagementException, DeviceDetailsMgtDAOException {
|
public void testDeviceByDate() throws DeviceManagementException, TransactionManagementException, DeviceDetailsMgtDAOException {
|
||||||
Device initialDevice = deviceMgtService.getDevice(new DeviceIdentifier(DEVICE_ID,
|
Device initialDevice = deviceMgtService.getDevice(new DeviceIdentifier(DEVICE_ID,
|
||||||
DEVICE_TYPE));
|
DEVICE_TYPE));
|
||||||
|
|
||||||
|
addDeviceInformation(initialDevice);
|
||||||
|
|
||||||
|
Device device = deviceMgtService.getDevice(new DeviceIdentifier(DEVICE_ID,
|
||||||
|
DEVICE_TYPE), yesterday());
|
||||||
|
Assert.assertTrue(device != null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
|
public void testDeviceByDateWithNonExistentDevice() throws DeviceManagementException,
|
||||||
|
TransactionManagementException, DeviceDetailsMgtDAOException {
|
||||||
|
Device device = deviceMgtService.getDevice(new DeviceIdentifier(ALTERNATE_DEVICE_ID,
|
||||||
|
DEVICE_TYPE), yesterday());
|
||||||
|
Assert.assertTrue(device == null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"}, expectedExceptions =
|
||||||
|
DeviceManagementException.class)
|
||||||
|
public void testDeviceByDateWithNullDeviceID() throws DeviceManagementException {
|
||||||
|
deviceMgtService.getDevice(null, yesterday());
|
||||||
|
}
|
||||||
|
|
||||||
|
private void addDeviceInformation(Device initialDevice) throws TransactionManagementException, DeviceDetailsMgtDAOException {
|
||||||
DeviceManagementDAOFactory.beginTransaction();
|
DeviceManagementDAOFactory.beginTransaction();
|
||||||
|
|
||||||
//Device details table will be reffered when looking for last updated time
|
//Device details table will be reffered when looking for last updated time
|
||||||
@ -292,10 +411,6 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
.generateDummyDeviceInfo());
|
.generateDummyDeviceInfo());
|
||||||
|
|
||||||
DeviceManagementDAOFactory.closeConnection();
|
DeviceManagementDAOFactory.closeConnection();
|
||||||
|
|
||||||
Device device = deviceMgtService.getDevice(new DeviceIdentifier(DEVICE_ID,
|
|
||||||
DEVICE_TYPE), yesterday());
|
|
||||||
Assert.assertTrue(device != null);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(dependsOnMethods = {"testDeviceByDate"})
|
@Test(dependsOnMethods = {"testDeviceByDate"})
|
||||||
@ -320,10 +435,18 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
public void testGetAllDevicesPaginated() throws DeviceManagementException {
|
public void testGetAllDevicesPaginated() throws DeviceManagementException {
|
||||||
PaginationRequest request = new PaginationRequest(0, 100);
|
PaginationRequest request = new PaginationRequest(0, 100);
|
||||||
|
request.setOwnerRole("admin");
|
||||||
PaginationResult result = deviceMgtService.getAllDevices(request);
|
PaginationResult result = deviceMgtService.getAllDevices(request);
|
||||||
Assert.assertTrue(result.getRecordsTotal() > 0);
|
Assert.assertTrue(result.getRecordsTotal() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"}, expectedExceptions =
|
||||||
|
DeviceManagementException.class)
|
||||||
|
public void testGetAllDevicesWithNullRequest() throws DeviceManagementException {
|
||||||
|
PaginationRequest request = null;
|
||||||
|
deviceMgtService.getAllDevices(request);
|
||||||
|
}
|
||||||
|
|
||||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
public void testGetAllDevicesByName() throws DeviceManagementException {
|
public void testGetAllDevicesByName() throws DeviceManagementException {
|
||||||
PaginationRequest request = new PaginationRequest(0, 100);
|
PaginationRequest request = new PaginationRequest(0, 100);
|
||||||
@ -392,8 +515,15 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
Assert.assertTrue(false);
|
Assert.assertTrue(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"}, expectedExceptions =
|
||||||
|
DeviceManagementException.class)
|
||||||
public void testGetDeviesOfUser() throws DeviceManagementException {
|
public void testGetDeviesOfUser() throws DeviceManagementException {
|
||||||
|
String username = null;
|
||||||
|
deviceMgtService.getDevicesOfUser(username);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
|
public void testGetDeviesOfUserWhileUserNull() throws DeviceManagementException {
|
||||||
List<Device> devices = deviceMgtService.getDevicesOfUser("admin");
|
List<Device> devices = deviceMgtService.getDevicesOfUser("admin");
|
||||||
Assert.assertTrue(!devices.isEmpty());
|
Assert.assertTrue(!devices.isEmpty());
|
||||||
}
|
}
|
||||||
@ -419,6 +549,13 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
Assert.assertTrue(result.getRecordsTotal() > 0);
|
Assert.assertTrue(result.getRecordsTotal() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"}, expectedExceptions =
|
||||||
|
DeviceManagementException.class)
|
||||||
|
public void testGetDeviesOfUserWhileNullOwnerPaginated() throws DeviceManagementException {
|
||||||
|
PaginationRequest request = null;
|
||||||
|
deviceMgtService.getDevicesOfUser(request, true);
|
||||||
|
}
|
||||||
|
|
||||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
public void testGetDeviesByOwnership() throws DeviceManagementException {
|
public void testGetDeviesByOwnership() throws DeviceManagementException {
|
||||||
PaginationRequest request = new PaginationRequest(0, 100);
|
PaginationRequest request = new PaginationRequest(0, 100);
|
||||||
@ -427,6 +564,26 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
Assert.assertTrue(result.getRecordsTotal() > 0);
|
Assert.assertTrue(result.getRecordsTotal() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
|
public void testSetOwnership() throws DeviceManagementException {
|
||||||
|
boolean status = deviceMgtService.setOwnership(new DeviceIdentifier(DEVICE_ID,
|
||||||
|
DEVICE_TYPE), EnrolmentInfo.OwnerShip.COPE.toString());
|
||||||
|
Assert.assertTrue(status);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
|
public void testSetOwnershipNonExistentDT() throws DeviceManagementException {
|
||||||
|
boolean status = deviceMgtService.setOwnership(new DeviceIdentifier(DEVICE_ID,
|
||||||
|
"non-existent-dt"), EnrolmentInfo.OwnerShip.COPE.toString());
|
||||||
|
Assert.assertFalse(status);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"}, expectedExceptions =
|
||||||
|
DeviceManagementException.class)
|
||||||
|
public void testSetOwnershipOfNullDevice() throws DeviceManagementException {
|
||||||
|
deviceMgtService.setOwnership(null, EnrolmentInfo.OwnerShip.COPE.toString());
|
||||||
|
}
|
||||||
|
|
||||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
public void testGetDeviesByStatus() throws DeviceManagementException {
|
public void testGetDeviesByStatus() throws DeviceManagementException {
|
||||||
PaginationRequest request = new PaginationRequest(0, 100);
|
PaginationRequest request = new PaginationRequest(0, 100);
|
||||||
@ -435,6 +592,25 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
Assert.assertTrue(result.getRecordsTotal() > 0);
|
Assert.assertTrue(result.getRecordsTotal() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testReEnrollmentofSameDeviceUnderSameUser"})
|
||||||
|
public void testUpdateDevicesStatus() throws DeviceManagementException {
|
||||||
|
boolean status = deviceMgtService.setStatus("user1", EnrolmentInfo.Status.REMOVED);
|
||||||
|
Assert.assertTrue(status);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testReEnrollmentofSameDeviceUnderSameUser"})
|
||||||
|
public void testUpdateDevicesStatusWithDeviceID() throws DeviceManagementException {
|
||||||
|
boolean status = deviceMgtService.setStatus(new DeviceIdentifier(DEVICE_ID, DEVICE_TYPE),"user1",
|
||||||
|
EnrolmentInfo.Status.ACTIVE);
|
||||||
|
Assert.assertTrue(status);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dependsOnMethods = {"testReEnrollmentofSameDeviceUnderSameUser"})
|
||||||
|
public void testUpdateDevicesStatusOfNonExistingUser() throws DeviceManagementException {
|
||||||
|
boolean status = deviceMgtService.setStatus("random-user", EnrolmentInfo.Status.REMOVED);
|
||||||
|
Assert.assertFalse(status);
|
||||||
|
}
|
||||||
|
|
||||||
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
@Test(dependsOnMethods = {"testSuccessfulDeviceEnrollment"})
|
||||||
public void testGetDeviesOfUserAndDeviceType() throws DeviceManagementException {
|
public void testGetDeviesOfUserAndDeviceType() throws DeviceManagementException {
|
||||||
List<Device> devices = deviceMgtService.getDevicesOfUser("admin", DEVICE_TYPE, true);
|
List<Device> devices = deviceMgtService.getDevicesOfUser("admin", DEVICE_TYPE, true);
|
||||||
@ -451,7 +627,6 @@ public class DeviceManagementProviderServiceTest extends BaseDeviceManagementTes
|
|||||||
props.setProperty("password", "!@#$$$%");
|
props.setProperty("password", "!@#$$$%");
|
||||||
|
|
||||||
EmailMetaInfo metaInfo = new EmailMetaInfo(recipient, props);
|
EmailMetaInfo metaInfo = new EmailMetaInfo(recipient, props);
|
||||||
|
|
||||||
deviceMgtService.sendRegistrationEmail(metaInfo);
|
deviceMgtService.sendRegistrationEmail(metaInfo);
|
||||||
Assert.assertTrue(true);
|
Assert.assertTrue(true);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user