Avro utilities

Provides a set of utilities for use with Avro

License

License

Categories

Categories

ORM Data
GroupId

GroupId

com.marvinformatics
ArtifactId

ArtifactId

avro-utils
Last Version

Last Version

0.8
Release Date

Release Date

Type

Type

jar
Description

Description

Avro utilities
Provides a set of utilities for use with Avro
Project URL

Project URL

https://github.com/velo/avro-utils
Project Organization

Project Organization

Byhiras (Europe) Limited
Source Code Management

Source Code Management

https://github.com/velo/avro-utils/

Download avro-utils

How to add to project

<!-- https://jarcasting.com/artifacts/com.marvinformatics/avro-utils/ -->
<dependency>
    <groupId>com.marvinformatics</groupId>
    <artifactId>avro-utils</artifactId>
    <version>0.8</version>
</dependency>
// https://jarcasting.com/artifacts/com.marvinformatics/avro-utils/
implementation 'com.marvinformatics:avro-utils:0.8'
// https://jarcasting.com/artifacts/com.marvinformatics/avro-utils/
implementation ("com.marvinformatics:avro-utils:0.8")
'com.marvinformatics:avro-utils:jar:0.8'
<dependency org="com.marvinformatics" name="avro-utils" rev="0.8">
  <artifact name="avro-utils" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.marvinformatics', module='avro-utils', version='0.8')
)
libraryDependencies += "com.marvinformatics" % "avro-utils" % "0.8"
[com.marvinformatics/avro-utils "0.8"]

Dependencies

compile (5)

Group / Artifact Type Version
org.apache.avro : avro jar 1.7.7
com.google.guava : guava jar 12.0
com.google.code.findbugs : jsr305 jar 1.3.9
org.hamcrest : hamcrest-core jar 1.3
org.hamcrest : hamcrest-library jar 1.3

test (4)

Group / Artifact Type Version
junit : junit jar 4.12
org.jmock : jmock-junit4 jar 2.8.1
org.jmock : jmock jar 2.8.1
org.jmock : jmock-legacy jar 2.8.1

Project Modules

There are no modules declared in this project.

Avro Utils

Build Status Coverage Status Maven Central Issues Forks Stars

Provides a set of utilities for use with Avro:

IsAvroObjectEqual.java

HamCrest matcher to assert Avro Specific objects, and use Avro with mocking frameworks such as Jmock and Mockito. Usage:

import static org.hamcrest.MatcherAssert.assertThat;
import static com.byhiras.avro.IsAvroObjectEqual.isAvroObjectEqualTo
...
assertThat( actualResult, isAvroObjectEqualTo( expectedResult ));

Or with expectations:

mockery.checking(new Expectations() {{
   oneOf().myFunction( with(isAvroObjectEqualTo( expectedAvroObject )));
}});

IsAvroIterableContaining.java

HamCrest matcher which takes an iterable of Avro objects and wraps them in IsAvoObjectEqualTo matchers. Also attempts to print out much more readable descriptions that pinpoint the item that is different. Usage:

import static com.byhiras.avro.IsAvroIterableContaining.contains;
...
assertThat( actualList, contains( expectedList ));

License

Copyright 2016 Byhiras (Europe) Limited

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Versions

Version
0.8