Package org.apache.oozie.service

Source Code of org.apache.oozie.service.TestJMSTopicService

/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


package org.apache.oozie.service;

import java.util.Properties;

import org.apache.oozie.BundleActionBean;
import org.apache.oozie.BundleJobBean;
import org.apache.oozie.CoordinatorActionBean;
import org.apache.oozie.CoordinatorJobBean;
import org.apache.oozie.WorkflowActionBean;
import org.apache.oozie.WorkflowJobBean;
import org.apache.oozie.client.CoordinatorAction;
import org.apache.oozie.client.CoordinatorJob;
import org.apache.oozie.client.Job;
import org.apache.oozie.client.WorkflowAction;
import org.apache.oozie.client.WorkflowJob;
import org.apache.oozie.AppType;
import org.apache.oozie.service.Services;
import org.apache.oozie.test.XDataTestCase;
import org.apache.oozie.workflow.WorkflowInstance;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

public class TestJMSTopicService extends XDataTestCase {

    private Services services;

    @Before
    protected void setUp() throws Exception {
        super.setUp();
    }

    @After
    protected void tearDown() throws Exception {
        services.destroy();
        super.tearDown();
    }

    private Services setupServicesForTopic() throws ServiceException {
        Services services = new Services();
        services.getConf().set(Services.CONF_SERVICE_EXT_CLASSES, JMSTopicService.class.getName());
        return services;
    }

    @Test
    public void testTopicAsUser() throws Exception {
        services = setupServicesForTopic();
        services.init();
        JMSTopicService jmsTopicService = Services.get().get(JMSTopicService.class);
        WorkflowJobBean wfj = addRecordToWfJobTable(WorkflowJob.Status.SUCCEEDED, WorkflowInstance.Status.SUCCEEDED);
        assertEquals(wfj.getUser(), jmsTopicService.getTopic(wfj.getId()));
        assertEquals(wfj.getUser(), jmsTopicService.getTopic(AppType.WORKFLOW_JOB, wfj.getUser(), wfj.getId(), null));
        WorkflowActionBean wab = addRecordToWfActionTable(wfj.getId(), "1", WorkflowAction.Status.RUNNING);
        assertEquals(wfj.getUser(), jmsTopicService.getTopic(wab.getId()));
        assertEquals(wfj.getUser(), jmsTopicService.getTopic(AppType.WORKFLOW_ACTION, wfj.getUser(), wab.getId(), wab.getWfId()));
        CoordinatorJobBean cjb = addRecordToCoordJobTable(CoordinatorJob.Status.SUCCEEDED, true, true);
        assertEquals(cjb.getUser(), jmsTopicService.getTopic(cjb.getId()));
        assertEquals(cjb.getUser(), jmsTopicService.getTopic(AppType.COORDINATOR_JOB, cjb.getUser(), cjb.getId(), null));
        CoordinatorActionBean cab = addRecordToCoordActionTable(cjb.getId(), 1, CoordinatorAction.Status.SUCCEEDED,
                "coord-action-for-action-input-check.xml", 0);
        assertEquals(cjb.getUser(), jmsTopicService.getTopic(cab.getId()));
        assertEquals(cjb.getUser(),
                jmsTopicService.getTopic(AppType.COORDINATOR_ACTION, cjb.getUser(), cab.getId(), cab.getJobId()));
        BundleJobBean bjb = addRecordToBundleJobTable(Job.Status.RUNNING, true);
        assertEquals(bjb.getUser(), jmsTopicService.getTopic(bjb.getId()));
        assertEquals(bjb.getUser(), jmsTopicService.getTopic(AppType.BUNDLE_JOB, bjb.getUser(), bjb.getId(), null));
        BundleActionBean bab = addRecordToBundleActionTable(bjb.getId(), "1", 1, Job.Status.RUNNING);
        assertEquals(bjb.getUser(), jmsTopicService.getTopic(bab.getBundleActionId()));
        assertEquals(bjb.getUser(),
                jmsTopicService.getTopic(AppType.BUNDLE_ACTION, bjb.getUser(), bab.getBundleActionId(), bab.getBundleId()));
    }

