com.appDataPushAgent.bug.ApplicationTest.java Source code

Java tutorial

Introduction

Here is the source code for com.appDataPushAgent.bug.ApplicationTest.java

Source

/**
 * Put your copyright and license info here.
 */
package com.appDataPushAgent.bug;

import java.io.IOException;

import javax.validation.ConstraintViolationException;

import org.junit.Assert;

import org.apache.hadoop.conf.Configuration;
import org.junit.Test;

import com.datatorrent.api.LocalMode;
import com.appDataPushAgent.bug.Application;

/**
 * Test the DAG declaration in local mode.
 */
public class ApplicationTest {

    @Test
    public void testApplication() throws IOException, Exception {
        try {
            LocalMode lma = LocalMode.newInstance();
            Configuration conf = new Configuration(false);
            conf.addResource(this.getClass().getResourceAsStream("/META-INF/properties.xml"));
            lma.prepareDAG(new Application(), conf);
            LocalMode.Controller lc = lma.getController();
            lc.run(10000); // runs for 10 seconds and quits
        } catch (ConstraintViolationException e) {
            Assert.fail("constraint violations: " + e.getConstraintViolations());
        }
    }

}