/gemfire-core/src/test/java/com/gemstone/gemfire/internal/offheap/DataTypeJUnitTest.java

https://gitlab.com/kidaa/incubator-geode · Java · 617 lines · 598 code · 6 blank · 13 comment · 3 complexity · b1fb5da0fa63e5de6bd3e74aeabe1f18 MD5 · raw file

  1. package com.gemstone.gemfire.internal.offheap;
  2. import static org.junit.Assert.assertEquals;
  3. import java.io.ByteArrayOutputStream;
  4. import java.io.DataOutputStream;
  5. import java.io.File;
  6. import java.io.IOException;
  7. import java.io.Serializable;
  8. import java.math.BigDecimal;
  9. import java.math.BigInteger;
  10. import java.net.InetAddress;
  11. import java.util.ArrayList;
  12. import java.util.Date;
  13. import java.util.EnumSet;
  14. import java.util.HashMap;
  15. import java.util.HashSet;
  16. import java.util.Hashtable;
  17. import java.util.IdentityHashMap;
  18. import java.util.LinkedHashSet;
  19. import java.util.LinkedList;
  20. import java.util.Properties;
  21. import java.util.Random;
  22. import java.util.Stack;
  23. import java.util.TreeMap;
  24. import java.util.TreeSet;
  25. import java.util.UUID;
  26. import java.util.Vector;
  27. import java.util.concurrent.ConcurrentHashMap;
  28. import java.util.concurrent.TimeUnit;
  29. import org.junit.Ignore;
  30. import org.junit.Test;
  31. import org.junit.experimental.categories.Category;
  32. import com.gemstone.gemfire.DataSerializer;
  33. import com.gemstone.gemfire.distributed.internal.ReplyMessage;
  34. import com.gemstone.gemfire.internal.DSCODE;
  35. import com.gemstone.gemfire.internal.DataSerializableFixedID;
  36. import com.gemstone.gemfire.internal.DataSerializableJUnitTest.DataSerializableImpl;
  37. import com.gemstone.gemfire.internal.InternalDataSerializer;
  38. import com.gemstone.gemfire.internal.admin.remote.ShutdownAllResponse;
  39. import com.gemstone.gemfire.test.junit.categories.UnitTest;
  40. /**
  41. * Tests the DataType support for off-heap MemoryInspector.
  42. * @author Kirk Lund
  43. */
  44. @Category(UnitTest.class)
  45. public class DataTypeJUnitTest {
  46. @Test
  47. public void testDataSerializableFixedIDByte() throws IOException {
  48. DataSerializableFixedID value = new ReplyMessage();
  49. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  50. DataOutputStream out = new DataOutputStream(baos);
  51. InternalDataSerializer.writeDSFID(value, out);
  52. byte[] bytes = baos.toByteArray();
  53. String type = DataType.getDataType(bytes);
  54. assertEquals("com.gemstone.gemfire.internal.DataSerializableFixedID:" + ReplyMessage.class.getName(), type);
  55. }
  56. @Test
  57. public void testDataSerializableFixedIDShort() throws IOException {
  58. DataSerializableFixedID value = new ShutdownAllResponse();
  59. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  60. DataOutputStream out = new DataOutputStream(baos);
  61. InternalDataSerializer.writeDSFID(value, out);
  62. byte[] bytes = baos.toByteArray();
  63. String type = DataType.getDataType(bytes);
  64. assertEquals("com.gemstone.gemfire.internal.DataSerializableFixedID:" + ShutdownAllResponse.class.getName(), type);
  65. }
  66. @Ignore
  67. @Test
  68. public void testDataSerializableFixedIDInt() throws IOException {
  69. // impl this if we ever have a Message class that can be instantiated in a unit test
  70. }
  71. @Test
  72. public void testNull() throws IOException {
  73. Object value = null;
  74. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  75. DataOutputStream out = new DataOutputStream(baos);
  76. DataSerializer.writeObject(value, out);
  77. byte[] bytes = baos.toByteArray();
  78. String type = DataType.getDataType(bytes);
  79. assertEquals("null", type);
  80. }
  81. @Test
  82. public void testString() throws IOException {
  83. String value = "this is a string";
  84. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  85. DataOutputStream out = new DataOutputStream(baos);
  86. DataSerializer.writeObject(value, out);
  87. byte[] bytes = baos.toByteArray();
  88. String type = DataType.getDataType(bytes);
  89. assertEquals("java.lang.String", type);
  90. }
  91. @Test
  92. public void testNullString() throws IOException {
  93. String value = null;
  94. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  95. DataOutputStream out = new DataOutputStream(baos);
  96. DataSerializer.writeString(value, out);
  97. byte[] bytes = baos.toByteArray();
  98. String type = DataType.getDataType(bytes);
  99. assertEquals("java.lang.String", type);
  100. }
  101. @Test
  102. public void testClass() throws IOException {
  103. Class<?> value = String.class;
  104. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  105. DataOutputStream out = new DataOutputStream(baos);
  106. DataSerializer.writeObject(value, out);
  107. byte[] bytes = baos.toByteArray();
  108. String type = DataType.getDataType(bytes);
  109. assertEquals("java.lang.Class", type);
  110. }
  111. @Test
  112. public void testDate() throws IOException {
  113. Date value = new Date();
  114. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  115. DataOutputStream out = new DataOutputStream(baos);
  116. DataSerializer.writeObject(value, out); // NOT writeDate
  117. byte[] bytes = baos.toByteArray();
  118. String type = DataType.getDataType(bytes);
  119. assertEquals("java.util.Date", type);
  120. }
  121. @Test
  122. public void testFile() throws IOException {
  123. File value = new File("tmp");
  124. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  125. DataOutputStream out = new DataOutputStream(baos);
  126. DataSerializer.writeObject(value, out);
  127. byte[] bytes = baos.toByteArray();
  128. String type = DataType.getDataType(bytes);
  129. assertEquals("java.io.File", type);
  130. }
  131. @Test
  132. public void testInetAddress() throws IOException {
  133. InetAddress value = InetAddress.getLocalHost();
  134. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  135. DataOutputStream out = new DataOutputStream(baos);
  136. DataSerializer.writeObject(value, out);
  137. byte[] bytes = baos.toByteArray();
  138. String type = DataType.getDataType(bytes);
  139. assertEquals("java.net.InetAddress", type);
  140. }
  141. @Test
  142. public void testCharacter() throws IOException {
  143. Character value = Character.valueOf('c');
  144. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  145. DataOutputStream out = new DataOutputStream(baos);
  146. DataSerializer.writeObject(value, out);
  147. byte[] bytes = baos.toByteArray();
  148. String type = DataType.getDataType(bytes);
  149. assertEquals("java.lang.Character", type);
  150. }
  151. @Test
  152. public void testByte() throws IOException {
  153. Byte value = Byte.valueOf((byte)0);
  154. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  155. DataOutputStream out = new DataOutputStream(baos);
  156. DataSerializer.writeObject(value, out);
  157. byte[] bytes = baos.toByteArray();
  158. String type = DataType.getDataType(bytes);
  159. assertEquals("java.lang.Byte", type);
  160. }
  161. @Test
  162. public void testShort() throws IOException {
  163. Short value = Short.valueOf((short)1);
  164. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  165. DataOutputStream out = new DataOutputStream(baos);
  166. DataSerializer.writeObject(value, out);
  167. byte[] bytes = baos.toByteArray();
  168. String type = DataType.getDataType(bytes);
  169. assertEquals("java.lang.Short", type);
  170. }
  171. @Test
  172. public void testInteger() throws IOException {
  173. Integer value = Integer.valueOf(1);
  174. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  175. DataOutputStream out = new DataOutputStream(baos);
  176. DataSerializer.writeObject(value, out);
  177. byte[] bytes = baos.toByteArray();
  178. String type = DataType.getDataType(bytes);
  179. assertEquals("java.lang.Integer", type);
  180. }
  181. @Test
  182. public void testLong() throws IOException {
  183. Long value = Long.valueOf(1);
  184. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  185. DataOutputStream out = new DataOutputStream(baos);
  186. DataSerializer.writeObject(value, out);
  187. byte[] bytes = baos.toByteArray();
  188. String type = DataType.getDataType(bytes);
  189. assertEquals("java.lang.Long", type);
  190. }
  191. @Test
  192. public void testFloat() throws IOException {
  193. Float value = Float.valueOf((float)1.0);
  194. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  195. DataOutputStream out = new DataOutputStream(baos);
  196. DataSerializer.writeObject(value, out);
  197. byte[] bytes = baos.toByteArray();
  198. String type = DataType.getDataType(bytes);
  199. assertEquals("java.lang.Float", type);
  200. }
  201. @Test
  202. public void testDouble() throws IOException {
  203. Double value = Double.valueOf((double)1.0);
  204. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  205. DataOutputStream out = new DataOutputStream(baos);
  206. DataSerializer.writeObject(value, out);
  207. byte[] bytes = baos.toByteArray();
  208. String type = DataType.getDataType(bytes);
  209. assertEquals("java.lang.Double", type);
  210. }
  211. @Test
  212. public void testByteArray() throws IOException {
  213. byte[] value = new byte[10];
  214. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  215. DataOutputStream out = new DataOutputStream(baos);
  216. DataSerializer.writeObject(value, out);
  217. byte[] bytes = baos.toByteArray();
  218. String type = DataType.getDataType(bytes);
  219. assertEquals("byte[]", type);
  220. }
  221. @Test
  222. public void testByteArrays() throws IOException {
  223. byte[][] value = new byte[1][1];
  224. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  225. DataOutputStream out = new DataOutputStream(baos);
  226. DataSerializer.writeObject(value, out);
  227. byte[] bytes = baos.toByteArray();
  228. String type = DataType.getDataType(bytes);
  229. assertEquals("byte[][]", type);
  230. }
  231. @Test
  232. public void testShortArray() throws IOException {
  233. short[] value = new short[1];
  234. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  235. DataOutputStream out = new DataOutputStream(baos);
  236. DataSerializer.writeObject(value, out);
  237. byte[] bytes = baos.toByteArray();
  238. String type = DataType.getDataType(bytes);
  239. assertEquals("short[]", type);
  240. }
  241. @Test
  242. public void testStringArray() throws IOException {
  243. String[] value = new String[1];
  244. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  245. DataOutputStream out = new DataOutputStream(baos);
  246. DataSerializer.writeObject(value, out);
  247. byte[] bytes = baos.toByteArray();
  248. String type = DataType.getDataType(bytes);
  249. assertEquals("java.lang.String[]", type);
  250. }
  251. @Test
  252. public void testIntArray() throws IOException {
  253. int[] value = new int[1];
  254. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  255. DataOutputStream out = new DataOutputStream(baos);
  256. DataSerializer.writeObject(value, out);
  257. byte[] bytes = baos.toByteArray();
  258. String type = DataType.getDataType(bytes);
  259. assertEquals("int[]", type);
  260. }
  261. @Test
  262. public void testFloatArray() throws IOException {
  263. float[] value = new float[1];
  264. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  265. DataOutputStream out = new DataOutputStream(baos);
  266. DataSerializer.writeObject(value, out);
  267. byte[] bytes = baos.toByteArray();
  268. String type = DataType.getDataType(bytes);
  269. assertEquals("float[]", type);
  270. }
  271. @Test
  272. public void testLongArray() throws IOException {
  273. long[] value = new long[1];
  274. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  275. DataOutputStream out = new DataOutputStream(baos);
  276. DataSerializer.writeObject(value, out);
  277. byte[] bytes = baos.toByteArray();
  278. String type = DataType.getDataType(bytes);
  279. assertEquals("long[]", type);
  280. }
  281. @Test
  282. public void testDoubleArray() throws IOException {
  283. double[] value = new double[1];
  284. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  285. DataOutputStream out = new DataOutputStream(baos);
  286. DataSerializer.writeObject(value, out);
  287. byte[] bytes = baos.toByteArray();
  288. String type = DataType.getDataType(bytes);
  289. assertEquals("double[]", type);
  290. }
  291. @Test
  292. public void testBooleanArray() throws IOException {
  293. boolean[] value = new boolean[1];
  294. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  295. DataOutputStream out = new DataOutputStream(baos);
  296. DataSerializer.writeObject(value, out);
  297. byte[] bytes = baos.toByteArray();
  298. String type = DataType.getDataType(bytes);
  299. assertEquals("boolean[]", type);
  300. }
  301. @Test
  302. public void testCharArray() throws IOException {
  303. char[] value = new char[1];
  304. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  305. DataOutputStream out = new DataOutputStream(baos);
  306. DataSerializer.writeObject(value, out);
  307. byte[] bytes = baos.toByteArray();
  308. String type = DataType.getDataType(bytes);
  309. assertEquals("char[]", type);
  310. }
  311. @Test
  312. public void testObjectArray() throws IOException {
  313. Object[] value = new Object[1];
  314. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  315. DataOutputStream out = new DataOutputStream(baos);
  316. DataSerializer.writeObject(value, out);
  317. byte[] bytes = baos.toByteArray();
  318. String type = DataType.getDataType(bytes);
  319. assertEquals("java.lang.Object[]", type);
  320. }
  321. @Test
  322. public void testArrayList() throws IOException {
  323. ArrayList<Object> value = new ArrayList<Object>();
  324. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  325. DataOutputStream out = new DataOutputStream(baos);
  326. DataSerializer.writeObject(value, out);
  327. byte[] bytes = baos.toByteArray();
  328. String type = DataType.getDataType(bytes);
  329. assertEquals("java.util.ArrayList", type);
  330. }
  331. @Test
  332. public void testLinkedList() throws IOException {
  333. LinkedList<Object> value = new LinkedList<Object>();
  334. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  335. DataOutputStream out = new DataOutputStream(baos);
  336. DataSerializer.writeObject(value, out);
  337. byte[] bytes = baos.toByteArray();
  338. String type = DataType.getDataType(bytes);
  339. assertEquals("java.util.LinkedList", type);
  340. }
  341. @Test
  342. public void testHashSet() throws IOException {
  343. HashSet<Object> value = new HashSet<Object>();
  344. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  345. DataOutputStream out = new DataOutputStream(baos);
  346. DataSerializer.writeObject(value, out);
  347. byte[] bytes = baos.toByteArray();
  348. String type = DataType.getDataType(bytes);
  349. assertEquals("java.util.HashSet", type);
  350. }
  351. @Test
  352. public void testLinkedHashSet() throws IOException {
  353. LinkedHashSet<Object> value = new LinkedHashSet<Object>();
  354. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  355. DataOutputStream out = new DataOutputStream(baos);
  356. DataSerializer.writeObject(value, out);
  357. byte[] bytes = baos.toByteArray();
  358. String type = DataType.getDataType(bytes);
  359. assertEquals("java.util.LinkedHashSet", type);
  360. }
  361. @Test
  362. public void testHashMap() throws IOException {
  363. HashMap<Object,Object> value = new HashMap<Object,Object>();
  364. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  365. DataOutputStream out = new DataOutputStream(baos);
  366. DataSerializer.writeObject(value, out);
  367. byte[] bytes = baos.toByteArray();
  368. String type = DataType.getDataType(bytes);
  369. assertEquals("java.util.HashMap", type);
  370. }
  371. @Test
  372. public void testIdentityHashMap() throws IOException {
  373. IdentityHashMap<Object,Object> value = new IdentityHashMap<Object,Object>();
  374. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  375. DataOutputStream out = new DataOutputStream(baos);
  376. DataSerializer.writeObject(value, out);
  377. byte[] bytes = baos.toByteArray();
  378. String type = DataType.getDataType(bytes);
  379. assertEquals("java.util.IdentityHashMap", type);
  380. }
  381. @Test
  382. public void testHashtable() throws IOException {
  383. Hashtable<Object,Object> value = new Hashtable<Object,Object>();
  384. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  385. DataOutputStream out = new DataOutputStream(baos);
  386. DataSerializer.writeObject(value, out);
  387. byte[] bytes = baos.toByteArray();
  388. String type = DataType.getDataType(bytes);
  389. assertEquals("java.util.Hashtable", type);
  390. }
  391. @Test
  392. public void testConcurrentHashMap() throws IOException { // java.io.Serializable (broken)
  393. ConcurrentHashMap<Object,Object> value = new ConcurrentHashMap<Object,Object>();
  394. value.put("key1", "value1");
  395. value.put("key2", "value2");
  396. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  397. DataOutputStream out = new DataOutputStream(baos);
  398. //DataSerializer.writeConcurrentHashMap(value, out);
  399. DataSerializer.writeObject(value, out);
  400. byte[] bytes = baos.toByteArray();
  401. String type = DataType.getDataType(bytes);
  402. assertEquals("java.io.Serializable:java.util.concurrent.ConcurrentHashMap", type);
  403. }
  404. @Test
  405. public void testProperties() throws IOException {
  406. Properties value = new Properties();
  407. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  408. DataOutputStream out = new DataOutputStream(baos);
  409. DataSerializer.writeObject(value, out);
  410. byte[] bytes = baos.toByteArray();
  411. String type = DataType.getDataType(bytes);
  412. assertEquals("java.util.Properties", type);
  413. }
  414. @Test
  415. public void testTimeUnit() throws IOException {
  416. final EnumSet<TimeUnit> optimizedTimeUnits = EnumSet.range(TimeUnit.NANOSECONDS, TimeUnit.SECONDS);
  417. for (TimeUnit v: TimeUnit.values()) {
  418. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  419. DataOutputStream out = new DataOutputStream(baos);
  420. DataSerializer.writeObject(v, out);
  421. byte[] bytes = baos.toByteArray();
  422. String type = DataType.getDataType(bytes); // 4?
  423. if (optimizedTimeUnits.contains(v)) {
  424. assertEquals("for enum " + v, "java.util.concurrent.TimeUnit", type);
  425. } else {
  426. assertEquals("for enum " + v, "java.lang.Enum:java.util.concurrent.TimeUnit", type);
  427. }
  428. }
  429. }
  430. @Test
  431. public void testVector() throws IOException {
  432. Vector<Object> value = new Vector<Object>();
  433. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  434. DataOutputStream out = new DataOutputStream(baos);
  435. DataSerializer.writeObject(value, out);
  436. byte[] bytes = baos.toByteArray();
  437. String type = DataType.getDataType(bytes);
  438. assertEquals("java.util.Vector", type);
  439. }
  440. @Test
  441. public void testStack() throws IOException {
  442. Stack<Object> value = new Stack<Object>();
  443. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  444. DataOutputStream out = new DataOutputStream(baos);
  445. DataSerializer.writeObject(value, out);
  446. byte[] bytes = baos.toByteArray();
  447. String type = DataType.getDataType(bytes);
  448. assertEquals("java.util.Stack", type);
  449. }
  450. @Test
  451. public void testTreeMap() throws IOException {
  452. TreeMap<Object,Object> value = new TreeMap<Object,Object>();
  453. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  454. DataOutputStream out = new DataOutputStream(baos);
  455. DataSerializer.writeObject(value, out);
  456. byte[] bytes = baos.toByteArray();
  457. String type = DataType.getDataType(bytes);
  458. assertEquals("java.util.TreeMap", type);
  459. }
  460. @Test
  461. public void testTreeSet() throws IOException {
  462. TreeSet<Object> value = new TreeSet<Object>();
  463. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  464. DataOutputStream out = new DataOutputStream(baos);
  465. DataSerializer.writeObject(value, out);
  466. byte[] bytes = baos.toByteArray();
  467. String type = DataType.getDataType(bytes);
  468. assertEquals("java.util.TreeSet", type);
  469. }
  470. @Test
  471. public void testBooleanType() throws IOException {
  472. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  473. DataOutputStream out = new DataOutputStream(baos);
  474. out.writeByte(DSCODE.BOOLEAN_TYPE);
  475. byte[] bytes = baos.toByteArray();
  476. String type = DataType.getDataType(bytes);
  477. assertEquals("java.lang.Boolean.class", type);
  478. }
  479. @Test
  480. public void testCharacterType() throws IOException {
  481. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  482. DataOutputStream out = new DataOutputStream(baos);
  483. out.writeByte(DSCODE.CHARACTER_TYPE);
  484. byte[] bytes = baos.toByteArray();
  485. String type = DataType.getDataType(bytes);
  486. assertEquals("java.lang.Character.class", type);
  487. }
  488. @Test
  489. public void testByteType() throws IOException {
  490. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  491. DataOutputStream out = new DataOutputStream(baos);
  492. out.writeByte(DSCODE.BYTE_TYPE);
  493. byte[] bytes = baos.toByteArray();
  494. String type = DataType.getDataType(bytes);
  495. assertEquals("java.lang.Byte.class", type);
  496. }
  497. @Test
  498. public void testShortType() throws IOException {
  499. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  500. DataOutputStream out = new DataOutputStream(baos);
  501. out.writeByte(DSCODE.SHORT_TYPE);
  502. byte[] bytes = baos.toByteArray();
  503. String type = DataType.getDataType(bytes);
  504. assertEquals("java.lang.Short.class", type);
  505. }
  506. @Test
  507. public void testIntegerType() throws IOException {
  508. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  509. DataOutputStream out = new DataOutputStream(baos);
  510. out.writeByte(DSCODE.INTEGER_TYPE);
  511. byte[] bytes = baos.toByteArray();
  512. String type = DataType.getDataType(bytes);
  513. assertEquals("java.lang.Integer.class", type);
  514. }
  515. @Test
  516. public void testLongType() throws IOException {
  517. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  518. DataOutputStream out = new DataOutputStream(baos);
  519. out.writeByte(DSCODE.LONG_TYPE);
  520. byte[] bytes = baos.toByteArray();
  521. String type = DataType.getDataType(bytes);
  522. assertEquals("java.lang.Long.class", type);
  523. }
  524. @Test
  525. public void testFloatType() throws IOException {
  526. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  527. DataOutputStream out = new DataOutputStream(baos);
  528. out.writeByte(DSCODE.FLOAT_TYPE);
  529. byte[] bytes = baos.toByteArray();
  530. String type = DataType.getDataType(bytes);
  531. assertEquals("java.lang.Float.class", type);
  532. }
  533. @Test
  534. public void testDoubleType() throws IOException {
  535. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  536. DataOutputStream out = new DataOutputStream(baos);
  537. out.writeByte(DSCODE.DOUBLE_TYPE);
  538. byte[] bytes = baos.toByteArray();
  539. String type = DataType.getDataType(bytes);
  540. assertEquals("java.lang.Double.class", type);
  541. }
  542. @Test
  543. public void testVoidType() throws IOException {
  544. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  545. DataOutputStream out = new DataOutputStream(baos);
  546. out.writeByte(DSCODE.VOID_TYPE);
  547. byte[] bytes = baos.toByteArray();
  548. String type = DataType.getDataType(bytes);
  549. assertEquals("java.lang.Void.class", type);
  550. }
  551. // TODO:USER_DATA_SERIALIZABLE
  552. // TODO:USER_DATA_SERIALIZABLE_2
  553. // TODO:USER_DATA_SERIALIZABLE_4
  554. @Test
  555. public void testDataSerializable() throws IOException {
  556. DataSerializableImpl value = new DataSerializableImpl(new Random());
  557. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  558. DataOutputStream out = new DataOutputStream(baos);
  559. DataSerializer.writeObject(value, out);
  560. byte[] bytes = baos.toByteArray();
  561. String type = DataType.getDataType(bytes);
  562. assertEquals("com.gemstone.gemfire.DataSerializable:" + DataSerializableImpl.class.getName(), type);
  563. }
  564. @Test
  565. public void testSerializable() throws IOException {
  566. SerializableClass value = new SerializableClass();
  567. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  568. DataOutputStream out = new DataOutputStream(baos);
  569. DataSerializer.writeObject(value, out);
  570. byte[] bytes = baos.toByteArray();
  571. String type = DataType.getDataType(bytes);
  572. assertEquals("java.io.Serializable:" + SerializableClass.class.getName(), type);
  573. }
  574. @SuppressWarnings("serial")
  575. public static class SerializableClass implements Serializable {
  576. }
  577. // TODO:PDX
  578. // TODO:PDX_ENUM
  579. // TODO:GEMFIRE_ENUM
  580. // TODO:PDX_INLINE_ENUM
  581. @Test
  582. public void testBigInteger() throws IOException {
  583. BigInteger value = BigInteger.ZERO;
  584. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  585. DataOutputStream out = new DataOutputStream(baos);
  586. DataSerializer.writeObject(value, out);
  587. byte[] bytes = baos.toByteArray();
  588. String type = DataType.getDataType(bytes);
  589. assertEquals("java.math.BigInteger", type);
  590. }
  591. @Test
  592. public void testBigDecimal() throws IOException {
  593. BigDecimal value = BigDecimal.ZERO;
  594. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  595. DataOutputStream out = new DataOutputStream(baos);
  596. DataSerializer.writeObject(value, out);
  597. byte[] bytes = baos.toByteArray();
  598. String type = DataType.getDataType(bytes);
  599. assertEquals("java.math.BigDecimal", type);
  600. }
  601. @Test
  602. public void testUUID() throws IOException {
  603. UUID value = new UUID(Long.MAX_VALUE, Long.MIN_VALUE);
  604. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  605. DataOutputStream out = new DataOutputStream(baos);
  606. DataSerializer.writeObject(value, out);
  607. byte[] bytes = baos.toByteArray();
  608. String type = DataType.getDataType(bytes);
  609. assertEquals("java.util.UUID", type);
  610. }
  611. }