-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
308 changed files
with
9,929 additions
and
1,194 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.kendar.protocol</groupId> | ||
<artifactId>protocol-master</artifactId> | ||
<version>1.1.0</version> | ||
</parent> | ||
|
||
<artifactId>jacoco</artifactId> | ||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>org.kendar.protocol</groupId> | ||
<artifactId>protocol-mongo</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.kendar.protocol</groupId> | ||
<artifactId>protocol-postgres</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.kendar.protocol</groupId> | ||
<artifactId>protocol-amqp-091</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.kendar.protocol</groupId> | ||
<artifactId>protocol-mysql</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<version>1.8</version> | ||
<executions> | ||
<execution> | ||
<phase>test</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<target name="report"> | ||
<echo message="Generating JaCoCo Reports"/> | ||
<taskdef name="report" | ||
classname="org.jacoco.ant.ReportTask"> | ||
<classpath | ||
path="**/*.jar"/> | ||
</taskdef> | ||
<mkdir dir="${basedir}/target/coverage-report"/> | ||
<report> | ||
<executiondata> | ||
<fileset dir="${basedir}/../protocol-amqp-091/target"> | ||
<include name="*.exec"/> | ||
</fileset> | ||
<fileset dir="${basedir}/../protocol-common/target"> | ||
<include name="*.exec"/> | ||
</fileset> | ||
<fileset dir="${basedir}/../protocol-mongo/target"> | ||
<include name="*.exec"/> | ||
</fileset> | ||
<fileset dir="${basedir}/../protocol-mysql/target"> | ||
<include name="*.exec"/> | ||
</fileset> | ||
<fileset dir="${basedir}/../protocol-postgres/target"> | ||
<include name="*.exec"/> | ||
</fileset> | ||
</executiondata> | ||
<structure name="Integration Tests Coverage Report"> | ||
<sourcefiles encoding="UTF-8"> | ||
<dirset dir="${basedir}/../protocol-amqp-091"> | ||
<include name="**/src/main/java"/> | ||
</dirset> | ||
<dirset dir="${basedir}/../protocol-common"> | ||
<include name="**/src/main/java"/> | ||
</dirset> | ||
<dirset dir="${basedir}/../protocol-mongo"> | ||
<include name="**/src/main/java"/> | ||
</dirset> | ||
<dirset dir="${basedir}/../protocol-mysql"> | ||
<include name="**/src/main/java"/> | ||
</dirset> | ||
<dirset dir="${basedir}/../protocol-postgres"> | ||
<include name="**/src/main/java"/> | ||
</dirset> | ||
</sourcefiles> | ||
<classfiles> | ||
<fileset dir="${basedir}/../protocol-amqp-091/target/classes"> | ||
<include name="org/kendar/**/*"/> | ||
</fileset> | ||
<fileset dir="${basedir}/../protocol-common/target/classes"> | ||
<include name="org/kendar/**/*"/> | ||
</fileset> | ||
<fileset dir="${basedir}/../protocol-mongo/target/classes"> | ||
<include name="org/kendar/**/*"/> | ||
</fileset> | ||
<fileset dir="${basedir}/../protocol-mysql/target/classes"> | ||
<include name="org/kendar/**/*"/> | ||
</fileset> | ||
<fileset dir="${basedir}/../protocol-postgres/target/classes"> | ||
<include name="org/kendar/**/*"/> | ||
</fileset> | ||
</classfiles> | ||
</structure> | ||
<html destdir="${basedir}/target/coverage-report/html"/> | ||
</report> | ||
</target> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>org.jacoco.ant</artifactId> | ||
<version>0.8.2</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## AMQP 0.9.1 Protocol | ||
|
||
## Documentation used | ||
|
||
* https://www.rabbitmq.com/resources/specs/amqp0-9-1.pdf (page 31) | ||
* https://docs.vmware.com/en/VMware-RabbitMQ-for-Kubernetes/1/rmq/amqp-wireshark.html | ||
* https://dzone.com/refcardz/amqp-essentials (amqp 1.0) | ||
* https://github.com/cloudamqp/amqproxy | ||
* https://crystal-lang.org/api/1.11.2 | ||
* https://github.com/wireshark/wireshark/blob/master/epan/dissectors/packet-amqp.c | ||
* https://github.com/bloomberg/amqpprox/tree/main/libamqpprox | ||
* https://stackoverflow.com/questions/18403623/rabbitmq-amqp-basicproperties-builder-values | ||
* https://www.ascii-code.com/ | ||
|
||
|
||
* v0.9.1 vs 0.10.0 | ||
* https://github.com/rabbitmq/rabbitmq-server/blob/main/deps/rabbitmq_amqp1_0/README.md | ||
|
||
## Weirdness | ||
|
||
amqp0-9-1.pdf, section 4.2.3 | ||
The size is an INTEGER not a long |
Oops, something went wrong.