Esempio n. 1
0
        public virtual void testGetCompletedTasksWithoutAuthorization()
        {
            // given
            startProcessInstanceByKey("process");

            try
            {
                // when
                optimizeService.getCompletedHistoricTaskInstances(new DateTime(0L), null, 10);
                fail("Exception expected: It should not be possible to retrieve the tasks");
            }
            catch (AuthorizationException e)
            {
                // then
                string exceptionMessage = e.Message;
                assertTextPresent(userId, exceptionMessage);
                assertTextPresent(READ_HISTORY.Name, exceptionMessage);
                assertTextPresent(PROCESS_DEFINITION.resourceName(), exceptionMessage);
            }
        }
Esempio n. 2
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void getCompletedHistoricTaskInstances()
        public virtual void getCompletedHistoricTaskInstances()
        {
            // given
            BpmnModelInstance simpleDefinition = Bpmn.createExecutableProcess("process").startEvent("startEvent").userTask("userTask").name("task").endEvent("endEvent").done();

            testHelper.deploy(simpleDefinition);
            runtimeService.startProcessInstanceByKey("process");
            completeAllUserTasks();

            // when
            IList <HistoricTaskInstance> completedHistoricTaskInstances = optimizeService.getCompletedHistoricTaskInstances(null, null, 10);

            // then
            assertThat(completedHistoricTaskInstances.Count, @is(1));
            assertThatTasksHaveAllImportantInformation(completedHistoricTaskInstances[0]);
        }