From commits-return-13520-archive-asf-public=cust-asf.ponee.io@hudi.apache.org Tue Mar 17 02:56:22 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 497CB18066D for ; Tue, 17 Mar 2020 03:56:22 +0100 (CET) Received: (qmail 27040 invoked by uid 500); 17 Mar 2020 02:56:21 -0000 Mailing-List: contact commits-help@hudi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hudi.apache.org Delivered-To: mailing list commits@hudi.apache.org Received: (qmail 27018 invoked by uid 99); 17 Mar 2020 02:56:21 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Mar 2020 02:56:21 +0000 From: GitBox To: commits@hudi.apache.org Subject: [GitHub] [incubator-hudi] yanghua commented on a change in pull request #1411: [HUDI-695]Add unit test for TableCommand Message-ID: <158441378142.31921.8764424433878697866.gitbox@gitbox.apache.org> References: In-Reply-To: Date: Tue, 17 Mar 2020 02:56:21 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit yanghua commented on a change in pull request #1411: [HUDI-695]Add unit test for TableCommand URL: https://github.com/apache/incubator-hudi/pull/1411#discussion_r393417023 ########## File path: hudi-cli/src/test/java/org/apache/hudi/cli/commands/TestTableCommand.java ########## @@ -0,0 +1,107 @@ +/* + * 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.hudi.cli.commands; + +import org.apache.hudi.cli.AbstractShellIntegrationTest; +import org.apache.hudi.cli.HoodieCLI; +import org.apache.hudi.common.model.HoodieTableType; +import org.apache.hudi.common.table.HoodieTableMetaClient; +import org.apache.hudi.common.util.ConsistencyGuardConfig; +import org.junit.Test; +import org.springframework.shell.core.CommandResult; + +import java.io.File; + +import static org.apache.hudi.common.table.HoodieTableMetaClient.METAFOLDER_NAME; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +/** + * Test Cases for {@link TableCommand}. + */ +public class TestTableCommand extends AbstractShellIntegrationTest { + + /** + * Test Cases for create, desc and connect table. + */ + @Test + public void testCreateAndConnectTable() { Review comment: Can we split this method into three small methods so that we can test `create`, `desc` and `connect` command individually? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org With regards, Apache Git Services