-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
417 issue cant load an avro schema serializer from register (#420)
* using APICURIO when catch * change AvroSchema to schema and fix tests * Eliminar imports de AvroSchema de AvroCofluentExtractor y AvroCofluentExtractorTest * Fixed minor issue which appears after merging PR for issues 415 and 417 Signed-off-by: Pablo Rodríguez <[email protected]> * Fixed minor issue which appears after merging PR for issues 415 and 417 Signed-off-by: Pablo Rodríguez <[email protected]> * New File to test AvroConfluentExtractor * Revert "New File to test AvroConfluentExtractor" This reverts commit 8d78919. * New File to test AvroConfluentExtractor * Add test to verify extraction of a Schema * Add test for SchemaExtractor AVRO and CONFLUENT use case Remove useless exception throwing from tests * File test Updated * ExtractorFactoryTest with Mockito * ExtractorFactoryTest with Mockito * Adding authority * Added authorship * adding authorship to pom * Use of instanceof in AvroExtractor an 1 return * Updated pom.xml * Substitution of kafka ParsedSchema and factory metod fixing * Pom fixes * Updated version and checkstyle fixes in test * Uncomment test and fixes to use it plus checkstyle * codacy test errors * ExtractorFactoryTest checkstyle fixes * #417 Fix checkstyle * #417 Codacy issues * Bug fixes --------- Signed-off-by: Pablo Rodríguez <[email protected]> Co-authored-by: Pablo Rodríguez <[email protected]> Co-authored-by: Graciela Méndez Olmos <[email protected]> Co-authored-by: fvarela-sng <[email protected]> Co-authored-by: RobertoSngular <[email protected]> Co-authored-by: Jose Enrique García Maciñeiras <[email protected]>
- Loading branch information
1 parent
f0478f3
commit 819668f
Showing
43 changed files
with
540 additions
and
253 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
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 |
---|---|---|
|
@@ -301,6 +301,17 @@ | |
</roles> | ||
<timezone>Europe/Madrid</timezone> | ||
</developer> | ||
<developer> | ||
<id>RobertoSngular</id> | ||
<name>Roberto Riveira Veiga</name> | ||
<email>[email protected]</email> | ||
<organization>Sngular</organization> | ||
<organizationUrl>https://sngular.github.io/</organizationUrl> | ||
<roles> | ||
<role>Backend Developer</role> | ||
</roles> | ||
<timezone>Europe/Madrid</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
<artifactId>kloadgen</artifactId> | ||
|
||
<version>5.6.10</version> | ||
<version>5.6.11</version> | ||
|
||
<name>KLoadGen</name> | ||
<description>Load Generation Jmeter plugin for Kafka Cluster. Supporting AVRO, JSON Schema and Protobuf schema types. Generate Artificial | ||
|
@@ -310,6 +310,27 @@ | |
<roles> | ||
<role>Trainee Backend Developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>GraciMndzSNG</id> | ||
<name>Graciela Méndez Olmos</name> | ||
<email>[email protected]</email> | ||
<organization>Sngular</organization> | ||
<organizationUrl>https://sngular.github.io/</organizationUrl> | ||
<roles> | ||
<role>Backend Developer</role> | ||
</roles> | ||
<timezone>Europe/Madrid</timezone> | ||
</developer> | ||
<developer> | ||
<id>pablorodriguez-sngular</id> | ||
<name>Pablo Rodríguez Pérez</name> | ||
<email>[email protected]</email> | ||
<organization>Sngular</organization> | ||
<organizationUrl>https://sngular.github.io/</organizationUrl> | ||
<roles> | ||
<role>Backend Developer</role> | ||
</roles> | ||
<timezone>Europe/Madrid</timezone> | ||
</developer> | ||
</developers> | ||
|
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
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
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
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
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
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
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
2 changes: 1 addition & 1 deletion
2
...protobuff/AbstractProtoFileExtractor.java → .../protobuf/AbstractProtoFileExtractor.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
2 changes: 1 addition & 1 deletion
2
.../protobuff/ProtoBufApicurioExtractor.java → ...s/protobuf/ProtoBufApicurioExtractor.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
10 changes: 6 additions & 4 deletions
10
...protobuff/ProtoBufConfluentExtractor.java → .../protobuf/ProtoBufConfluentExtractor.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
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
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
13 changes: 13 additions & 0 deletions
13
src/main/java/com/sngular/kloadgen/parsedschema/IParsedSchema.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,13 @@ | ||
package com.sngular.kloadgen.parsedschema; | ||
|
||
public interface IParsedSchema<T> { | ||
|
||
String schemaType(); | ||
|
||
String name(); | ||
|
||
String canonicalString(); | ||
|
||
Object rawSchema(); | ||
|
||
} |
Oops, something went wrong.