Skip to main content
summaryrefslogtreecommitdiffstats
blob: caa1a8272da3d06e5de85159d138ca4eae816994 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*******************************************************************************
 * Copyright (c) 2007, 2018 compeople AG and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * 	compeople AG (Stefan Liebig) - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.p2.tests.sar;

import static org.junit.Assert.*;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.util.Arrays;
import org.eclipse.equinox.internal.p2.sar.DirectByteArrayOutputStream;
import org.junit.Test;

/**
 * Test the <code>DirectByteArrayOutputStream</code>
 */
public class DirectByteArrayOutputStreamTest {

	private static final String JUST11BYTES = "just11bytes";
	private static final int ELEVEN = JUST11BYTES.getBytes().length;

	/**
	 * Test the constraints of the DBAOS
	 * 
	 * @throws IOException
	 */
	@Test
	public void testDBAOSConstraints() throws IOException {
		try (DirectByteArrayOutputStream out = new DirectByteArrayOutputStream(1024)) {
			out.write(JUST11BYTES.getBytes());
			assertEquals(ELEVEN, out.getBufferLength());
			assertEquals(ELEVEN, out.toByteArray().length);
			assertNotSame(out.toByteArray(), out.getBuffer());
			assertEquals(1024, out.getBuffer().length);
			assertEquals(JUST11BYTES, new String(out.getBuffer(), 0, out.getBufferLength()));
			ByteArrayInputStream in = out.getInputStream();
			assertEquals(ELEVEN, in.available());
			byte[] elevenBytes = new byte[ELEVEN];
			in.read(elevenBytes);
			assertTrue(Arrays.equals(JUST11BYTES.getBytes(), elevenBytes));
			assertEquals(-1, in.read());
		}
	}
}

Back to the top