forked from googleapis/google-cloud-java
-
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.
Add base class for operation options, javadoc and tests (googleapis#996)
* Add base class for operation options, javadoc and tests * Refactor PullOption - Make maxMessages a method parameter rather than an optional option - Move MessageConsumer.PullOption to PubSub - Remove MessageConsumer.start/stop methods in favor of close()
- Loading branch information
Showing
6 changed files
with
255 additions
and
79 deletions.
There are no files selected for viewing
77 changes: 77 additions & 0 deletions
77
gcloud-java-pubsub/src/main/java/com/google/cloud/pubsub/Option.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,77 @@ | ||
/* | ||
* Copyright 2016 Google Inc. All Rights Reserved. | ||
* | ||
* Licensed 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 com.google.cloud.pubsub; | ||
|
||
import static com.google.common.base.Preconditions.checkNotNull; | ||
|
||
import com.google.common.base.MoreObjects; | ||
|
||
import java.io.Serializable; | ||
import java.util.Objects; | ||
|
||
/** | ||
* Base class for Pub/Sub operation options. | ||
*/ | ||
abstract class Option implements Serializable { | ||
|
||
private static final long serialVersionUID = 4956295408130172192L; | ||
|
||
private final OptionType optionType; | ||
private final Object value; | ||
|
||
interface OptionType { | ||
|
||
String name(); | ||
} | ||
|
||
Option(OptionType optionType, Object value) { | ||
this.optionType = checkNotNull(optionType); | ||
this.value = value; | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
<T extends OptionType> T optionType() { | ||
return (T) optionType; | ||
} | ||
|
||
Object value() { | ||
return value; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object obj) { | ||
if (!(obj instanceof Option)) { | ||
return false; | ||
} | ||
Option other = (Option) obj; | ||
return Objects.equals(optionType, other.optionType) | ||
&& Objects.equals(value, other.value); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(optionType, value); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return MoreObjects.toStringHelper(this) | ||
.add("name", optionType.name()) | ||
.add("value", value) | ||
.toString(); | ||
} | ||
} |
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
66 changes: 66 additions & 0 deletions
66
gcloud-java-pubsub/src/test/java/com/google/cloud/pubsub/OptionTest.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 @@ | ||
/* | ||
* Copyright 2016 Google Inc. All Rights Reserved. | ||
* | ||
* Licensed 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 com.google.cloud.pubsub; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotEquals; | ||
import static org.junit.Assert.assertNull; | ||
|
||
import com.google.cloud.pubsub.Option.OptionType; | ||
import com.google.cloud.pubsub.PubSub.ListOption; | ||
|
||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.rules.ExpectedException; | ||
|
||
public class OptionTest { | ||
|
||
private static final OptionType OPTION_TYPE = ListOption.OptionType.PAGE_SIZE; | ||
private static final OptionType ANOTHER_OPTION_TYPE = ListOption.OptionType.PAGE_TOKEN; | ||
private static final String VALUE = "some value"; | ||
private static final String OTHER_VALUE = "another value"; | ||
private static final Option OPTION = new Option(OPTION_TYPE, VALUE) {}; | ||
private static final Option OPTION_EQUALS = new Option(OPTION_TYPE, VALUE) {}; | ||
private static final Option OPTION_NOT_EQUALS1 = new Option(ANOTHER_OPTION_TYPE, OTHER_VALUE) {}; | ||
private static final Option OPTION_NOT_EQUALS2 = new Option(ANOTHER_OPTION_TYPE, VALUE) {}; | ||
|
||
@Rule | ||
public ExpectedException thrown = ExpectedException.none(); | ||
|
||
@Test | ||
public void testEquals() { | ||
assertEquals(OPTION, OPTION_EQUALS); | ||
assertNotEquals(OPTION, OPTION_NOT_EQUALS1); | ||
assertNotEquals(OPTION, OPTION_NOT_EQUALS2); | ||
} | ||
|
||
@Test | ||
public void testHashCode() { | ||
assertEquals(OPTION.hashCode(), OPTION_EQUALS.hashCode()); | ||
} | ||
|
||
@Test | ||
public void testConstructor() { | ||
assertEquals(OPTION_TYPE, OPTION.optionType()); | ||
assertEquals(VALUE, OPTION.value()); | ||
Option option = new Option(OPTION_TYPE, null) {}; | ||
assertEquals(OPTION_TYPE, option.optionType()); | ||
assertNull(option.value()); | ||
thrown.expect(NullPointerException.class); | ||
new Option(null, VALUE) {}; | ||
} | ||
} |
Oops, something went wrong.