Package com.wordpress.salaboy.procedures

Source Code of com.wordpress.salaboy.procedures.DefaultFireProcedureSmartTasksInMemoryTest

/*
* To change this template, choose Tools | Templates and open the template in
* the editor.
*/
package com.wordpress.salaboy.procedures;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.example.ws_ht.api.TTaskAbstract;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;

import com.wordpress.salaboy.api.HumanTaskService;
import com.wordpress.salaboy.api.HumanTaskServiceFactory;
import com.wordpress.salaboy.conf.HumanTaskServiceConfiguration;
import com.wordpress.salaboy.context.tracking.ContextTrackingProvider;
import com.wordpress.salaboy.model.Emergency;
import com.wordpress.salaboy.model.Vehicle;
import com.wordpress.salaboy.model.persistence.PersistenceServiceProvider;
import com.wordpress.salaboy.smarttasks.jbpm5wrapper.conf.JBPM5HornetQHumanTaskClientConfiguration;

/**
*
* @author salaboy
* @author demianc
*/
public class DefaultFireProcedureSmartTasksInMemoryTest extends DefaultFireProcedureBaseTest {

    private HumanTaskService humanTaskServiceClient;

    public DefaultFireProcedureSmartTasksInMemoryTest() {
    }

    @Before
    @Override
    public void setUp() throws Exception {
        super.setUp();

        HumanTaskServiceConfiguration taskClientConf = new HumanTaskServiceConfiguration();

        taskClientConf.addHumanTaskClientConfiguration("jBPM5-HT-Client",
                new JBPM5HornetQHumanTaskClientConfiguration(
                "127.0.0.1", 5446));

        humanTaskServiceClient = HumanTaskServiceFactory.newHumanTaskService(taskClientConf);
        humanTaskServiceClient.initializeService();
    }

    @After
    @Override
    public void tearDown() throws Exception {
        try{
            super.tearDown();
           
        } finally{
            this.humanTaskServiceClient.cleanUpService();
        }
    }

   

    @Override
    protected void testGarageTask(Emergency emergency, List<Vehicle> selectedVehicles) throws Exception {
        List<TTaskAbstract> taskAbstracts = humanTaskServiceClient.getMyTaskAbstracts("", "garage_emergency_service", "", null, "", "", "", 0, 0);
        Assert.assertNotNull(taskAbstracts);
        Assert.assertEquals(1, taskAbstracts.size());
        TTaskAbstract taskAbstract = taskAbstracts.get(0); // getting the first task
        Assert.assertEquals(" Select Vehicle For " + emergency.getId() + " ", taskAbstract.getName().getLocalPart());

        //Garage team starts working on the task
        humanTaskServiceClient.setAuthorizedEntityId("garage_emergency_service");
        humanTaskServiceClient.start(taskAbstract.getId());


        //A Firetruck is selected
        Map<String, Object> info = new HashMap<String, Object>();
        info.put("emergency.vehicles", selectedVehicles);

        //Garage team completes the task
        humanTaskServiceClient.complete(taskAbstract.getId(), info);

        Thread.sleep(2000);
    }

    @Override
    protected Map<String, String> getFirefighterTasks() throws Exception {
        humanTaskServiceClient.setAuthorizedEntityId("firefighter");
        List<TTaskAbstract> abstracts = humanTaskServiceClient.getMyTaskAbstracts("", "firefighter", "", null, "", "", "", 0,
                0);
        Map<String, String> ids = new HashMap<String, String>();
        if (abstracts != null) {
            for (TTaskAbstract tTaskAbstract : abstracts) {
                ids.put(tTaskAbstract.getId(), tTaskAbstract.getName().toString());
            }
        }

        return ids;
    }

    @Override
    protected void completeTask(String user, String taskId) throws Exception {
        humanTaskServiceClient.setAuthorizedEntityId(user);

        Map<String, Object> info = new HashMap<String, Object>();
        info.put("emergency.priority", 1);
        humanTaskServiceClient.start(taskId);
        humanTaskServiceClient.complete(taskId, info);

        Thread.sleep(2000);
    }

    @Override
    protected void initializePersistenceAndTracking() {
      
        persistenceService = PersistenceServiceProvider.getPersistenceService();
        trackingService = ContextTrackingProvider.getTrackingService();

    }
}
TOP

Related Classes of com.wordpress.salaboy.procedures.DefaultFireProcedureSmartTasksInMemoryTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.