Avro Utils
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.