Skip to content

Commit

Permalink
Add OData type test
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Siegel committed Sep 2, 2020
1 parent 07d8535 commit 734bf07
Show file tree
Hide file tree
Showing 2 changed files with 130 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
import reactor.test.StepVerifier;

import java.time.Duration;
import java.time.OffsetDateTime;
import java.util.Date;
import java.util.Map;
import java.util.UUID;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
Expand Down Expand Up @@ -144,6 +147,54 @@ void createEntityWithResponseAsync() {
.verify();
}

@Test
void createEntityWithAllSupportedDataTypesAsync() {
// Arrange
final String partitionKeyValue = testResourceNamer.randomName("partitionKey", 20);
final String rowKeyValue = testResourceNamer.randomName("rowKey", 20);
final TableEntity tableEntity = new TableEntity(partitionKeyValue, rowKeyValue);

final boolean booleanValue = true;
final byte[] binaryValue = "Test value".getBytes();
final Date dateValue = new Date();
final OffsetDateTime offsetDateTimeValue = OffsetDateTime.now();
final double doubleValue = 2.0d;
final UUID guidValue = UUID.randomUUID();
final int int32Value = 1337;
final long int64Value = 1337L;
final String stringValue = "This is table entity";

tableEntity.addProperty("BinaryTypeProperty", binaryValue);
tableEntity.addProperty("BooleanTypeProperty", booleanValue);
tableEntity.addProperty("DateTypeProperty", dateValue);
tableEntity.addProperty("OffsetDateTimeTypeProperty", offsetDateTimeValue);
tableEntity.addProperty("DoubleTypeProperty", doubleValue);
tableEntity.addProperty("GuidTypeProperty", guidValue);
tableEntity.addProperty("Int32TypeProperty", int32Value);
tableEntity.addProperty("Int64TypeProperty", int64Value);
tableEntity.addProperty("StringTypeProperty", stringValue);

tableClient.createEntity(tableEntity).block(TIMEOUT);

// Act & Assert
StepVerifier.create(tableClient.getEntityWithResponse(partitionKeyValue, rowKeyValue))
.assertNext(response -> {
final TableEntity entity = response.getValue();
Map<String, Object> properties = entity.getProperties();
assertTrue(properties.get("BinaryTypeProperty") instanceof byte[]);
assertTrue(properties.get("BooleanTypeProperty") instanceof Boolean);
assertTrue(properties.get("DateTypeProperty") instanceof OffsetDateTime);
assertTrue(properties.get("OffsetDateTimeTypeProperty") instanceof OffsetDateTime);
assertTrue(properties.get("DoubleTypeProperty") instanceof Double);
assertTrue(properties.get("GuidTypeProperty") instanceof UUID);
assertTrue(properties.get("Int32TypeProperty") instanceof Integer);
assertTrue(properties.get("Int64TypeProperty") instanceof Long);
assertTrue(properties.get("StringTypeProperty") instanceof String);
})
.expectComplete()
.verify();
}

