blob: 9c9f3aec84bedc46c92ffde20e764a8c5ae50ed0 (
plain)
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
52
53
54
55
56
57
58
59
60
|
package com.jogamp.common.nio;
import java.io.IOException;
import jogamp.common.os.PlatformPropsImpl;
import com.jogamp.common.os.*;
import com.jogamp.junit.util.SingletonTestCase;
import org.junit.Assert;
import org.junit.Test;
import static java.lang.System.*;
import org.junit.FixMethodOrder;
import org.junit.runners.MethodSorters;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestPointerBufferEndian extends SingletonTestCase {
protected void testImpl (final boolean direct) {
final MachineDescription machine = Platform.getMachineDescription();
final int bitsPtr = machine.pointerSizeInBytes() * 8;
final String bitsProp = System.getProperty("sun.arch.data.model");
out.println("OS: <"+PlatformPropsImpl.OS+"> CPU: <"+PlatformPropsImpl.ARCH+"> Bits: <"+bitsPtr+"/"+bitsProp+">");
out.println(machine.toString());
final long[] valuesSource = { 0x0123456789ABCDEFL, 0x8877665544332211L, 0xAFFEDEADBEEFAFFEL };
final long[] values32Bit = { 0x0000000089ABCDEFL, 0x0000000044332211L, 0x00000000BEEFAFFEL };
final PointerBuffer ptr = direct ? PointerBuffer.allocateDirect(3) : PointerBuffer.allocate(valuesSource.length);
ptr.put(valuesSource, 0, valuesSource.length);
ptr.rewind();
int i=0;
while(ptr.hasRemaining()) {
final long v = ptr.get() ;
final long t = Platform.is32Bit() ? values32Bit[i] : valuesSource[i];
Assert.assertTrue("Value["+i+"] shall be 0x"+Long.toHexString(t)+", is: 0x"+Long.toHexString(v), t == v);
i++;
}
Assert.assertTrue("iterator "+i+" != "+valuesSource.length, i==valuesSource.length);
}
@Test
public void testDirect () {
testImpl (true);
}
@Test
public void testIndirect () {
testImpl (false);
}
public static void main(final String args[]) throws IOException {
final String tstname = TestPointerBufferEndian.class.getName();
org.junit.runner.JUnitCore.main(tstname);
}
}
|