findify / s3mock

Embedded S3 server for easy mocking
MIT License
387 stars 107 forks source link

Support `ListObjectsV2Request.withStartAfter()` method call #102

Open pintohutch opened 6 years ago

pintohutch commented 6 years ago

The AWS Java SDK's ListObjectsV2Request comes with a withStartAfter(String startAfter) method that allows for listing of objects that start after (lexicographically) the provided object key in the startAfter argument. This is currently not supported by s3mock. This is a feature request to add such capability.

AlexeyRaga commented 2 years ago

Oh, I spent 4 hours days debugging through the code until I stumbled upon this! Turns out that tests were not performing correctly because withStartAfter isn't supported.

Having it working would be highly appreciated.