private static Collection<Person> getPeopleToProcess() { final Set<Person> people = new HashSet<Person>(); final LocalDate today = new LocalDate(); final ExpenditureTrackingSystem instance = ExpenditureTrackingSystem.getInstance(); for (final Authorization authorization : instance.getAuthorizationsSet()) { if (authorization.isValidFor(today)) { final Person person = authorization.getPerson(); if (person.getOptions().getReceiveNotificationsByEmail()) { people.add(person); } } } for (final RoleType roleType : RoleType.values()) { addPeopleWithRole(people, roleType); } for (final AccountingUnit accountingUnit : instance.getAccountingUnitsSet()) { addPeople(people, accountingUnit.getPeopleSet()); addPeople(people, accountingUnit.getProjectAccountantsSet()); addPeople(people, accountingUnit.getResponsiblePeopleSet()); addPeople(people, accountingUnit.getResponsibleProjectAccountantsSet()); addPeople(people, accountingUnit.getTreasuryMembersSet()); } final PaymentProcessYear paymentProcessYear = PaymentProcessYear.getPaymentProcessYearByYear(Calendar.getInstance().get(Calendar.YEAR)); addRequestors(people, paymentProcessYear); if (today.getMonthOfYear() == Month.JANUARY) { final PaymentProcessYear previousYear = PaymentProcessYear.getPaymentProcessYearByYear( Calendar.getInstance().get(Calendar.YEAR) - 1); addRequestors(people, previousYear); } return people; }
@Test public void testCrossModelLanePerformer() throws Exception { providerModel = modelService.findModel(PROVIDER_MODEL_ID); providerModel2 = modelService.findModel(PROVIDER_MODEL_ID2); consumerModel = modelService.findModel(CONSUMER_MODEL_ID); InputStream requestInput = getClass().getResourceAsStream("../../service/rest/requests/createRolesForProvider.txt"); InputStreamReader requestStream = new InputStreamReader(requestInput); replay(requestStream, "createRolesForProvider", false); requestInput = getClass().getResourceAsStream("../../service/rest/requests/createRolesForProvider2.txt"); requestStream = new InputStreamReader(requestInput); replay(requestStream, "createRolesForProvider2", false); requestInput = getClass().getResourceAsStream("../../service/rest/requests/prepareMultiModelConsumer.txt"); requestStream = new InputStreamReader(requestInput); replay(requestStream, "prepareMultiModelConsumer", false); RoleType role2 = null; RoleType role1 = null; for (RoleType role : consumerModel.getRole()) { if (role.getId().equals("Role2")) { role2 = role; } if (role.getId().equals("Role1")) { role1 = role; } } assertThat(role2, is(nullValue())); assertThat(role1, is(not(nullValue()))); assertThat(role1.eIsProxy(), is(false)); EList<ProcessDefinitionType> processDefinitions = consumerModel.getProcessDefinition(); ProcessDefinitionType processDefinition = processDefinitions.get(0); assertThat(processDefinition, is(not(nullValue()))); EList<ActivityType> activities = processDefinition.getActivity(); ActivityType activity = activities.get(0); assertThat(activity, is(not(nullValue()))); IModelParticipant performer = activity.getPerformer(); assertThat(performer, is(not(nullValue()))); assertEquals(performer, role1); EList<ExternalPackage> externalPackage = consumerModel.getExternalPackages().getExternalPackage(); assertThat(externalPackage.size(), is(0)); saveModel(); List<AttributeType> attributes = consumerModel.getAttribute(); for (AttributeType attribute : attributes) { String attributeName = attribute.getName(); assertThat(attributeName, not(containsString("carnot:connection:"))); } // saveReplayModel("C:/tmp"); }