    @Test
    public void testTopicAsJobId() throws Exception {
        final String TOPIC_PREFIX = "oozie.";
        services = setupServicesForTopic();
        services.getConf().set(JMSTopicService.TOPIC_NAME, "default=" + JMSTopicService.TopicType.JOBID.getValue());
        services.getConf().set(JMSTopicService.TOPIC_PREFIX, TOPIC_PREFIX);
        services.init();
        JMSTopicService jmsTopicService = Services.get().get(JMSTopicService.class);
        WorkflowJobBean wfj = addRecordToWfJobTable(WorkflowJob.Status.SUCCEEDED, WorkflowInstance.Status.SUCCEEDED);
        assertEquals(TOPIC_PREFIX, jmsTopicService.getTopicPrefix());
        assertEquals(TOPIC_PREFIX + wfj.getId(), jmsTopicService.getTopic(wfj.getId()));
        assertEquals(TOPIC_PREFIX + wfj.getId(), jmsTopicService.getTopic(AppType.WORKFLOW_JOB, wfj.getUser(), wfj.getId(), null));
        WorkflowActionBean wab = addRecordToWfActionTable(wfj.getId(), "1", WorkflowAction.Status.RUNNING);
        assertEquals(TOPIC_PREFIX + wfj.getId(), jmsTopicService.getTopic(wab.getId()));
        assertEquals(TOPIC_PREFIX + wfj.getId(),
                jmsTopicService.getTopic(AppType.WORKFLOW_ACTION, wfj.getUser(), wab.getId(), wab.getWfId()));
        CoordinatorJobBean cjb = addRecordToCoordJobTable(CoordinatorJob.Status.SUCCEEDED, true, true);
        assertEquals(TOPIC_PREFIX + cjb.getId(), jmsTopicService.getTopic(cjb.getId()));
        assertEquals(TOPIC_PREFIX + cjb.getId(),
                jmsTopicService.getTopic(AppType.COORDINATOR_JOB, cjb.getUser(), cjb.getId(), null));
        CoordinatorActionBean cab = addRecordToCoordActionTable(cjb.getId(), 1, CoordinatorAction.Status.SUCCEEDED,
                "coord-action-for-action-input-check.xml", 0);
        assertEquals(TOPIC_PREFIX + cjb.getId(), jmsTopicService.getTopic(cab.getId()));
        assertEquals(TOPIC_PREFIX + cjb.getId(),
                jmsTopicService.getTopic(AppType.COORDINATOR_ACTION, cjb.getUser(), cab.getId(), cab.getJobId()));
        BundleJobBean bjb = addRecordToBundleJobTable(Job.Status.RUNNING, true);
        assertEquals(TOPIC_PREFIX + bjb.getId(), jmsTopicService.getTopic(bjb.getId()));
        assertEquals(TOPIC_PREFIX + bjb.getId(), jmsTopicService.getTopic(AppType.BUNDLE_JOB, bjb.getUser(), bjb.getId(), null));
        BundleActionBean bab = addRecordToBundleActionTable(bjb.getId(), "1", 1, Job.Status.RUNNING);
        assertEquals(TOPIC_PREFIX + bjb.getId(), jmsTopicService.getTopic(bab.getBundleActionId()));
        assertEquals(TOPIC_PREFIX + bjb.getId(),
                jmsTopicService.getTopic(AppType.BUNDLE_ACTION, bjb.getUser(), bab.getBundleActionId(), bab.getBundleId()));
    }

    @Test
    public void testTopicAsFixedString() throws Exception {
        services = setupServicesForTopic();
        services.getConf().set(
                JMSTopicService.TOPIC_NAME,
                JMSTopicService.JobType.WORKFLOW.getValue() + " =workflow,"
                        + JMSTopicService.JobType.COORDINATOR.getValue() + "=coord,"
                        + JMSTopicService.JobType.BUNDLE.getValue() + "=bundle");
        services.init();
        JMSTopicService jmsTopicService = Services.get().get(JMSTopicService.class);
        WorkflowJobBean wfj = addRecordToWfJobTable(WorkflowJob.Status.SUCCEEDED, WorkflowInstance.Status.SUCCEEDED);
        assertEquals("workflow", jmsTopicService.getTopic(wfj.getId()));
        assertEquals("workflow", jmsTopicService.getTopic(AppType.WORKFLOW_JOB, wfj.getUser(), wfj.getId(), null));
        WorkflowActionBean wab = addRecordToWfActionTable(wfj.getId(), "1", WorkflowAction.Status.RUNNING);
        assertEquals("workflow", jmsTopicService.getTopic(wab.getId()));
        assertEquals("workflow", jmsTopicService.getTopic(AppType.WORKFLOW_ACTION, wfj.getUser(), wab.getId(), wab.getWfId()));
        CoordinatorJobBean cjb = addRecordToCoordJobTable(CoordinatorJob.Status.SUCCEEDED, true, true);
        assertEquals("coord", jmsTopicService.getTopic(cjb.getId()));
        assertEquals("coord", jmsTopicService.getTopic(AppType.COORDINATOR_JOB, cjb.getUser(), cjb.getId(), null));
        CoordinatorActionBean cab = addRecordToCoordActionTable(cjb.getId(), 1, CoordinatorAction.Status.SUCCEEDED,
                "coord-action-for-action-input-check.xml", 0);
        assertEquals("coord", jmsTopicService.getTopic(cab.getId()));
        assertEquals("coord", jmsTopicService.getTopic(AppType.COORDINATOR_ACTION, cjb.getUser(), cab.getId(), cab.getJobId()));
        BundleJobBean bjb = addRecordToBundleJobTable(Job.Status.RUNNING, true);
        assertEquals("bundle", jmsTopicService.getTopic(bjb.getId()));
        assertEquals("bundle", jmsTopicService.getTopic(AppType.BUNDLE_JOB, bjb.getUser(), bjb.getId(), null));
        BundleActionBean bab = addRecordToBundleActionTable(bjb.getId(), "1", 1, Job.Status.RUNNING);
        assertEquals("bundle", jmsTopicService.getTopic(bab.getBundleActionId()));
        assertEquals("bundle",
                jmsTopicService.getTopic(AppType.BUNDLE_ACTION, bjb.getUser(), bab.getBundleActionId(), bab.getBundleId()));
    }

