-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
83 additions
and
2 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
43 changes: 43 additions & 0 deletions
43
server/src/main/java/com/adobe/testing/s3mock/store/S3ObjectVersions.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,43 @@ | ||
/* | ||
* Copyright 2017-2024 Adobe. | ||
* | ||
* 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.adobe.testing.s3mock.store; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.UUID; | ||
import java.util.concurrent.atomic.AtomicInteger; | ||
|
||
public record S3ObjectVersions( | ||
UUID id, | ||
Map<Integer, String> versions, | ||
AtomicInteger latestVersionPointer | ||
) { | ||
|
||
public S3ObjectVersions(UUID id) { | ||
this(id, new HashMap<>(), new AtomicInteger(0)); | ||
} | ||
|
||
public String createVersion() { | ||
String versionId = UUID.randomUUID().toString(); | ||
versions.put(latestVersionPointer.incrementAndGet(), versionId); | ||
return versionId; | ||
} | ||
|
||
public String getLatestVersion() { | ||
return versions.get(latestVersionPointer.get()); | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
server/src/test/kotlin/com/adobe/testing/s3mock/store/S3ObjectVersionsTest.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,37 @@ | ||
/* | ||
* Copyright 2017-2024 Adobe. | ||
* | ||
* 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.adobe.testing.s3mock.store; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import java.util.UUID; | ||
import org.junit.jupiter.api.Test; | ||
|
||
class S3ObjectVersionsTest { | ||
|
||
@Test | ||
void testVersions() { | ||
var iut = new S3ObjectVersions(UUID.randomUUID()); | ||
assertThat(iut.getLatestVersion()).isNull(); | ||
assertThat(iut.latestVersionPointer().get()).isZero(); | ||
|
||
var version = iut.createVersion(); | ||
assertThat(version).isNotBlank(); | ||
assertThat(iut.latestVersionPointer().get()).isOne(); | ||
assertThat(iut.getLatestVersion()).isEqualTo(version); | ||
} | ||
} |