public virtual void testGetOperationsLogWithoutAuthorization() { // given startProcessInstanceByKey("process"); try { // when optimizeService.getHistoricUserOperationLogs(new DateTime(0L), null, 10); fail("Exception expected: It should not be possible to retrieve the logs"); } catch (AuthorizationException e) { // then string exceptionMessage = e.Message; assertTextPresent(userId, exceptionMessage); assertTextPresent(READ_HISTORY.Name, exceptionMessage); assertTextPresent(PROCESS_DEFINITION.resourceName(), exceptionMessage); } }
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes: //ORIGINAL LINE: @Test public void getHistoricUserOperationLogs() public virtual void getHistoricUserOperationLogs() { // given BpmnModelInstance simpleDefinition = Bpmn.createExecutableProcess("process").startEvent("startEvent").userTask("userTask").name("task").endEvent("endEvent").done(); testHelper.deploy(simpleDefinition); runtimeService.startProcessInstanceByKey("process"); claimAllUserTasks(); // when IList <UserOperationLogEntry> userOperationsLog = optimizeService.getHistoricUserOperationLogs(pastDate(), null, 10); // then assertThat(userOperationsLog.Count, @is(1)); assertThatTasksHaveAllImportantInformation(userOperationsLog[0]); }