use of com.couchbase.client.java.kv.GetResult in project couchbase-jvm-clients by couchbase.
the class KeyValueIntegrationTest method getAndLock.
/**
* We need to ignore this test on the mock because the mock returns TMPFAIL instead of LOCKED when the
* document is locked (which used to be the old functionality but now since XERROR is negotiated it
* returns LOCKED properly).
*
* <p>Once the mock is modified to return LOCKED, this test can also be run on the mock again.</p>
*/
@Test
@IgnoreWhen(clusterTypes = ClusterType.MOCKED)
void getAndLock() {
String id = UUID.randomUUID().toString();
JsonObject expected = JsonObject.create().put("foo", true);
MutationResult insert = collection.insert(id, expected);
assertTrue(insert.cas() != 0);
GetResult getAndLock = collection.getAndLock(id, Duration.ofSeconds(30));
assertTrue(getAndLock.cas() != 0);
assertNotEquals(insert.cas(), getAndLock.cas());
assertEquals(expected, getAndLock.contentAsObject());
TimeoutException exception = assertThrows(TimeoutException.class, () -> collection.getAndLock(id, Duration.ofSeconds(30), getAndLockOptions().timeout(Duration.ofMillis(100))));
assertEquals(EnumSet.of(RetryReason.KV_LOCKED), exception.context().requestContext().retryReasons());
assertThrows(DocumentNotFoundException.class, () -> collection.getAndLock("some_doc", Duration.ofSeconds(30)));
}
use of com.couchbase.client.java.kv.GetResult in project couchbase-jvm-clients by couchbase.
the class KeyValueReactiveCollectionIntegrationTest method reactiveTouch.
@Test
@IgnoreWhen(clusterTypes = { ClusterType.MOCKED })
void reactiveTouch() {
StepVerifier.create(docIds.concatMap(key -> reactiveCollection.touch(key, Duration.ofSeconds(1)))).expectError(DocumentNotFoundException.class).verify();
// Insert docs with expiry of 10s
InsertOptions firstOpts = InsertOptions.insertOptions().expiry(Duration.ofSeconds(10));
List<MutationResult> insertResults = docIds.concatMap(key -> reactiveCollection.insert(key, JsonObject.create().put("key", key), firstOpts)).collectList().block();
// Touch docs and update the expiry to 1s
List<MutationResult> touchResults = docIds.concatMap(key -> reactiveCollection.touch(key, Duration.ofSeconds(1))).collectList().block();
// Assert cas of insert and touch results differ
StepVerifier.create(Flux.range(0, numDocs)).thenConsumeWhile(i -> insertResults.get(i).cas() != touchResults.get(i).cas()).verifyComplete();
List<GetResult> getResults = docIds.concatMap(reactiveCollection::get).collectList().block();
StepVerifier.create(Flux.range(0, numDocs)).thenConsumeWhile(i -> getResults.get(i).cas() == touchResults.get(i).cas()).verifyComplete();
}
use of com.couchbase.client.java.kv.GetResult in project couchbase-jvm-clients by couchbase.
the class KeyValueIntegrationTest method insertAndGet.
@Test
void insertAndGet() {
String id = UUID.randomUUID().toString();
MutationResult insertResult = collection.insert(id, "Hello, World");
assertTrue(insertResult.cas() != 0);
assertTrue(insertResult.mutationToken().isPresent());
GetResult getResult = collection.get(id);
assertEquals("Hello, World", getResult.contentAs(String.class));
assertEquals("\"Hello, World\"", new String(getResult.contentAsBytes(), UTF_8));
assertTrue(getResult.cas() != 0);
assertFalse(getResult.expiryTime().isPresent());
}
use of com.couchbase.client.java.kv.GetResult in project couchbase-jvm-clients by couchbase.
the class CavesKeyValueIntegrationTest method setGet.
@Caves("kv/crud/SetGet")
@Test
void setGet() {
JsonObject testDoc = JsonObject.create().put("foo", "bar");
collection.upsert("test-doc", testDoc);
GetResult result = collection.get("test-doc");
assertEquals(testDoc, result.contentAsObject());
}
Aggregations