use of com.spotify.protoman.descriptor.DescriptorSet in project protoman by spotify.
the class FieldJsonNameRuleTest method testJsonNameChanged.
@Test
public void testJsonNameChanged() throws Exception {
final DescriptorSet current = DescriptorSetUtils.buildDescriptorSet("foo/bar/a.proto", "syntax = 'proto3';\n" + "package foo.bar;\n" + "message AMessage {\n" + " int32 a_field = 1;\n" + "}");
final DescriptorSet candidate = DescriptorSetUtils.buildDescriptorSet("foo/bar/a.proto", "syntax = 'proto3';\n" + "package foo.bar;\n" + "message AMessage {\n" + " // oopsie\n" + " int32 a_field = 1 [json_name = 'afield'];\n" + "}");
final ImmutableList<ValidationViolation> violations = schemaValidator.validate(current, candidate);
assertThat(violations, contains(validationViolation().type(equalTo(ViolationType.JSON_ENCODING_INCOMPATIBILITY)).description(equalTo("json name changed (aField -> afield)")).current(genericDescriptor().sourceCodeInfo(optionalWithValue(sourceCodeInfo().start(filePosition().line(4).column(3))))).candidate(genericDescriptor().sourceCodeInfo(optionalWithValue(sourceCodeInfo().start(filePosition().line(5).column(3)))))));
}
use of com.spotify.protoman.descriptor.DescriptorSet in project protoman by spotify.
the class FieldLabelRuleTest method testLabelNotChanged.
@Parameters(method = "fieldLabels")
@Test
public void testLabelNotChanged(final String label) throws Exception {
final DescriptorSet candidate = DescriptorSetUtils.buildDescriptorSet("foo/bar/a.proto", String.format("syntax = 'proto2';\n" + "message AMessage {\n" + " %s int32 a_field = 1;" + "}", label));
final ImmutableList<ValidationViolation> violations = schemaValidator.validate(candidate, candidate);
assertThat(violations, is(empty()));
}
use of com.spotify.protoman.descriptor.DescriptorSet in project protoman by spotify.
the class FieldNameChangeRuleTest method testFieldNameChanged.
@Test
public void testFieldNameChanged() throws Exception {
final DescriptorSet current = DescriptorSetUtils.buildDescriptorSet("foo/bar/a.proto", "syntax = 'proto3';\n" + "message Herp {\n" + " int32 derp = 1;\n" + "}");
final DescriptorSet candidate = DescriptorSetUtils.buildDescriptorSet("foo/bar/a.proto", "syntax = 'proto3';\n" + "message Herp {\n" + " int32 herp_a_derp = 1;\n" + "}");
final ImmutableList<ValidationViolation> violations = schemaValidator.validate(current, candidate);
assertThat(violations, contains(validationViolation().type(equalTo(ViolationType.GENERATED_SOURCE_CODE_INCOMPATIBILITY_VIOLATION)).description(equalTo("field name changed"))));
}
use of com.spotify.protoman.descriptor.DescriptorSet in project protoman by spotify.
the class FieldNamingRuleTest method testAllowedName_new.
@Parameters(method = "allowedNames")
@Test
public void testAllowedName_new(final String name) throws Exception {
final DescriptorSet current = DescriptorSet.empty();
final DescriptorSet candidate = DescriptorSetUtils.buildDescriptorSet("a.proto", String.format(TEMPLATE, name));
final ImmutableList<ValidationViolation> violations = schemaValidator.validate(current, candidate);
assertThat(violations, is(empty()));
}
use of com.spotify.protoman.descriptor.DescriptorSet in project protoman by spotify.
the class FieldTypeCompatibilityRuleTest method testFieldTypeUnchanged.
@Parameters(method = "typeUnchanged")
@Test
public void testFieldTypeUnchanged(final String typeName) throws Exception {
final DescriptorSet current = DescriptorSetUtils.buildDescriptorSet("a.proto", String.format(TEMPLATE, typeName));
final DescriptorSet candidate = DescriptorSetUtils.buildDescriptorSet("a.proto", String.format(TEMPLATE, typeName));
final ImmutableList<ValidationViolation> violations = schemaValidator.validate(current, candidate);
assertThat(violations, is(empty()));
}
Aggregations