Skip to content

Commit 8c17394

Browse files
authoredJul 22, 2024··
Add new field "description" in attribute_metadata.proto (#233)
* add new field "description" in attribute_metadata.proto and make changes to accommodate in AttributeMetadataModelTest * add new field "description" in attribute_metadata.proto and make changes to accommodate in AttributeMetadataModelTest * Fix spotless check failing * Add separate backwards comptibility tests for description * minor changes to description implementation * reverted integration tests
1 parent 3d4b62f commit 8c17394

File tree

3 files changed

+95
-4
lines changed

3 files changed

+95
-4
lines changed
 

‎attribute-service-api/src/main/proto/org/hypertrace/core/attribute/service/v1/attribute_metadata.proto

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ message AttributeMetadata {
103103
string scope_string = 17;
104104
bool internal = 18;
105105
bool custom = 19;
106+
string description = 20;
106107
}
107108

108109
message AttributeSourceMetadata {

‎attribute-service-impl/src/main/java/org/hypertrace/core/attribute/service/model/AttributeMetadataModel.java

+21-2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ public class AttributeMetadataModel implements Document {
7777

7878
private boolean internal;
7979

80+
@JsonProperty(value = "description")
81+
private String description;
82+
8083
protected AttributeMetadataModel() {}
8184

8285
public static AttributeMetadataModel fromDTO(AttributeMetadata attributeMetadata) {
@@ -97,6 +100,7 @@ public static AttributeMetadataModel fromDTO(AttributeMetadata attributeMetadata
97100
attributeMetadataModel.setSources(attributeMetadata.getSourcesList());
98101
attributeMetadataModel.setGroupable(attributeMetadata.getGroupable());
99102
attributeMetadataModel.setDefinition(attributeMetadata.getDefinition());
103+
attributeMetadataModel.setDescription(attributeMetadata.getDescription());
100104
attributeMetadataModel.setMetadata(
101105
attributeMetadata.getMetadataMap().entrySet().stream()
102106
.collect(
@@ -148,6 +152,14 @@ public void setDisplayName(String displayName) {
148152
this.displayName = displayName;
149153
}
150154

155+
public void setDescription(String description) {
156+
this.description = description;
157+
}
158+
159+
public String getDescription() {
160+
return description;
161+
}
162+
151163
public String getScopeString() {
152164
return this.scopeString;
153165
}
@@ -294,6 +306,9 @@ public AttributeMetadata.Builder toDTOBuilder() {
294306
if (!definition.equals(AttributeDefinition.getDefaultInstance())) {
295307
builder.setDefinition(definition);
296308
}
309+
if (description != null) {
310+
builder.setDescription(description);
311+
}
297312

298313
return builder;
299314
}
@@ -349,6 +364,8 @@ public String toString() {
349364
+ metadata
350365
+ ", internal="
351366
+ internal
367+
+ ", description="
368+
+ description
352369
+ '}';
353370
}
354371

@@ -377,7 +394,8 @@ public boolean equals(Object o) {
377394
&& Objects.equals(metadata, that.metadata)
378395
&& Objects.equals(definition, that.definition)
379396
&& Objects.equals(scopeString, that.scopeString)
380-
&& Objects.equals(internal, that.internal);
397+
&& Objects.equals(internal, that.internal)
398+
&& Objects.equals(description, that.description);
381399
}
382400

383401
@Override
@@ -399,7 +417,8 @@ public int hashCode() {
399417
metadata,
400418
definition,
401419
scopeString,
402-
internal);
420+
internal,
421+
description);
403422
}
404423

405424
private static class ProtobufMessageSerializer extends JsonSerializer<Message> {

‎attribute-service-impl/src/test/java/org/hypertrace/core/attribute/service/model/AttributeMetadataModelTest.java

+73-2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public void testAttributeMetadataModelJsonSerDes() throws IOException {
4040
.setProjection(Projection.newBuilder().setAttributeId("test"))
4141
.build());
4242
attributeMetadataModel.setInternal(true);
43+
attributeMetadataModel.setDescription("description");
4344

4445
String json = attributeMetadataModel.toJson();
4546
String expectedJson =
@@ -60,7 +61,8 @@ public void testAttributeMetadataModelJsonSerDes() throws IOException {
6061
+ "\"value_kind\":\"TYPE_STRING\","
6162
+ "\"display_name\":\"Some Name\","
6263
+ "\"scope_string\":\"EVENT\","
63-
+ "\"tenant_id\":\"tenantId\""
64+
+ "\"tenant_id\":\"tenantId\","
65+
+ "\"description\":\"description\""
6466
+ "}";
6567
Assertions.assertEquals(expectedJson, json);
6668
AttributeMetadataModel deserializedModel = AttributeMetadataModel.fromJson(json);
@@ -82,6 +84,7 @@ public void testAttributeMetaModelToFromDto() {
8284
.setType(AttributeType.ATTRIBUTE)
8385
.setUnit("ms")
8486
.setValueKind(AttributeKind.TYPE_STRING)
87+
.setDescription("description")
8588
.putAllMetadata(
8689
Collections.singletonMap(
8790
AttributeSource.EDS.name(),
@@ -236,6 +239,7 @@ public void testAttributeDefinitionBackwardsCompatibility() throws IOException {
236239
.setType(AttributeType.ATTRIBUTE)
237240
.setUnit("ms")
238241
.setValueKind(AttributeKind.TYPE_STRING)
242+
.setDescription("Description")
239243
.build());
240244

241245
String expectedJson =
@@ -256,11 +260,78 @@ public void testAttributeDefinitionBackwardsCompatibility() throws IOException {
256260
+ "\"value_kind\":\"TYPE_STRING\","
257261
+ "\"display_name\":\"Display\","
258262
+ "\"scope_string\":\"EVENT\","
259-
+ "\"tenant_id\":null"
263+
+ "\"tenant_id\":null,"
264+
+ "\"description\":\"Description\""
260265
+ "}";
261266
Assertions.assertEquals(expectedJson, modelFromMetadataWithoutDefinition.toJson());
262267
}
263268

269+
@Test
270+
public void testAttributeDescriptionBackwardsCompatibility() throws IOException {
271+
String json =
272+
"{"
273+
+ "\"fqn\":\"fqn\","
274+
+ "\"key\":\"key\","
275+
+ "\"scope\":\"EVENT\","
276+
+ "\"materialized\":true,"
277+
+ "\"unit\":\"ms\","
278+
+ "\"type\":\"ATTRIBUTE\","
279+
+ "\"labels\":[\"item1\"],"
280+
+ "\"groupable\":true,"
281+
+ "\"supportedAggregations\":[],"
282+
+ "\"onlyAggregationsAllowed\":false,"
283+
+ "\"sources\":[],"
284+
+ "\"definition\":{},"
285+
+ "\"id\":\"EVENT.key\","
286+
+ "\"value_kind\":\"TYPE_BOOL\","
287+
+ "\"display_name\":\"Some Name\","
288+
+ "\"tenant_id\":\"tenantId\""
289+
+ "}";
290+
291+
AttributeMetadataModel deserializedModel = AttributeMetadataModel.fromJson(json);
292+
Assertions.assertNull(deserializedModel.getDescription());
293+
AttributeMetadata metadata = deserializedModel.toDTO();
294+
Assertions.assertEquals("", metadata.getDescription());
295+
296+
AttributeMetadataModel modelFromMetadataWithoutDescription =
297+
AttributeMetadataModel.fromDTO(
298+
AttributeMetadata.newBuilder()
299+
.setFqn("fqn")
300+
.setId("id")
301+
.setKey("key")
302+
.setDisplayName("Display")
303+
.setMaterialized(true)
304+
.setScope(AttributeScope.EVENT)
305+
.setDescription(AttributeDefinition.getDefaultInstance().toString())
306+
.setType(AttributeType.ATTRIBUTE)
307+
.setUnit("ms")
308+
.setValueKind(AttributeKind.TYPE_STRING)
309+
.build());
310+
311+
String expectedJson =
312+
"{"
313+
+ "\"fqn\":\"fqn\","
314+
+ "\"key\":\"key\","
315+
+ "\"materialized\":true,"
316+
+ "\"unit\":\"ms\","
317+
+ "\"type\":\"ATTRIBUTE\","
318+
+ "\"labels\":[],"
319+
+ "\"groupable\":false,"
320+
+ "\"supportedAggregations\":[],"
321+
+ "\"onlyAggregationsAllowed\":false,"
322+
+ "\"sources\":[],"
323+
+ "\"definition\":{},"
324+
+ "\"internal\":false,"
325+
+ "\"id\":\"EVENT.key\","
326+
+ "\"value_kind\":\"TYPE_STRING\","
327+
+ "\"display_name\":\"Display\","
328+
+ "\"scope_string\":\"EVENT\","
329+
+ "\"tenant_id\":null,"
330+
+ "\"description\":\"\""
331+
+ "}";
332+
Assertions.assertEquals(expectedJson, modelFromMetadataWithoutDescription.toJson());
333+
}
334+
264335
@Test
265336
void testScopeStringCompatibility() throws IOException {
266337
final AttributeMetadata template =

0 commit comments

Comments
 (0)
Please sign in to comment.