forked from apache/storm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
STORM-1147: Added validation checks and tests.
- Loading branch information
1 parent
b6615d5
commit c367fdb
Showing
7 changed files
with
154 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
external/storm-jdbc/src/test/java/org/apache/storm/jdbc/bolt/JdbcInsertBoltTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/** | ||
* 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.storm.jdbc.bolt; | ||
|
||
import com.google.common.collect.Lists; | ||
import org.apache.storm.jdbc.common.Column; | ||
import org.apache.storm.jdbc.common.ConnectionProvider; | ||
import org.apache.storm.jdbc.common.HikariCPConnectionProvider; | ||
import org.apache.storm.jdbc.mapper.JdbcMapper; | ||
import org.apache.storm.jdbc.mapper.SimpleJdbcMapper; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
import java.util.HashMap; | ||
|
||
/** | ||
* Created by pbrahmbhatt on 10/29/15. | ||
*/ | ||
public class JdbcInsertBoltTest { | ||
|
||
@Test | ||
public void testValidation() { | ||
ConnectionProvider provider = new HikariCPConnectionProvider(new HashMap<String, Object>()); | ||
JdbcMapper mapper = new SimpleJdbcMapper(Lists.newArrayList(new Column("test", 0))); | ||
expectIllegaArgs(null, mapper); | ||
expectIllegaArgs(provider, null); | ||
|
||
try { | ||
JdbcInsertBolt bolt = new JdbcInsertBolt(provider, mapper); | ||
bolt.withInsertQuery("test"); | ||
bolt.withTableName("test"); | ||
Assert.fail("Should have thrown IllegalArgumentException."); | ||
} catch(IllegalArgumentException ne) { | ||
//expected | ||
} | ||
|
||
try { | ||
JdbcInsertBolt bolt = new JdbcInsertBolt(provider, mapper); | ||
bolt.withTableName("test"); | ||
bolt.withInsertQuery("test"); | ||
Assert.fail("Should have thrown IllegalArgumentException."); | ||
} catch(IllegalArgumentException ne) { | ||
//expected | ||
} | ||
} | ||
|
||
private void expectIllegaArgs(ConnectionProvider provider, JdbcMapper mapper) { | ||
try { | ||
JdbcInsertBolt bolt = new JdbcInsertBolt(provider, mapper); | ||
Assert.fail("Should have thrown IllegalArgumentException."); | ||
} catch(IllegalArgumentException ne) { | ||
//expected | ||
} | ||
} | ||
|
||
} |
59 changes: 59 additions & 0 deletions
59
external/storm-jdbc/src/test/java/org/apache/storm/jdbc/bolt/JdbcLookupBoltTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** | ||
* 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.storm.jdbc.bolt; | ||
|
||
import backtype.storm.tuple.Fields; | ||
import com.google.common.collect.Lists; | ||
import org.apache.storm.jdbc.common.Column; | ||
import org.apache.storm.jdbc.common.ConnectionProvider; | ||
import org.apache.storm.jdbc.common.HikariCPConnectionProvider; | ||
import org.apache.storm.jdbc.mapper.JdbcLookupMapper; | ||
import org.apache.storm.jdbc.mapper.JdbcMapper; | ||
import org.apache.storm.jdbc.mapper.SimpleJdbcLookupMapper; | ||
import org.apache.storm.jdbc.mapper.SimpleJdbcMapper; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
import java.util.ArrayList; | ||
import java.util.HashMap; | ||
|
||
/** | ||
* Created by pbrahmbhatt on 10/29/15. | ||
*/ | ||
public class JdbcLookupBoltTest { | ||
|
||
@Test | ||
public void testValidation() { | ||
ConnectionProvider provider = new HikariCPConnectionProvider(new HashMap<String, Object>()); | ||
JdbcLookupMapper mapper = new SimpleJdbcLookupMapper(new Fields("test"), Lists.newArrayList(new Column("test", 0))); | ||
String selectQuery = "select * from dual"; | ||
expectIllegaArgs(null, selectQuery, mapper); | ||
expectIllegaArgs(provider, null, mapper); | ||
expectIllegaArgs(provider, selectQuery, null); | ||
} | ||
|
||
private void expectIllegaArgs(ConnectionProvider provider, String selectQuery, JdbcLookupMapper mapper) { | ||
try { | ||
JdbcLookupBolt bolt = new JdbcLookupBolt(provider, selectQuery, mapper); | ||
Assert.fail("Should have thrown IllegalArgumentException."); | ||
} catch(IllegalArgumentException ne) { | ||
//expected | ||
} | ||
} | ||
|
||
} |