Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 5A998200B61 for ; Tue, 9 Aug 2016 10:11:56 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 592F0160AA5; Tue, 9 Aug 2016 08:11:56 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 7C2D3160AA4 for ; Tue, 9 Aug 2016 10:11:55 +0200 (CEST) Received: (qmail 97886 invoked by uid 500); 9 Aug 2016 08:11:54 -0000 Mailing-List: contact dev-help@apex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@apex.apache.org Delivered-To: mailing list dev@apex.apache.org Received: (qmail 97875 invoked by uid 99); 9 Aug 2016 08:11:54 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Aug 2016 08:11:54 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 0CDDFC0B7B for ; Tue, 9 Aug 2016 08:11:54 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -5.446 X-Spam-Level: X-Spam-Status: No, score=-5.446 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id yOWafjRv8r8M for ; Tue, 9 Aug 2016 08:11:51 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id C7A7F5FBCA for ; Tue, 9 Aug 2016 08:11:50 +0000 (UTC) Received: (qmail 97860 invoked by uid 99); 9 Aug 2016 08:11:49 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Aug 2016 08:11:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AAE98E1170; Tue, 9 Aug 2016 08:11:49 +0000 (UTC) From: bhupeshchawda To: dev@apex.incubator.apache.org Reply-To: dev@apex.incubator.apache.org References: In-Reply-To: Subject: [GitHub] apex-malhar pull request #358: APEXMALHAR-2172: Updates to JDBC Poll Input O... Content-Type: text/plain Message-Id: <20160809081149.AAE98E1170@git1-us-west.apache.org> Date: Tue, 9 Aug 2016 08:11:49 +0000 (UTC) archived-at: Tue, 09 Aug 2016 08:11:56 -0000 Github user bhupeshchawda commented on a diff in the pull request: https://github.com/apache/apex-malhar/pull/358#discussion_r74015429 --- Diff: library/src/test/java/com/datatorrent/lib/db/jdbc/JdbcPojoPollableOpeartorTest.java --- @@ -0,0 +1,251 @@ +/** + * 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 com.datatorrent.lib.db.jdbc; + +import java.io.File; +import java.io.IOException; +import java.sql.Date; +import java.util.Collection; +import java.util.Iterator; +import java.util.List; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.ScheduledFuture; +import java.util.concurrent.TimeUnit; + +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +import org.apache.apex.malhar.lib.wal.WindowDataManager; +import org.apache.commons.io.FileUtils; +import org.apache.commons.lang3.tuple.MutablePair; + +import com.google.common.collect.Lists; + +import com.datatorrent.api.Attribute; +import com.datatorrent.api.Context; +import com.datatorrent.api.DAG; +import com.datatorrent.api.DefaultPartition; +import com.datatorrent.api.Partitioner; +import com.datatorrent.lib.helper.OperatorContextTestHelper; +import com.datatorrent.lib.helper.TestPortContext; +import com.datatorrent.lib.testbench.CollectorTestSink; +import com.datatorrent.lib.util.FieldInfo; +import com.datatorrent.lib.util.KeyValPair; +import com.datatorrent.lib.util.TestUtils; + +import static org.mockito.Matchers.any; +import static org.mockito.Matchers.anyLong; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +public class JdbcPojoPollableOpeartorTest extends JdbcOperatorTest +{ + public String dir = null; + @Mock + private ScheduledExecutorService mockschedular; + @Mock + private ScheduledFuture futureTaskMock; + @Mock + private WindowDataManager windowDataManagerMock; + + @Before + public void beforeTest() + { + dir = "target/" + APP_ID + "/"; + + MockitoAnnotations.initMocks(this); + when(mockschedular.scheduleWithFixedDelay(any(Runnable.class), anyLong(), anyLong(), any(TimeUnit.class))) + .thenReturn(futureTaskMock); + } + + @After + public void afterTest() throws IOException + { + cleanTable(); + FileUtils.deleteDirectory(new File(dir)); + } + + @Test + public void testDBPoller() throws InterruptedException + { + insertEvents(10, true, 0); + + JdbcStore store = new JdbcStore(); + store.setDatabaseDriver(DB_DRIVER); + store.setDatabaseUrl(URL); + + List fieldInfos = getFieldInfos(); + + Attribute.AttributeMap.DefaultAttributeMap portAttributes = new Attribute.AttributeMap.DefaultAttributeMap(); + portAttributes.put(Context.PortContext.TUPLE_CLASS, TestPOJOEvent.class); + TestPortContext tpc = new TestPortContext(portAttributes); + + JdbcPOJOPollInputOperator inputOperator = new JdbcPOJOPollInputOperator(); + inputOperator.setStore(store); + inputOperator.setTableName(TABLE_POJO_NAME); + inputOperator.setKey("id"); + inputOperator.setFieldInfos(fieldInfos); + inputOperator.setFetchSize(100); + inputOperator.setBatchSize(100); + inputOperator.setPartitionCount(2); + + TestUtils.MockBatchedOperatorStats readerStats = new TestUtils.MockBatchedOperatorStats(2); + DefaultPartition> apartition = new DefaultPartition>( + inputOperator); + TestUtils.MockPartition> pseudoParttion = new TestUtils.MockPartition<>( + apartition, readerStats); + List>> newMocks = Lists.newArrayList(); + newMocks.add(pseudoParttion); + + Collection>> newPartitions = inputOperator + .definePartitions(newMocks, null); + --- End diff -- Please cleanup this part of the code. Keep only the necessary variables for identifying the partitions. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---