forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FlightSQL] Add missing method for creating bitmask from GetSqlInfo o…
…ption enum (apache#148) * Add util method for creating bitmask from multiple protobuf enums for FlightSql GetSqlInfo enum * Add test cases for utility method for creating bitmask from protobuf options * Make changes regarding to reviews Co-authored-by: Rafael Telles <rafael@telles.dev>
- Loading branch information
Showing
4 changed files
with
161 additions
and
53 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
45 changes: 45 additions & 0 deletions
45
java/flight/flight-sql/src/test/java/org/apache/arrow/flight/sql/util/AdhocTestOption.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,45 @@ | ||
/* | ||
* 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.arrow.flight.sql.util; | ||
|
||
import com.google.protobuf.Descriptors.EnumDescriptor; | ||
import com.google.protobuf.Descriptors.EnumValueDescriptor; | ||
import com.google.protobuf.ProtocolMessageEnum; | ||
|
||
enum AdhocTestOption implements ProtocolMessageEnum { | ||
OPTION_A, OPTION_B, OPTION_C; | ||
|
||
@Override | ||
public int getNumber() { | ||
return ordinal(); | ||
} | ||
|
||
@Override | ||
public EnumValueDescriptor getValueDescriptor() { | ||
throw getUnsupportedException(); | ||
} | ||
|
||
@Override | ||
public EnumDescriptor getDescriptorForType() { | ||
throw getUnsupportedException(); | ||
} | ||
|
||
private UnsupportedOperationException getUnsupportedException() { | ||
return new UnsupportedOperationException("Unimplemented method is irrelevant for the scope of this test."); | ||
} | ||
} |
66 changes: 66 additions & 0 deletions
66
...rc/test/java/org/apache/arrow/flight/sql/util/SqlInfoOptionsUtilsBitmaskCreationTest.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,66 @@ | ||
/* | ||
* 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.arrow.flight.sql.util; | ||
|
||
import static java.util.Arrays.asList; | ||
import static org.apache.arrow.flight.sql.util.AdhocTestOption.OPTION_A; | ||
import static org.apache.arrow.flight.sql.util.AdhocTestOption.OPTION_B; | ||
import static org.apache.arrow.flight.sql.util.AdhocTestOption.OPTION_C; | ||
import static org.apache.arrow.flight.sql.util.SqlInfoOptionsUtils.createBitmaskFromEnums; | ||
import static org.hamcrest.CoreMatchers.is; | ||
|
||
import java.util.List; | ||
|
||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.rules.ErrorCollector; | ||
import org.junit.runner.RunWith; | ||
import org.junit.runners.Parameterized; | ||
import org.junit.runners.Parameterized.Parameter; | ||
import org.junit.runners.Parameterized.Parameters; | ||
|
||
@RunWith(Parameterized.class) | ||
public final class SqlInfoOptionsUtilsBitmaskCreationTest { | ||
|
||
@Parameter | ||
public AdhocTestOption[] adhocTestOptions; | ||
@Parameter(value = 1) | ||
public long expectedBitmask; | ||
@Rule | ||
public final ErrorCollector collector = new ErrorCollector(); | ||
|
||
@Parameters | ||
public static List<Object[]> provideParameters() { | ||
return asList( | ||
new Object[][]{ | ||
{new AdhocTestOption[0], 0L}, | ||
{new AdhocTestOption[]{OPTION_A}, 1L}, | ||
{new AdhocTestOption[]{OPTION_B}, 0b10L}, | ||
{new AdhocTestOption[]{OPTION_A, OPTION_B}, 0b11L}, | ||
{new AdhocTestOption[]{OPTION_C}, 0b100L}, | ||
{new AdhocTestOption[]{OPTION_A, OPTION_C}, 0b101L}, | ||
{new AdhocTestOption[]{OPTION_B, OPTION_C}, 0b110L}, | ||
{AdhocTestOption.values(), 0b111L}, | ||
}); | ||
} | ||
|
||
@Test | ||
public void testShouldBuildBitmaskFromEnums() { | ||
collector.checkThat(createBitmaskFromEnums(adhocTestOptions), is(expectedBitmask)); | ||
} | ||
} |
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