@Test
void deleteTableAsync() {
// Act & Assert
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
{
"networkCallRecords" : [ {
"Method" : "POST",
"Uri" : "https://REDACTED.table.core.windows.net/Tables",
"Headers" : {
"x-ms-version" : "2019-02-02",
"User-Agent" : "azsdk-java-UnknownName/UnknownVersion (11.0.8; Mac OS X; 10.15.6)",
"x-ms-client-request-id" : "45469cdb-8e1b-4d39-af22-903d90eb4dac",
"Content-Type" : "application/json"
},
"Response" : {
"x-ms-version" : "2019-02-02",
"Server" : "Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0",
"X-Content-Type-Options" : "nosniff",
"retry-after" : "0",
"StatusCode" : "204",
"Date" : "Tue, 01 Sep 2020 09:09:13 GMT",
"Cache-Control" : "no-cache",
"DataServiceId" : "https://brsiegelsample.table.core.windows.net/Tables('tablename1410928e')",
"Content-Length" : "0",
"x-ms-request-id" : "c8af5d7d-8002-007e-423f-805a1b000000",
"Preference-Applied" : "return-no-content",
"x-ms-client-request-id" : "45469cdb-8e1b-4d39-af22-903d90eb4dac",
"Location" : "https://brsiegelsample.table.core.windows.net/Tables('tablename1410928e')"
},
"Exception" : null
}, {
"Method" : "POST",
"Uri" : "https://REDACTED.table.core.windows.net/tablename1410928e",
"Headers" : {
"x-ms-version" : "2019-02-02",
"User-Agent" : "azsdk-java-UnknownName/UnknownVersion (11.0.8; Mac OS X; 10.15.6)",
"x-ms-client-request-id" : "66b90cd1-3fd9-42c4-a95a-c9a7766e6fdb",
"Content-Type" : "application/json"
},
"Response" : {
"x-ms-version" : "2019-02-02",
"Server" : "Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0",
"X-Content-Type-Options" : "nosniff",
"retry-after" : "0",
"StatusCode" : "204",
"Date" : "Tue, 01 Sep 2020 09:09:14 GMT",
"Cache-Control" : "no-cache",
"ETag" : "W/datetime'2020-09-01T09%3A09%3A14.7106597Z'",
"DataServiceId" : "https://brsiegelsample.table.core.windows.net/tablename1410928e(PartitionKey='partitionkey06883c',RowKey='rowkey60363fa81')",
"Content-Length" : "0",
"x-ms-request-id" : "c8af5d97-8002-007e-593f-805a1b000000",
"Preference-Applied" : "return-no-content",
"x-ms-client-request-id" : "66b90cd1-3fd9-42c4-a95a-c9a7766e6fdb",
"Location" : "https://brsiegelsample.table.core.windows.net/tablename1410928e(PartitionKey='partitionkey06883c',RowKey='rowkey60363fa81')"
},
"Exception" : null
}, {
"Method" : "GET",
"Uri" : "https://REDACTED.table.core.windows.net/tablename1410928e(PartitionKey='partitionkey06883c',RowKey='rowkey60363fa81')?$format=application/json%3Bodata%3Dfullmetadata",
"Headers" : {
"x-ms-version" : "2019-02-02",
"User-Agent" : "azsdk-java-UnknownName/UnknownVersion (11.0.8; Mac OS X; 10.15.6)",
"x-ms-client-request-id" : "1298b5be-8b23-47b5-b083-e356d1ee4f49"
},
"Response" : {
"Transfer-Encoding" : "chunked",
"x-ms-version" : "2019-02-02",
"Server" : "Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0",
"X-Content-Type-Options" : "nosniff",
"retry-after" : "0",
"StatusCode" : "200",
"Date" : "Tue, 01 Sep 2020 09:09:14 GMT",
"Cache-Control" : "no-cache",
"ETag" : "W/datetime'2020-09-01T09%3A09%3A14.7106597Z'",
"x-ms-request-id" : "c8af5da1-8002-007e-603f-805a1b000000",
"Body" : "{\"odata.metadata\":\"https://brsiegelsample.table.core.windows.net/$metadata#tablename1410928e/@Element\",\"odata.type\":\"brsiegelsample.tablename1410928e\",\"odata.id\":\"https://brsiegelsample.table.core.windows.net/tablename1410928e(PartitionKey='partitionkey06883c',RowKey='rowkey60363fa81')\",\"odata.etag\":\"W/\\\"datetime'2020-09-01T09%3A09%3A14.7106597Z'\\\"\",\"odata.editLink\":\"tablename1410928e(PartitionKey='partitionkey06883c',RowKey='rowkey60363fa81')\",\"PartitionKey\":\"partitionkey06883c\",\"RowKey\":\"rowkey60363fa81\",\"Timestamp@odata.type\":\"Edm.DateTime\",\"Timestamp\":\"2020-09-01T09:09:14.7106597Z\",\"Int32TypeProperty\":1337,\"DateTypeProperty@odata.type\":\"Edm.DateTime\",\"DateTypeProperty\":\"2020-09-01T09:09:14.66Z\",\"BooleanTypeProperty\":true,\"OffsetDateTimeTypeProperty@odata.type\":\"Edm.DateTime\",\"OffsetDateTimeTypeProperty\":\"2020-09-01T09:09:14.660377Z\",\"BinaryTypeProperty@odata.type\":\"Edm.Binary\",\"BinaryTypeProperty\":\"VGVzdCB2YWx1ZQ==\",\"Int64TypeProperty@odata.type\":\"Edm.Int64\",\"Int64TypeProperty\":\"1337\",\"StringTypeProperty\":\"This is table entity\",\"GuidTypeProperty@odata.type\":\"Edm.Guid\",\"GuidTypeProperty\":\"a50ad59d-7f9c-4c75-aa3c-bd3bb3a2930b\",\"DoubleTypeProperty\":2.0}",
"x-ms-client-request-id" : "1298b5be-8b23-47b5-b083-e356d1ee4f49",
"Content-Type" : "application/json;odata=fullmetadata;streaming=true;charset=utf-8"
},
"Exception" : null
} ],
"variables" : [ "tablename1410928e", "partitionkey06883c", "rowkey60363fa81" ]
}

0 comments on commit 734bf07

Please sign in to comment.