/*
* 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 gobblin.writer;
/**
* Test constants.
*
* @author Yinan Li
*/
public class TestConstants {
// Test Avro schema
public static final String AVRO_SCHEMA = "{\"namespace\": \"example.avro\",\n" +
" \"type\": \"record\",\n" +
" \"name\": \"User\",\n" +
" \"fields\": [\n" +
" {\"name\": \"name\", \"type\": \"string\"},\n" +
" {\"name\": \"favorite_number\", \"type\": \"int\"},\n" +
" {\"name\": \"favorite_color\", \"type\": \"string\"}\n" +
" ]\n" +
"}";
// Test Avro data in json format
public static final String[] JSON_RECORDS =
{"{\"name\": \"Alyssa\", \"favorite_number\": 256, \"favorite_color\": \"yellow\"}", "{\"name\": \"Ben\", \"favorite_number\": 7, \"favorite_color\": \"red\"}", "{\"name\": \"Charlie\", \"favorite_number\": 68, \"favorite_color\": \"blue\"}"};
public static final String TEST_FS_URI = "file://localhost/";
public static final String TEST_ROOT_DIR = "test";
public static final String TEST_STAGING_DIR = TEST_ROOT_DIR + "/staging";
public static final String TEST_OUTPUT_DIR = TEST_ROOT_DIR + "/output";
public static final String TEST_FILE_NAME = "test.avro";
public static final String TEST_WRITER_ID = "writer-1";
public static final String TEST_FILE_EXTENSION = "avro";
public static final String TEST_EXTRACT_NAMESPACE = "com.linkedin.writer.test";
public static final String TEST_EXTRACT_ID = String.valueOf(System.currentTimeMillis());
public static final String TEST_EXTRACT_TABLE = "TestTable";
public static final String TEST_EXTRACT_PULL_TYPE = "FULL";
}