[
https://issues.apache.org/jira/browse/BEAM-9722?focusedWorklogId=435172&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-435172
]
ASF GitHub Bot logged work on BEAM-9722:
----------------------------------------
Author: ASF GitHub Bot
Created on: 19/May/20 20:25
Start Date: 19/May/20 20:25
Worklog Time Spent: 10m
Work Description: DariuszAniszewski commented on a change in pull request
#11360:
URL: https://github.com/apache/beam/pull/11360#discussion_r427577999
##########
File path:
sdks/java/io/snowflake/src/test/java/org/apache/beam/sdk/io/snowflake/test/unit/read/SnowflakeIOReadTest.java
##########
@@ -0,0 +1,268 @@
+/*
+ * 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.beam.sdk.io.snowflake.test.unit.read;
+
+import java.util.Arrays;
+import java.util.List;
+import org.apache.avro.generic.GenericRecord;
+import org.apache.avro.generic.GenericRecordBuilder;
+import org.apache.beam.sdk.Pipeline.PipelineExecutionException;
+import org.apache.beam.sdk.coders.AvroCoder;
+import org.apache.beam.sdk.io.AvroGeneratedUser;
+import org.apache.beam.sdk.io.snowflake.SnowflakeIO;
+import org.apache.beam.sdk.io.snowflake.SnowflakeService;
+import org.apache.beam.sdk.io.snowflake.test.FakeSnowflakeBasicDataSource;
+import org.apache.beam.sdk.io.snowflake.test.FakeSnowflakeDatabase;
+import org.apache.beam.sdk.io.snowflake.test.FakeSnowflakeServiceImpl;
+import org.apache.beam.sdk.io.snowflake.test.unit.BatchTestPipelineOptions;
+import org.apache.beam.sdk.options.PipelineOptionsFactory;
+import org.apache.beam.sdk.testing.PAssert;
+import org.apache.beam.sdk.testing.TestPipeline;
+import org.apache.beam.sdk.values.PCollection;
+import
org.apache.beam.vendor.guava.v26_0_jre.com.google.common.collect.ImmutableList;
+import org.junit.BeforeClass;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+import org.junit.rules.TemporaryFolder;
+import org.junit.rules.TestRule;
+import org.junit.runner.Description;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+import org.junit.runners.model.Statement;
+
+@RunWith(JUnit4.class)
+public class SnowflakeIOReadTest {
+ public static final String FAKE_TABLE = "FAKE_TABLE";
+
+ @Rule public transient TestPipeline pipeline = TestPipeline.create();
+ @Rule public ExpectedException exceptionRule = ExpectedException.none();
+
+ private static SnowflakeIO.DataSourceConfiguration dataSourceConfiguration;
+ private static BatchTestPipelineOptions options;
+
+ private static SnowflakeService snowflakeService;
+
+ private static String stagingBucketName;
+ private static String integrationName;
+
+ private static List<GenericRecord> avroTestData;
+
+ private transient TemporaryFolder testFolder = new TemporaryFolder();
+
+ @BeforeClass
+ public static void setup() {
+
+ List<String> testData = Arrays.asList("Paul,51,red", "Jackson,41,green");
+
+ avroTestData =
+ ImmutableList.of(
+ new AvroGeneratedUser("Paul", 51, "red"),
+ new AvroGeneratedUser("Jackson", 41, "green"));
+
+ FakeSnowflakeDatabase.createTableWithElements(FAKE_TABLE, testData);
+ PipelineOptionsFactory.register(BatchTestPipelineOptions.class);
+ options =
TestPipeline.testingPipelineOptions().as(BatchTestPipelineOptions.class);
+ options.setServerName("NULL.snowflakecomputing.com");
+ options.setStorageIntegration("STORAGE_INTEGRATION");
+ options.setStagingBucketName("BUCKET");
+
+ stagingBucketName = options.getStagingBucketName();
+ integrationName = options.getStorageIntegration();
+
+ dataSourceConfiguration =
+ SnowflakeIO.DataSourceConfiguration.create(new
FakeSnowflakeBasicDataSource())
+ .withServerName(options.getServerName());
+
+ snowflakeService = new FakeSnowflakeServiceImpl();
+ }
+
+ @Rule
+ public final transient TestRule folderThenPipeline =
+ new TestRule() {
+ @Override
+ public Statement apply(final Statement base, final Description
description) {
+ Statement withPipeline =
+ new Statement() {
+ @Override
+ public void evaluate() {
+ pipeline = TestPipeline.fromOptions(options);
+ }
+ };
+ return testFolder.apply(withPipeline, description);
+ }
+ };
+
+ @Test
+ public void testConfigIsMissingStagingBucketName() {
+ exceptionRule.expect(IllegalArgumentException.class);
+ exceptionRule.expectMessage("withStagingBucketName() is required");
+
+ pipeline.apply(
+ SnowflakeIO.<GenericRecord>read(snowflakeService)
+ .withDataSourceConfiguration(dataSourceConfiguration)
+ .fromTable(FAKE_TABLE)
+ .withIntegrationName(integrationName)
+ .withCsvMapper(getCsvMapper())
+ .withCoder(AvroCoder.of(AvroGeneratedUser.getClassSchema())));
+
+ pipeline.run();
+ }
+
+ @Test
+ public void testConfigIsMissingIntegrationName() {
+ exceptionRule.expect(IllegalArgumentException.class);
+ exceptionRule.expectMessage("withIntegrationName() is required");
+
+ pipeline.apply(
+ SnowflakeIO.<GenericRecord>read(snowflakeService)
+ .withDataSourceConfiguration(dataSourceConfiguration)
+ .fromTable(FAKE_TABLE)
+ .withStagingBucketName(stagingBucketName)
+ .withCsvMapper(getCsvMapper())
+ .withCoder(AvroCoder.of(AvroGeneratedUser.getClassSchema())));
+
+ pipeline.run();
+ }
+
+ @Test
+ public void testConfigIsMissingCsvMapper() {
+ exceptionRule.expect(IllegalArgumentException.class);
+ exceptionRule.expectMessage("withCsvMapper() is required");
+
+ pipeline.apply(
+ SnowflakeIO.<GenericRecord>read(snowflakeService)
+ .withDataSourceConfiguration(dataSourceConfiguration)
+ .fromTable(FAKE_TABLE)
+ .withStagingBucketName(stagingBucketName)
+ .withIntegrationName(integrationName)
+ .withCoder(AvroCoder.of(AvroGeneratedUser.getClassSchema())));
+
+ pipeline.run();
+ }
+
+ @Test
+ public void testConfigIsMissingCoder() {
+ exceptionRule.expect(IllegalArgumentException.class);
+ exceptionRule.expectMessage("withCoder() is required");
+
+ pipeline.apply(
+ SnowflakeIO.<GenericRecord>read(snowflakeService)
+ .withDataSourceConfiguration(dataSourceConfiguration)
+ .fromTable(FAKE_TABLE)
+ .withStagingBucketName(stagingBucketName)
+ .withIntegrationName(integrationName)
+ .withCsvMapper(getCsvMapper()));
+
+ pipeline.run();
+ }
+
+ @Test
+ public void testConfigIsMissingFromTableOrFromQuery() {
+ exceptionRule.expect(IllegalArgumentException.class);
+ exceptionRule.expectMessage("fromTable() or fromQuery() is required");
+
+ pipeline.apply(
+ SnowflakeIO.<GenericRecord>read(snowflakeService)
+ .withDataSourceConfiguration(dataSourceConfiguration)
+ .withStagingBucketName(stagingBucketName)
+ .withIntegrationName(integrationName)
+ .withCsvMapper(getCsvMapper())
+ .withCoder(AvroCoder.of(AvroGeneratedUser.getClassSchema())));
+
+ pipeline.run();
+ }
+
+ @Test
+ public void testConfigIsMissingDataSourceConfiguration() {
+ exceptionRule.expect(IllegalArgumentException.class);
+ exceptionRule.expectMessage(
+ "withDataSourceConfiguration() or withDataSourceProviderFn() is
required");
+
+ pipeline.apply(
+ SnowflakeIO.<GenericRecord>read(snowflakeService)
+ .fromTable(FAKE_TABLE)
+ .withStagingBucketName(stagingBucketName)
+ .withIntegrationName(integrationName)
+ .withCsvMapper(getCsvMapper())
+ .withCoder(AvroCoder.of(AvroGeneratedUser.getClassSchema())));
+
+ pipeline.run();
+ }
+
+ @Test
+ public void testConfigContainsFromQueryAndFromTable() {
+ exceptionRule.expect(IllegalArgumentException.class);
+ exceptionRule.expectMessage("fromTable() and fromQuery() are not allowed
together");
+
+ pipeline.apply(
+ SnowflakeIO.<GenericRecord>read(snowflakeService)
+ .withDataSourceConfiguration(dataSourceConfiguration)
+ .fromQuery("")
+ .fromTable(FAKE_TABLE)
+ .withStagingBucketName(stagingBucketName)
+ .withIntegrationName(integrationName)
+ .withCsvMapper(getCsvMapper())
+ .withCoder(AvroCoder.of(AvroGeneratedUser.getClassSchema())));
+
+ pipeline.run();
+ }
+
+ @Test
+ public void testTableDoesntExist() {
+ exceptionRule.expect(PipelineExecutionException.class);
+ exceptionRule.expectMessage("SQL compilation error: Table does not exist");
+
+ pipeline.apply(
+ SnowflakeIO.<GenericRecord>read(snowflakeService)
+ .withDataSourceConfiguration(dataSourceConfiguration)
+ .fromTable("NON_EXIST")
+ .withStagingBucketName(stagingBucketName)
+ .withIntegrationName(integrationName)
+ .withCsvMapper(getCsvMapper())
+ .withCoder(AvroCoder.of(AvroGeneratedUser.getClassSchema())));
+
+ pipeline.run();
+ }
+
+ @Test
+ public void testReadWithConfigIsProper() {
+ PCollection<GenericRecord> items =
Review comment:
I've just added tests for `withQuery` as it was missing and fixed tests
in general
----------------------------------------------------------------
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:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 435172)
Time Spent: 4h 50m (was: 4h 40m)
> Add batch SnowflakeIO.Read to Java SDK
> --------------------------------------
>
> Key: BEAM-9722
> URL: https://issues.apache.org/jira/browse/BEAM-9722
> Project: Beam
> Issue Type: New Feature
> Components: io-ideas
> Reporter: Kasia Kucharczyk
> Assignee: Dariusz Aniszewski
> Priority: P2
> Time Spent: 4h 50m
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)