    @Test
    public void testMixedTopic1() throws Exception {
        services = setupServicesForTopic();
        services.getConf().set(
                JMSTopicService.TOPIC_NAME,
                JMSTopicService.JobType.WORKFLOW.getValue() + " = workflow,"
                        + JMSTopicService.JobType.COORDINATOR.getValue() + "=coord, default = "
                        + JMSTopicService.TopicType.JOBID.getValue());
        services.init();
        JMSTopicService jmsTopicService = Services.get().get(JMSTopicService.class);
        WorkflowJobBean wfj = addRecordToWfJobTable(WorkflowJob.Status.SUCCEEDED, WorkflowInstance.Status.SUCCEEDED);
        assertEquals("workflow", jmsTopicService.getTopic(wfj.getId()));
        assertEquals("workflow", jmsTopicService.getTopic(AppType.WORKFLOW_JOB, wfj.getUser(), wfj.getId(), null));
        WorkflowActionBean wab = addRecordToWfActionTable(wfj.getId(), "1", WorkflowAction.Status.RUNNING);
        assertEquals("workflow", jmsTopicService.getTopic(wab.getId()));
        assertEquals("workflow", jmsTopicService.getTopic(AppType.WORKFLOW_ACTION, wfj.getUser(), wab.getId(), wab.getWfId()));
        CoordinatorJobBean cjb = addRecordToCoordJobTable(CoordinatorJob.Status.SUCCEEDED, true, true);
        assertEquals("coord", jmsTopicService.getTopic(cjb.getId()));
        assertEquals("coord", jmsTopicService.getTopic(AppType.COORDINATOR_JOB, cjb.getUser(), cjb.getId(), null));
        CoordinatorActionBean cab = addRecordToCoordActionTable(cjb.getId(), 1, CoordinatorAction.Status.SUCCEEDED,
                "coord-action-for-action-input-check.xml", 0);
        assertEquals("coord", jmsTopicService.getTopic(cab.getId()));
        assertEquals("coord", jmsTopicService.getTopic(AppType.COORDINATOR_ACTION, cjb.getUser(), cab.getId(), cab.getJobId()));
        BundleJobBean bjb = addRecordToBundleJobTable(Job.Status.RUNNING, true);
        assertEquals(bjb.getId(), jmsTopicService.getTopic(bjb.getId()));
        assertEquals(bjb.getId(), jmsTopicService.getTopic(AppType.BUNDLE_JOB, bjb.getUser(), bjb.getId(), null));
        BundleActionBean bab = addRecordToBundleActionTable(bjb.getId(), "1", 1, Job.Status.RUNNING);
        assertEquals(bjb.getId(), jmsTopicService.getTopic(bab.getBundleActionId()));
        assertEquals(bjb.getId(),
                jmsTopicService.getTopic(AppType.BUNDLE_ACTION, bjb.getUser(), bab.getBundleActionId(), bab.getBundleId()));
    }

