|
|
@ -63,7 +63,6 @@ import java.text.SimpleDateFormat;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.TimeZone;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* This is the testcase which covers the methods from {@link OperationManager}
|
|
|
|
* This is the testcase which covers the methods from {@link OperationManager}
|
|
|
@ -84,6 +83,7 @@ public class OperationManagementTests {
|
|
|
|
private List<DeviceIdentifier> deviceIds = new ArrayList<>();
|
|
|
|
private List<DeviceIdentifier> deviceIds = new ArrayList<>();
|
|
|
|
private OperationManager operationMgtService;
|
|
|
|
private OperationManager operationMgtService;
|
|
|
|
private Activity commandActivity;
|
|
|
|
private Activity commandActivity;
|
|
|
|
|
|
|
|
private long commandActivityBeforeUpdatedTimestamp;
|
|
|
|
|
|
|
|
|
|
|
|
@BeforeClass
|
|
|
|
@BeforeClass
|
|
|
|
public void init() throws Exception {
|
|
|
|
public void init() throws Exception {
|
|
|
@ -149,15 +149,19 @@ public class OperationManagementTests {
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
public void addNonAdminUserDevicesCommandOperation() throws DeviceManagementException, OperationManagementException,
|
|
|
|
public void addNonAdminUserDevicesCommandOperation() throws DeviceManagementException, OperationManagementException,
|
|
|
|
InvalidDeviceException {
|
|
|
|
InvalidDeviceException {
|
|
|
|
PrivilegedCarbonContext.startTenantFlow();
|
|
|
|
startTenantFlowAsNonAdmin();
|
|
|
|
PrivilegedCarbonContext.getThreadLocalCarbonContext().setTenantId(MultitenantConstants.SUPER_TENANT_ID, true);
|
|
|
|
|
|
|
|
PrivilegedCarbonContext.getThreadLocalCarbonContext().setUsername(NON_ADMIN_USER);
|
|
|
|
|
|
|
|
Activity activity = this.operationMgtService.addOperation(getOperation(new CommandOperation(), Operation.Type.COMMAND, COMMAND_OPERATON_CODE),
|
|
|
|
Activity activity = this.operationMgtService.addOperation(getOperation(new CommandOperation(), Operation.Type.COMMAND, COMMAND_OPERATON_CODE),
|
|
|
|
deviceIds);
|
|
|
|
deviceIds);
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
validateOperationResponse(activity, ActivityStatus.Status.UNAUTHORIZED);
|
|
|
|
validateOperationResponse(activity, ActivityStatus.Status.UNAUTHORIZED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void startTenantFlowAsNonAdmin() {
|
|
|
|
|
|
|
|
PrivilegedCarbonContext.startTenantFlow();
|
|
|
|
|
|
|
|
PrivilegedCarbonContext.getThreadLocalCarbonContext().setTenantId(MultitenantConstants.SUPER_TENANT_ID, true);
|
|
|
|
|
|
|
|
PrivilegedCarbonContext.getThreadLocalCarbonContext().setUsername(NON_ADMIN_USER);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "addCommandOperation")
|
|
|
|
@Test(dependsOnMethods = "addCommandOperation")
|
|
|
|
public void addPolicyOperation() throws DeviceManagementException, OperationManagementException, InvalidDeviceException {
|
|
|
|
public void addPolicyOperation() throws DeviceManagementException, OperationManagementException, InvalidDeviceException {
|
|
|
|
Activity activity = this.operationMgtService.addOperation(getOperation(new PolicyOperation(), Operation.Type.POLICY, POLICY_OPERATION_CODE),
|
|
|
|
Activity activity = this.operationMgtService.addOperation(getOperation(new PolicyOperation(), Operation.Type.POLICY, POLICY_OPERATION_CODE),
|
|
|
@ -203,6 +207,18 @@ public class OperationManagementTests {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "addProfileOperation", expectedExceptions = OperationManagementException.class)
|
|
|
|
|
|
|
|
public void getOperationsAsNonAdmin() throws DeviceManagementException, OperationManagementException, InvalidDeviceException {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
startTenantFlowAsNonAdmin();
|
|
|
|
|
|
|
|
for (DeviceIdentifier deviceIdentifier : deviceIds) {
|
|
|
|
|
|
|
|
this.operationMgtService.getOperations(deviceIdentifier);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "getOperations")
|
|
|
|
@Test(dependsOnMethods = "getOperations")
|
|
|
|
public void getPendingOperations() throws DeviceManagementException, OperationManagementException, InvalidDeviceException {
|
|
|
|
public void getPendingOperations() throws DeviceManagementException, OperationManagementException, InvalidDeviceException {
|
|
|
|
for (DeviceIdentifier deviceIdentifier : deviceIds) {
|
|
|
|
for (DeviceIdentifier deviceIdentifier : deviceIds) {
|
|
|
@ -211,6 +227,18 @@ public class OperationManagementTests {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "getOperations", expectedExceptions = OperationManagementException.class)
|
|
|
|
|
|
|
|
public void getPendingOperationsAsNonAdmin() throws DeviceManagementException, OperationManagementException, InvalidDeviceException {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
startTenantFlowAsNonAdmin();
|
|
|
|
|
|
|
|
for (DeviceIdentifier deviceIdentifier : deviceIds) {
|
|
|
|
|
|
|
|
this.operationMgtService.getPendingOperations(deviceIdentifier);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "getPendingOperations")
|
|
|
|
@Test(dependsOnMethods = "getPendingOperations")
|
|
|
|
public void getPaginatedRequestAsAdmin() throws OperationManagementException {
|
|
|
|
public void getPaginatedRequestAsAdmin() throws OperationManagementException {
|
|
|
|
PrivilegedCarbonContext.startTenantFlow();
|
|
|
|
PrivilegedCarbonContext.startTenantFlow();
|
|
|
@ -228,29 +256,32 @@ public class OperationManagementTests {
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "getPendingOperations")
|
|
|
|
@Test(dependsOnMethods = "getPendingOperations", expectedExceptions = OperationManagementException.class)
|
|
|
|
public void getPaginatedRequestAsNonAdmin() throws OperationManagementException {
|
|
|
|
public void getPaginatedRequestAsNonAdmin() throws OperationManagementException {
|
|
|
|
PrivilegedCarbonContext.startTenantFlow();
|
|
|
|
try {
|
|
|
|
PrivilegedCarbonContext.getThreadLocalCarbonContext().setTenantId(MultitenantConstants.SUPER_TENANT_ID, true);
|
|
|
|
startTenantFlowAsNonAdmin();
|
|
|
|
PrivilegedCarbonContext.getThreadLocalCarbonContext().setUsername(NON_ADMIN_USER);
|
|
|
|
PaginationRequest request = new PaginationRequest(1, 2);
|
|
|
|
PaginationRequest request = new PaginationRequest(1, 2);
|
|
|
|
request.setDeviceType(DEVICE_TYPE);
|
|
|
|
request.setDeviceType(DEVICE_TYPE);
|
|
|
|
request.setOwner(ADMIN_USER);
|
|
|
|
request.setOwner(ADMIN_USER);
|
|
|
|
for (DeviceIdentifier deviceIdentifier : deviceIds) {
|
|
|
|
for (DeviceIdentifier deviceIdentifier : deviceIds) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
this.operationMgtService.getOperations(deviceIdentifier, request);
|
|
|
|
this.operationMgtService.getOperations(deviceIdentifier, request);
|
|
|
|
} catch (OperationManagementException ex) {
|
|
|
|
} catch (OperationManagementException ex) {
|
|
|
|
if (ex.getMessage() == null) {
|
|
|
|
if (ex.getMessage() == null) {
|
|
|
|
Assert.assertTrue(ex.getMessage().contains("User '" + NON_ADMIN_USER + "' is not authorized"));
|
|
|
|
Assert.assertTrue(ex.getMessage().contains("User '" + NON_ADMIN_USER + "' is not authorized"));
|
|
|
|
}
|
|
|
|
|
|
|
|
throw ex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "getPaginatedRequestAsAdmin")
|
|
|
|
@Test(dependsOnMethods = "getPaginatedRequestAsAdmin")
|
|
|
|
public void updateOperation() throws OperationManagementException {
|
|
|
|
public void updateOperation() throws OperationManagementException {
|
|
|
|
//This is required to introduce a delay for the update operation of the device.
|
|
|
|
//This is required to introduce a delay for the update operation of the device.
|
|
|
|
|
|
|
|
this.commandActivityBeforeUpdatedTimestamp = System.currentTimeMillis();
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
Thread.sleep(2000);
|
|
|
|
Thread.sleep(2000);
|
|
|
|
} catch (InterruptedException ignored) {
|
|
|
|
} catch (InterruptedException ignored) {
|
|
|
@ -266,6 +297,30 @@ public class OperationManagementTests {
|
|
|
|
Assert.assertEquals(pendingOperations.size(), 3);
|
|
|
|
Assert.assertEquals(pendingOperations.size(), 3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "updateOperation", expectedExceptions = OperationManagementException.class)
|
|
|
|
|
|
|
|
public void updateOperationAsNonAdmin() throws OperationManagementException {
|
|
|
|
|
|
|
|
//This is required to introduce a delay for the update operation of the device.
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
Thread.sleep(2000);
|
|
|
|
|
|
|
|
} catch (InterruptedException ignored) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
DeviceIdentifier deviceIdentifier = this.deviceIds.get(0);
|
|
|
|
|
|
|
|
List operations = this.operationMgtService.getPendingOperations(deviceIdentifier);
|
|
|
|
|
|
|
|
Assert.assertTrue(operations != null && operations.size() == 3);
|
|
|
|
|
|
|
|
startTenantFlowAsNonAdmin();
|
|
|
|
|
|
|
|
Operation operation = (Operation) operations.get(0);
|
|
|
|
|
|
|
|
operation.setStatus(Operation.Status.COMPLETED);
|
|
|
|
|
|
|
|
operation.setOperationResponse("The operation is successfully completed, and updated by non admin!");
|
|
|
|
|
|
|
|
this.operationMgtService.updateOperation(deviceIdentifier, operation);
|
|
|
|
|
|
|
|
List pendingOperations = this.operationMgtService.getPendingOperations(deviceIdentifier);
|
|
|
|
|
|
|
|
Assert.assertEquals(pendingOperations.size(), 3);
|
|
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "updateOperation")
|
|
|
|
@Test(dependsOnMethods = "updateOperation")
|
|
|
|
public void getNextPendingOperation() throws OperationManagementException {
|
|
|
|
public void getNextPendingOperation() throws OperationManagementException {
|
|
|
|
DeviceIdentifier deviceIdentifier = this.deviceIds.get(0);
|
|
|
|
DeviceIdentifier deviceIdentifier = this.deviceIds.get(0);
|
|
|
@ -284,6 +339,20 @@ public class OperationManagementTests {
|
|
|
|
Assert.assertTrue(operation.getType().equals(Operation.Type.COMMAND));
|
|
|
|
Assert.assertTrue(operation.getType().equals(Operation.Type.COMMAND));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "getNextPendingOperation", expectedExceptions = OperationManagementException.class)
|
|
|
|
|
|
|
|
public void getOperationByDeviceAndOperationIdNonAdmin() throws OperationManagementException {
|
|
|
|
|
|
|
|
startTenantFlowAsNonAdmin();
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
DeviceIdentifier deviceIdentifier = this.deviceIds.get(0);
|
|
|
|
|
|
|
|
String operationId = this.commandActivity.getActivityId().
|
|
|
|
|
|
|
|
replace(DeviceManagementConstants.OperationAttributes.ACTIVITY, "");
|
|
|
|
|
|
|
|
this.operationMgtService.getOperationByDeviceAndOperationId(deviceIdentifier,
|
|
|
|
|
|
|
|
Integer.parseInt(operationId));
|
|
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "getOperationByDeviceAndOperationId")
|
|
|
|
@Test(dependsOnMethods = "getOperationByDeviceAndOperationId")
|
|
|
|
public void getOperationsByDeviceAndStatus() throws OperationManagementException, DeviceManagementException {
|
|
|
|
public void getOperationsByDeviceAndStatus() throws OperationManagementException, DeviceManagementException {
|
|
|
|
DeviceIdentifier deviceIdentifier = this.deviceIds.get(0);
|
|
|
|
DeviceIdentifier deviceIdentifier = this.deviceIds.get(0);
|
|
|
@ -291,6 +360,17 @@ public class OperationManagementTests {
|
|
|
|
Assert.assertEquals(operation.size(), 3);
|
|
|
|
Assert.assertEquals(operation.size(), 3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "getOperationByDeviceAndOperationId", expectedExceptions = OperationManagementException.class)
|
|
|
|
|
|
|
|
public void getOperationsByDeviceAndStatusByNonAdmin() throws OperationManagementException, DeviceManagementException {
|
|
|
|
|
|
|
|
startTenantFlowAsNonAdmin();
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
DeviceIdentifier deviceIdentifier = this.deviceIds.get(0);
|
|
|
|
|
|
|
|
this.operationMgtService.getOperationsByDeviceAndStatus(deviceIdentifier, Operation.Status.PENDING);
|
|
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "getOperationsByDeviceAndStatus")
|
|
|
|
@Test(dependsOnMethods = "getOperationsByDeviceAndStatus")
|
|
|
|
public void getOperation() throws OperationManagementException, DeviceManagementException {
|
|
|
|
public void getOperation() throws OperationManagementException, DeviceManagementException {
|
|
|
|
String operationId = this.commandActivity.getActivityId().
|
|
|
|
String operationId = this.commandActivity.getActivityId().
|
|
|
@ -319,31 +399,21 @@ public class OperationManagementTests {
|
|
|
|
Assert.assertEquals(activity.getActivityStatus().get(0).getStatus(), ActivityStatus.Status.COMPLETED);
|
|
|
|
Assert.assertEquals(activity.getActivityStatus().get(0).getStatus(), ActivityStatus.Status.COMPLETED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "updateOperation")
|
|
|
|
@Test(dependsOnMethods = "getOperationActivity", expectedExceptions = OperationManagementException.class)
|
|
|
|
public void getOperationUpdatedAfterWithLimitAndOffet() throws OperationManagementException, ParseException {
|
|
|
|
public void getOperationByActivityIdAndDeviceAsNonAdmin() throws OperationManagementException {
|
|
|
|
String timestamp = this.commandActivity.getCreatedTimeStamp();
|
|
|
|
startTenantFlowAsNonAdmin();
|
|
|
|
SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM dd hh:mm:ss Z yyyy");
|
|
|
|
try {
|
|
|
|
dateFormat.setTimeZone(TimeZone.getTimeZone("IST"));
|
|
|
|
this.operationMgtService.
|
|
|
|
Date date = dateFormat.parse(timestamp);
|
|
|
|
getOperationByActivityIdAndDevice(this.commandActivity.getActivityId(), this.deviceIds.get(0));
|
|
|
|
List<Activity> operations = this.operationMgtService.getActivitiesUpdatedAfter(date.getTime() / 1000, 10, 0);
|
|
|
|
} finally {
|
|
|
|
Assert.assertTrue(operations != null && operations.size() == 1,
|
|
|
|
PrivilegedCarbonContext.endTenantFlow();
|
|
|
|
"The operations updated after the created should be 1");
|
|
|
|
}
|
|
|
|
Activity operation = operations.get(0);
|
|
|
|
|
|
|
|
Assert.assertTrue(operation.getActivityStatus() != null && operation.getActivityStatus().size() == 1,
|
|
|
|
|
|
|
|
"The operation should be having the activity status of atleast one device");
|
|
|
|
|
|
|
|
Assert.assertEquals(operation.getActivityStatus().get(0).getDeviceIdentifier().getId(),
|
|
|
|
|
|
|
|
deviceIds.get(0).getId());
|
|
|
|
|
|
|
|
Assert.assertEquals(operation.getActivityStatus().get(0).getDeviceIdentifier().getType(),
|
|
|
|
|
|
|
|
deviceIds.get(0).getType());
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "updateOperation")
|
|
|
|
@Test(dependsOnMethods = "updateOperation")
|
|
|
|
public void getOperationUpdatedAfter() throws OperationManagementException, ParseException {
|
|
|
|
public void getOperationUpdatedAfterWithLimitAndOffset() throws OperationManagementException, ParseException {
|
|
|
|
String timestamp = this.commandActivity.getCreatedTimeStamp();
|
|
|
|
List<Activity> operations = this.operationMgtService.getActivitiesUpdatedAfter
|
|
|
|
SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM dd hh:mm:ss Z yyyy");
|
|
|
|
(this.commandActivityBeforeUpdatedTimestamp / 1000, 10, 0);
|
|
|
|
dateFormat.setTimeZone(TimeZone.getTimeZone("IST"));
|
|
|
|
|
|
|
|
Date date = dateFormat.parse(timestamp);
|
|
|
|
|
|
|
|
List<Activity> operations = this.operationMgtService.getActivitiesUpdatedAfter(date.getTime() / 1000);
|
|
|
|
|
|
|
|
Assert.assertTrue(operations != null && operations.size() == 1,
|
|
|
|
Assert.assertTrue(operations != null && operations.size() == 1,
|
|
|
|
"The operations updated after the created should be 1");
|
|
|
|
"The operations updated after the created should be 1");
|
|
|
|
Activity operation = operations.get(0);
|
|
|
|
Activity operation = operations.get(0);
|
|
|
@ -355,13 +425,10 @@ public class OperationManagementTests {
|
|
|
|
deviceIds.get(0).getType());
|
|
|
|
deviceIds.get(0).getType());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(dependsOnMethods = "getOperationUpdatedAfter")
|
|
|
|
@Test(dependsOnMethods = "getOperationUpdatedAfterWithLimitAndOffset")
|
|
|
|
public void getActivityCountUpdatedAfter() throws OperationManagementException, ParseException {
|
|
|
|
public void getActivityCountUpdatedAfter() throws OperationManagementException, ParseException {
|
|
|
|
String timestamp = this.commandActivity.getCreatedTimeStamp();
|
|
|
|
int activityCount = this.operationMgtService.getActivityCountUpdatedAfter
|
|
|
|
SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM dd hh:mm:ss Z yyyy");
|
|
|
|
(this.commandActivityBeforeUpdatedTimestamp / 1000);
|
|
|
|
dateFormat.setTimeZone(TimeZone.getTimeZone("IST"));
|
|
|
|
|
|
|
|
Date date = dateFormat.parse(timestamp);
|
|
|
|
|
|
|
|
int activityCount = this.operationMgtService.getActivityCountUpdatedAfter(date.getTime() / 1000);
|
|
|
|
|
|
|
|
Assert.assertTrue(activityCount == 1,
|
|
|
|
Assert.assertTrue(activityCount == 1,
|
|
|
|
"The activities updated after the created should be 1");
|
|
|
|
"The activities updated after the created should be 1");
|
|
|
|
}
|
|
|
|
}
|
|
|
|