com.streamsets.datacollector.runner.production.TestProductionSourceOffsetTracker.java Source code

Java tutorial

Introduction

Here is the source code for com.streamsets.datacollector.runner.production.TestProductionSourceOffsetTracker.java

Source

/*
 * Copyright 2017 StreamSets Inc.
 *
 * Licensed 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 com.streamsets.datacollector.runner.production;

import com.codahale.metrics.MetricRegistry;
import com.streamsets.datacollector.main.RuntimeInfo;
import com.streamsets.datacollector.main.RuntimeModule;
import com.streamsets.datacollector.main.StandaloneRuntimeInfo;
import com.streamsets.datacollector.util.PipelineDirectoryUtil;
import com.streamsets.pipeline.api.Source;
import com.streamsets.pipeline.api.impl.Utils;

import org.apache.commons.io.FileUtils;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.util.Arrays;

public class TestProductionSourceOffsetTracker {
    private static Logger LOG = LoggerFactory.getLogger(TestProductionSourceOffsetTracker.class);

    private static final String PIPELINE_NAME = "myPipeline";
    private static final String PIPELINE_REV = "2.0";

    private static ProductionSourceOffsetTracker offsetTracker;

    @BeforeClass
    public static void beforeClass() throws IOException {
        System.setProperty(RuntimeModule.SDC_PROPERTY_PREFIX + RuntimeInfo.DATA_DIR, "./target/var");
        File f = new File(System.getProperty(RuntimeModule.SDC_PROPERTY_PREFIX + RuntimeInfo.DATA_DIR));
        try {
            FileUtils.deleteDirectory(f);
        } catch (Exception ex) {
            LOG.info(Utils.format("Got exception while deleting directory: {}", f.getAbsolutePath()), ex);
        }

    }

    @AfterClass
    public static void afterClass() {
        System.getProperties().remove(RuntimeModule.SDC_PROPERTY_PREFIX + RuntimeInfo.DATA_DIR);
    }

    @Before
    public void createOffsetTracker() throws Exception {
        RuntimeInfo info = new StandaloneRuntimeInfo(RuntimeModule.SDC_PROPERTY_PREFIX, new MetricRegistry(),
                Arrays.asList(TestProductionSourceOffsetTracker.class.getClassLoader()));
        Files.createDirectories(PipelineDirectoryUtil.getPipelineDir(info, PIPELINE_NAME, PIPELINE_REV).toPath());
        OffsetFileUtil.resetOffsets(info, PIPELINE_NAME, PIPELINE_REV);
        offsetTracker = new ProductionSourceOffsetTracker(PIPELINE_NAME, PIPELINE_REV, info);
    }

    @Test
    public void testCommitOffset() {
        Assert.assertEquals(false, offsetTracker.isFinished());
        Assert.assertTrue(offsetTracker.getOffsets().isEmpty());

        offsetTracker.commitOffset(Source.POLL_SOURCE_OFFSET_KEY, "abc");
        Assert.assertEquals(1, offsetTracker.getOffsets().size());
        Assert.assertEquals("abc", offsetTracker.getOffsets().get(Source.POLL_SOURCE_OFFSET_KEY));

        offsetTracker.commitOffset("key", "offset");
        Assert.assertEquals(2, offsetTracker.getOffsets().size());
        Assert.assertEquals("offset", offsetTracker.getOffsets().get("key"));
    }

    @Test
    public void testGetLastBatchTime() {
        Assert.assertEquals(0, offsetTracker.getLastBatchTime());

        long start = System.currentTimeMillis();
        offsetTracker.commitOffset("random-key", "random-value");
        long end = System.currentTimeMillis();
        long batchTime = offsetTracker.getLastBatchTime();

        Assert.assertTrue(Utils.format("{} <= {}", start, batchTime), start <= batchTime);
        Assert.assertTrue(Utils.format("{} <= {}", batchTime, end), batchTime <= end);
    }

    @Test
    public void testRemoveEntity() {
        // Create new entity
        offsetTracker.commitOffset("entity", "offset");
        Assert.assertEquals(1, offsetTracker.getOffsets().size());
        Assert.assertEquals("offset", offsetTracker.getOffsets().get("entity"));

        // Commit empty "offset" should remove the entity from the tracking map
        offsetTracker.commitOffset("entity", null);
        Assert.assertEquals(0, offsetTracker.getOffsets().size());
    }

}