package com.cedarsoft.serialization.stax.mate.primitives; import com.cedarsoft.serialization.StreamSerializer; import com.cedarsoft.serialization.test.utils.AbstractXmlSerializerTest2; import com.cedarsoft.serialization.test.utils.Entry; import org.junit.*; import org.junit.experimental.theories.*; import javax.annotation.Nonnull; import java.io.ByteArrayOutputStream; import java.io.FilterOutputStream; import java.io.IOException; import java.io.OutputStream; import static org.assertj.core.api.Fail.fail; /** * @author Johannes Schneider (<a href="mailto:js@cedarsoft.com">js@cedarsoft.com</a>) */ public class IntegerSerializerTest extends AbstractXmlSerializerTest2<Integer> { @Nonnull @Override protected StreamSerializer<Integer> getSerializer() throws Exception { return new IntegerSerializer(); } @Test public void testNotClose() throws Exception { final boolean[] shallAcceptClose = {false}; OutputStream out = new FilterOutputStream( new ByteArrayOutputStream() ) { private boolean closed; @Override public void close() throws IOException { if ( !shallAcceptClose[0] ) { fail( "Unacceptable close!" ); } super.close(); closed = true; } }; getSerializer().serialize( 123, out ); shallAcceptClose[0] = true; out.close(); } @DataPoint public static final Entry<?> ENTRY1 = create( 123, "<int>123</int>" ); @DataPoint public static final Entry<?> ENTRY3 = create( -123, "<int>-123</int>" ); @DataPoint public static final Entry<?> ENTRY4 = create( Integer.MAX_VALUE, "<int>2147483647</int>" ); @DataPoint public static final Entry<?> ENTRY5 = create( Integer.MIN_VALUE, "<int>-2147483648</int>" ); }