    @Test
    public void testMixedTopic2() throws Exception {
        services = setupServicesForTopic();
        services.getConf().set(
                JMSTopicService.TOPIC_NAME,
                JMSTopicService.JobType.WORKFLOW.getValue() + " = workflow,"
                        + JMSTopicService.JobType.COORDINATOR.getValue() + "=coord");
        services.init();
        JMSTopicService jmsTopicService = Services.get().get(JMSTopicService.class);
        WorkflowJobBean wfj = addRecordToWfJobTable(WorkflowJob.Status.SUCCEEDED, WorkflowInstance.Status.SUCCEEDED);
        assertEquals("workflow", jmsTopicService.getTopic(wfj.getId()));
        assertEquals("workflow", jmsTopicService.getTopic(AppType.WORKFLOW_JOB, wfj.getUser(), wfj.getId(), null));
        WorkflowActionBean wab = addRecordToWfActionTable(wfj.getId(), "1", WorkflowAction.Status.RUNNING);
        assertEquals("workflow", jmsTopicService.getTopic(wab.getId()));
        assertEquals("workflow", jmsTopicService.getTopic(AppType.WORKFLOW_ACTION, wfj.getUser(), wab.getId(), wab.getWfId()));
        CoordinatorJobBean cjb = addRecordToCoordJobTable(CoordinatorJob.Status.SUCCEEDED, true, true);
        assertEquals("coord", jmsTopicService.getTopic(cjb.getId()));
        CoordinatorActionBean cab = addRecordToCoordActionTable(cjb.getId(), 1, CoordinatorAction.Status.SUCCEEDED,
                "coord-action-for-action-input-check.xml", 0);
        assertEquals("coord", jmsTopicService.getTopic(cab.getId()));
        assertEquals("coord", jmsTopicService.getTopic(AppType.COORDINATOR_ACTION, cjb.getUser(), cab.getId(), cab.getJobId()));
        BundleJobBean bjb = addRecordToBundleJobTable(Job.Status.RUNNING, true);
        // As no default is specified, user will be considered as topic
        assertEquals(bjb.getUser(), jmsTopicService.getTopic(bjb.getId()));
        assertEquals(bjb.getUser(), jmsTopicService.getTopic(AppType.BUNDLE_JOB, bjb.getUser(), bjb.getId(), null));
        BundleActionBean bab = addRecordToBundleActionTable(bjb.getId(), "1", 1, Job.Status.RUNNING);
        assertEquals(bjb.getUser(), jmsTopicService.getTopic(bab.getBundleActionId()));
        assertEquals(bjb.getUser(),
                jmsTopicService.getTopic(AppType.BUNDLE_ACTION, bjb.getUser(), bab.getBundleActionId(), bab.getBundleId()));
    }

    @Test
    public void testIncorrectConfigurationJobType() {
        try {
            services = setupServicesForTopic();
            services.getConf().set(JMSTopicService.TOPIC_NAME,
                    "InvalidJobType" + " = workflow," + JMSTopicService.JobType.COORDINATOR.getValue() + "=coord");
            services.init();
            fail("Expected Service Exception");
        }
        catch (ServiceException se) {
            assertTrue(se.getMessage().contains("Incorrect job type"));
        }
    }

    @Test
    public void testIncorrectConfigurationDefault() {
        try {
            services = setupServicesForTopic();
            services.getConf().set(JMSTopicService.TOPIC_NAME, "default=" + "invalidvalue");
            services.init();
            fail("Expected Service Exception");
        }
        catch (ServiceException se) {
            assertTrue(se.getMessage().contains("not allowed in default"));
        }
    }

    @Test
    public void testTopicProperties1() throws Exception {
        services = setupServicesForTopic();
        services.init();
        JMSTopicService jmsTopicService = Services.get().get(JMSTopicService.class);
        Properties props = jmsTopicService.getTopicPatternProperties();
        assertEquals("${username}", props.get(AppType.WORKFLOW_JOB));
        assertEquals("${username}", props.get(AppType.WORKFLOW_ACTION));
        assertEquals("${username}", props.get(AppType.COORDINATOR_JOB));
        assertEquals("${username}", props.get(AppType.COORDINATOR_ACTION));
        assertEquals("${username}", props.get(AppType.BUNDLE_JOB));
        assertEquals("${username}", props.get(AppType.BUNDLE_ACTION));
    }

    @Test
    public void testTopicProperties2() throws Exception {
        services = setupServicesForTopic();
        services.getConf().set(
                JMSTopicService.TOPIC_NAME,
                JMSTopicService.JobType.WORKFLOW.getValue() + " = workflow,"
                        + JMSTopicService.JobType.COORDINATOR.getValue() + "=coord");
        services.init();
        JMSTopicService jmsTopicService = Services.get().get(JMSTopicService.class);
        Properties props = jmsTopicService.getTopicPatternProperties();
        assertEquals("workflow", props.get(AppType.WORKFLOW_JOB));
        assertEquals("workflow", props.get(AppType.WORKFLOW_ACTION));

        assertEquals("coord", props.get(AppType.COORDINATOR_JOB));
        assertEquals("coord", props.get(AppType.COORDINATOR_ACTION));

        assertEquals("${username}", props.get(AppType.BUNDLE_JOB));
        assertEquals("${username}", props.get(AppType.BUNDLE_ACTION));
    }

}
TOP

Related Classes of org.apache.oozie.service.TestJMSTopicService

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.