-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enables property for setting AT_TIMESTAMP shard iterator initial time… (
#342) Allows setting the timestamp for InitialPositiinInStream.AT_TIMESTAMP from a properties file.
- Loading branch information
Showing
4 changed files
with
165 additions
and
0 deletions.
There are no files selected for viewing
53 changes: 53 additions & 0 deletions
53
...n/java/com/amazonaws/services/kinesis/clientlibrary/config/DatePropertyValueDecorder.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,53 @@ | ||
/* | ||
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Amazon Software License (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/asl/ | ||
* | ||
* or in the "license" file accompanying this file. This file 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.amazonaws.services.kinesis.clientlibrary.config; | ||
|
||
import java.util.Arrays; | ||
import java.util.Date; | ||
import java.util.List; | ||
|
||
/** | ||
* Provide Date property. | ||
*/ | ||
class DatePropertyValueDecoder implements IPropertyValueDecoder<Date> { | ||
|
||
/** | ||
* Constructor. | ||
*/ | ||
DatePropertyValueDecoder() { | ||
} | ||
|
||
/** | ||
* @param value property value as String | ||
* @return corresponding variable in correct type | ||
*/ | ||
@Override | ||
public Date decodeValue(String value) { | ||
try { | ||
return new Date(Long.parseLong(value) * 1000L); | ||
} catch (NumberFormatException e) { | ||
throw new IllegalArgumentException("Date property value must be numeric."); | ||
} | ||
} | ||
|
||
/** | ||
* @return list of supported types | ||
*/ | ||
@Override | ||
public List<Class<Date>> getSupportedTypes() { | ||
return Arrays.asList(Date.class); | ||
} | ||
|
||
} |
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
53 changes: 53 additions & 0 deletions
53
...ava/com/amazonaws/services/kinesis/clientlibrary/config/DatePropertyValueDecoderTest.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,53 @@ | ||
/* | ||
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Amazon Software License (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/asl/ | ||
* | ||
* or in the "license" file accompanying this file. This file 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.amazonaws.services.kinesis.clientlibrary.config; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.fail; | ||
|
||
import java.util.Date; | ||
|
||
import org.junit.Test; | ||
|
||
import com.amazonaws.services.kinesis.clientlibrary.config.DatePropertyValueDecoder; | ||
|
||
public class DatePropertyValueDecoderTest { | ||
|
||
private DatePropertyValueDecoder decoder = new DatePropertyValueDecoder(); | ||
|
||
private static final String TEST_VALUE = "1527267472"; | ||
|
||
@Test | ||
public void testNumericValue() { | ||
Date timestamp = decoder.decodeValue(TEST_VALUE); | ||
assertEquals(timestamp.getClass(), Date.class); | ||
assertEquals(timestamp, new Date(Long.parseLong(TEST_VALUE) * 1000L)); | ||
} | ||
|
||
@Test(expected = IllegalArgumentException.class) | ||
public void testEmptyValue() { | ||
Date timestamp = decoder.decodeValue(""); | ||
} | ||
|
||
@Test(expected = IllegalArgumentException.class) | ||
public void testNullValue() { | ||
Date timestamp = decoder.decodeValue(null); | ||
} | ||
|
||
@Test(expected = IllegalArgumentException.class) | ||
public void testNonNumericValue() { | ||
Date timestamp = decoder.decodeValue("123abc"); | ||
} | ||
} |
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