blob: 043130ea8d806cf9e465e650a89a811a4be7bb7a [file] [log] [blame]
/**
* 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.sqoop.mapreduce.db;
import java.sql.ResultSet;
import java.util.List;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.mapreduce.InputSplit;
import org.apache.hadoop.mapreduce.Job;
import org.apache.sqoop.validation.ValidationException;
import com.cloudera.sqoop.Sqoop;
import com.cloudera.sqoop.testutil.MockResultSet;
import junit.framework.TestCase;
public class TextSplitterHadoopConfIntegrationTest extends TestCase {
private static final String TEXT_COL_NAME = "text_col_name";
public void testDefaultValueOfUnsetBooleanParam() throws Exception {
Configuration conf = Job.getInstance().getConfiguration();
TextSplitter splitter = new TextSplitter();
ResultSet rs = new MockResultSet();
try {
splitter.split(conf, rs, TEXT_COL_NAME);
fail();
} catch (ValidationException e) {
// expected to throw ValidationException with the a message about the
// "i-know-what-i-am-doing" prop
assertTrue(e.getMessage().contains(TextSplitter.ALLOW_TEXT_SPLITTER_PROPERTY));
}
}
public void testBooleanParamValue() throws Exception {
Configuration conf = Job.getInstance().getConfiguration();
conf.set(TextSplitter.ALLOW_TEXT_SPLITTER_PROPERTY, "true");
TextSplitter splitter = new TextSplitter();
ResultSet rs = new MockResultSet();
List<InputSplit> splits = splitter.split(conf, rs, TEXT_COL_NAME);
assertFalse(splits.isEmpty());
}
}