/kerberos-codec/src/test/java/org/apache/directory/shared/kerberos/codec/KrbSafeBodyDecoderTest.java

https://github.com/apache/directory-server · Java · 692 lines · 572 code · 90 blank · 30 comment · 0 complexity · 4a37808452a21f91473c50283a1254b7 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. *
  19. */
  20. package org.apache.directory.shared.kerberos.codec;
  21. import static org.junit.Assert.assertEquals;
  22. import static org.junit.Assert.assertTrue;
  23. import static org.junit.Assert.fail;
  24. import static org.junit.Assert.*;
  25. import java.net.InetAddress;
  26. import java.nio.ByteBuffer;
  27. import java.util.Arrays;
  28. import org.apache.directory.api.asn1.DecoderException;
  29. import org.apache.directory.api.asn1.EncoderException;
  30. import org.apache.directory.api.asn1.ber.Asn1Decoder;
  31. import org.apache.directory.api.util.Strings;
  32. import org.apache.directory.shared.kerberos.codec.krbSafeBody.KrbSafeBodyContainer;
  33. import org.apache.directory.shared.kerberos.components.HostAddress;
  34. import org.apache.directory.shared.kerberos.components.KrbSafeBody;
  35. import org.junit.jupiter.api.Test;
  36. /**
  37. * Test cases for KrbSafeBody codec.
  38. *
  39. * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  40. */
  41. public class KrbSafeBodyDecoderTest
  42. {
  43. @Test
  44. public void testDecodeKrbSafeBody() throws Exception
  45. {
  46. int streamLen = 0x47;
  47. ByteBuffer stream = ByteBuffer.allocate( streamLen );
  48. stream.put( new byte[]
  49. {
  50. 0x30, 0x45,
  51. ( byte ) 0xA0, 0x4, // user-data
  52. 0x04,
  53. 0x02,
  54. 0x00,
  55. 0x01,
  56. ( byte ) 0xA1,
  57. 0x11, // timestamp
  58. 0x18,
  59. 0xF,
  60. '2',
  61. '0',
  62. '1',
  63. '0',
  64. '1',
  65. '1',
  66. '1',
  67. '9',
  68. '0',
  69. '8',
  70. '0',
  71. '0',
  72. '4',
  73. '3',
  74. 'Z',
  75. ( byte ) 0xA2,
  76. 0x03, // usec
  77. 0x02,
  78. 0x01,
  79. 0x01,
  80. ( byte ) 0xA3,
  81. 0x03, // seq-number
  82. 0x02,
  83. 0x01,
  84. 0x01,
  85. ( byte ) 0xA4,
  86. 0xF, // s-address
  87. 0x30,
  88. 0x0D,
  89. ( byte ) 0xA0,
  90. 0x03,
  91. 0x02,
  92. 0x01,
  93. 0x02,
  94. ( byte ) 0xA1,
  95. 0x06,
  96. 0x04,
  97. 0x04,
  98. 127,
  99. 0,
  100. 0,
  101. 1,
  102. ( byte ) 0xA5,
  103. 0xF, // r-adress
  104. 0x30,
  105. 0x0D,
  106. ( byte ) 0xA0,
  107. 0x03,
  108. 0x02,
  109. 0x01,
  110. 0x02,
  111. ( byte ) 0xA1,
  112. 0x06,
  113. 0x04,
  114. 0x04,
  115. 127,
  116. 0,
  117. 0,
  118. 1
  119. } );
  120. String decoded = Strings.dumpBytes( stream.array() );
  121. stream.flip();
  122. KrbSafeBodyContainer container = new KrbSafeBodyContainer();
  123. container.setStream( stream );
  124. try
  125. {
  126. Asn1Decoder.decode( stream, container );
  127. }
  128. catch ( DecoderException e )
  129. {
  130. fail();
  131. }
  132. KrbSafeBody body = container.getKrbSafeBody();
  133. String time = "20101119080043Z";
  134. HostAddress ad = new HostAddress( InetAddress.getByName( "127.0.0.1" ) );
  135. assertTrue( Arrays.equals( new byte[]
  136. { 0, 1 }, body.getUserData() ) );
  137. assertEquals( time, body.getTimestamp().getDate() );
  138. assertEquals( 1, body.getUsec() );
  139. assertEquals( 1, body.getSeqNumber() );
  140. assertEquals( ad, body.getSenderAddress() );
  141. assertEquals( ad, body.getRecipientAddress() );
  142. int computedLen = body.computeLength();
  143. assertEquals( streamLen, computedLen );
  144. try
  145. {
  146. ByteBuffer bb = ByteBuffer.allocate( computedLen );
  147. body.encode( bb );
  148. String encoded = Strings.dumpBytes( bb.array() );
  149. assertEquals( decoded, encoded );
  150. }
  151. catch ( EncoderException e )
  152. {
  153. fail();
  154. }
  155. }
  156. @Test
  157. public void testDecodeKrbSafeBodyWithoutTimestamp() throws Exception
  158. {
  159. int streamLen = 0x34;
  160. ByteBuffer stream = ByteBuffer.allocate( streamLen );
  161. stream.put( new byte[]
  162. {
  163. 0x30, 0x32,
  164. ( byte ) 0xA0, 0x4, // user-data
  165. 0x04,
  166. 0x02,
  167. 0x00,
  168. 0x01,
  169. // NO timestamp
  170. ( byte ) 0xA2,
  171. 0x03, // usec
  172. 0x02,
  173. 0x01,
  174. 0x01,
  175. ( byte ) 0xA3,
  176. 0x03, // seq-number
  177. 0x02,
  178. 0x01,
  179. 0x01,
  180. ( byte ) 0xA4,
  181. 0xF, // s-address
  182. 0x30,
  183. 0x0D,
  184. ( byte ) 0xA0,
  185. 0x03,
  186. 0x02,
  187. 0x01,
  188. 0x02,
  189. ( byte ) 0xA1,
  190. 0x06,
  191. 0x04,
  192. 0x04,
  193. 127,
  194. 0,
  195. 0,
  196. 1,
  197. ( byte ) 0xA5,
  198. 0xF, // r-adress
  199. 0x30,
  200. 0x0D,
  201. ( byte ) 0xA0,
  202. 0x03,
  203. 0x02,
  204. 0x01,
  205. 0x02,
  206. ( byte ) 0xA1,
  207. 0x06,
  208. 0x04,
  209. 0x04,
  210. 127,
  211. 0,
  212. 0,
  213. 1
  214. } );
  215. String decoded = Strings.dumpBytes( stream.array() );
  216. stream.flip();
  217. KrbSafeBodyContainer container = new KrbSafeBodyContainer();
  218. container.setStream( stream );
  219. try
  220. {
  221. Asn1Decoder.decode( stream, container );
  222. }
  223. catch ( DecoderException e )
  224. {
  225. fail();
  226. }
  227. KrbSafeBody body = container.getKrbSafeBody();
  228. HostAddress ad = new HostAddress( InetAddress.getByName( "127.0.0.1" ) );
  229. assertTrue( Arrays.equals( new byte[]
  230. { 0, 1 }, body.getUserData() ) );
  231. assertNull( body.getTimestamp() );
  232. assertEquals( 1, body.getUsec() );
  233. assertEquals( 1, body.getSeqNumber() );
  234. assertEquals( ad, body.getSenderAddress() );
  235. assertEquals( ad, body.getRecipientAddress() );
  236. int computedLen = body.computeLength();
  237. assertEquals( streamLen, computedLen );
  238. try
  239. {
  240. ByteBuffer bb = ByteBuffer.allocate( computedLen );
  241. body.encode( bb );
  242. String encoded = Strings.dumpBytes( bb.array() );
  243. assertEquals( decoded, encoded );
  244. }
  245. catch ( EncoderException e )
  246. {
  247. fail();
  248. }
  249. }
  250. @Test
  251. public void testDecodeKrbSafeBodyWithoutTimestampAndUsec() throws Exception
  252. {
  253. int streamLen = 0x2F;
  254. ByteBuffer stream = ByteBuffer.allocate( streamLen );
  255. stream.put( new byte[]
  256. {
  257. 0x30, 0x2D,
  258. ( byte ) 0xA0, 0x4, // user-data
  259. 0x04,
  260. 0x02,
  261. 0x00,
  262. 0x01,
  263. // NO timestamp and usec
  264. ( byte ) 0xA3,
  265. 0x03, // seq-number
  266. 0x02,
  267. 0x01,
  268. 0x01,
  269. ( byte ) 0xA4,
  270. 0xF, // s-address
  271. 0x30,
  272. 0x0D,
  273. ( byte ) 0xA0,
  274. 0x03,
  275. 0x02,
  276. 0x01,
  277. 0x02,
  278. ( byte ) 0xA1,
  279. 0x06,
  280. 0x04,
  281. 0x04,
  282. 127,
  283. 0,
  284. 0,
  285. 1,
  286. ( byte ) 0xA5,
  287. 0xF, // r-adress
  288. 0x30,
  289. 0x0D,
  290. ( byte ) 0xA0,
  291. 0x03,
  292. 0x02,
  293. 0x01,
  294. 0x02,
  295. ( byte ) 0xA1,
  296. 0x06,
  297. 0x04,
  298. 0x04,
  299. 127,
  300. 0,
  301. 0,
  302. 1
  303. } );
  304. String decoded = Strings.dumpBytes( stream.array() );
  305. stream.flip();
  306. KrbSafeBodyContainer container = new KrbSafeBodyContainer();
  307. container.setStream( stream );
  308. try
  309. {
  310. Asn1Decoder.decode( stream, container );
  311. }
  312. catch ( DecoderException e )
  313. {
  314. fail();
  315. }
  316. KrbSafeBody body = container.getKrbSafeBody();
  317. HostAddress ad = new HostAddress( InetAddress.getByName( "127.0.0.1" ) );
  318. assertTrue( Arrays.equals( new byte[]
  319. { 0, 1 }, body.getUserData() ) );
  320. assertNull( body.getTimestamp() );
  321. assertEquals( 0, body.getUsec() );
  322. assertEquals( 1, body.getSeqNumber() );
  323. assertEquals( ad, body.getSenderAddress() );
  324. assertEquals( ad, body.getRecipientAddress() );
  325. int computedLen = body.computeLength();
  326. assertEquals( streamLen, computedLen );
  327. try
  328. {
  329. ByteBuffer bb = ByteBuffer.allocate( computedLen );
  330. body.encode( bb );
  331. String encoded = Strings.dumpBytes( bb.array() );
  332. assertEquals( decoded, encoded );
  333. }
  334. catch ( EncoderException e )
  335. {
  336. fail();
  337. }
  338. }
  339. @Test
  340. public void testDecodeKrbSafeBodyWithoutTimestampUsecAndSeqNumber() throws Exception
  341. {
  342. int streamLen = 0x2A;
  343. ByteBuffer stream = ByteBuffer.allocate( streamLen );
  344. stream.put( new byte[]
  345. {
  346. 0x30, 0x28,
  347. ( byte ) 0xA0, 0x4, // user-data
  348. 0x04,
  349. 0x02,
  350. 0x00,
  351. 0x01,
  352. // NO timestamp, usec and seq-number
  353. ( byte ) 0xA4,
  354. 0xF, // s-address
  355. 0x30,
  356. 0x0D,
  357. ( byte ) 0xA0,
  358. 0x03,
  359. 0x02,
  360. 0x01,
  361. 0x02,
  362. ( byte ) 0xA1,
  363. 0x06,
  364. 0x04,
  365. 0x04,
  366. 127,
  367. 0,
  368. 0,
  369. 1,
  370. ( byte ) 0xA5,
  371. 0xF, // r-adress
  372. 0x30,
  373. 0x0D,
  374. ( byte ) 0xA0,
  375. 0x03,
  376. 0x02,
  377. 0x01,
  378. 0x02,
  379. ( byte ) 0xA1,
  380. 0x06,
  381. 0x04,
  382. 0x04,
  383. 127,
  384. 0,
  385. 0,
  386. 1
  387. } );
  388. String decoded = Strings.dumpBytes( stream.array() );
  389. stream.flip();
  390. KrbSafeBodyContainer container = new KrbSafeBodyContainer();
  391. container.setStream( stream );
  392. try
  393. {
  394. Asn1Decoder.decode( stream, container );
  395. }
  396. catch ( DecoderException e )
  397. {
  398. e.printStackTrace();
  399. fail();
  400. }
  401. KrbSafeBody body = container.getKrbSafeBody();
  402. HostAddress ad = new HostAddress( InetAddress.getByName( "127.0.0.1" ) );
  403. assertTrue( Arrays.equals( new byte[]
  404. { 0, 1 }, body.getUserData() ) );
  405. assertNull( body.getTimestamp() );
  406. assertEquals( 0, body.getUsec() );
  407. assertEquals( 0, body.getSeqNumber() );
  408. assertEquals( ad, body.getSenderAddress() );
  409. assertEquals( ad, body.getRecipientAddress() );
  410. int computedLen = body.computeLength();
  411. assertEquals( streamLen, computedLen );
  412. try
  413. {
  414. ByteBuffer bb = ByteBuffer.allocate( computedLen );
  415. body.encode( bb );
  416. String encoded = Strings.dumpBytes( bb.array() );
  417. assertEquals( decoded, encoded );
  418. }
  419. catch ( EncoderException e )
  420. {
  421. fail();
  422. }
  423. }
  424. @Test
  425. public void testDecodeKrbSafeBodyWithoutSequenceNumber() throws Exception
  426. {
  427. int streamLen = 0x42;
  428. ByteBuffer stream = ByteBuffer.allocate( streamLen );
  429. stream.put( new byte[]
  430. {
  431. 0x30, 0x40,
  432. ( byte ) 0xA0, 0x4, // user-data
  433. 0x04,
  434. 0x02,
  435. 0x00,
  436. 0x01,
  437. ( byte ) 0xA1,
  438. 0x11, // timestamp
  439. 0x18,
  440. 0xF,
  441. '2',
  442. '0',
  443. '1',
  444. '0',
  445. '1',
  446. '1',
  447. '1',
  448. '9',
  449. '0',
  450. '8',
  451. '0',
  452. '0',
  453. '4',
  454. '3',
  455. 'Z',
  456. ( byte ) 0xA2,
  457. 0x03, // usec
  458. 0x02,
  459. 0x01,
  460. 0x01,
  461. // NO seq-number
  462. ( byte ) 0xA4,
  463. 0xF, // s-address
  464. 0x30,
  465. 0x0D,
  466. ( byte ) 0xA0,
  467. 0x03,
  468. 0x02,
  469. 0x01,
  470. 0x02,
  471. ( byte ) 0xA1,
  472. 0x06,
  473. 0x04,
  474. 0x04,
  475. 127,
  476. 0,
  477. 0,
  478. 1,
  479. ( byte ) 0xA5,
  480. 0xF, // r-adress
  481. 0x30,
  482. 0x0D,
  483. ( byte ) 0xA0,
  484. 0x03,
  485. 0x02,
  486. 0x01,
  487. 0x02,
  488. ( byte ) 0xA1,
  489. 0x06,
  490. 0x04,
  491. 0x04,
  492. 127,
  493. 0,
  494. 0,
  495. 1
  496. } );
  497. String decoded = Strings.dumpBytes( stream.array() );
  498. stream.flip();
  499. KrbSafeBodyContainer container = new KrbSafeBodyContainer();
  500. container.setStream( stream );
  501. try
  502. {
  503. Asn1Decoder.decode( stream, container );
  504. }
  505. catch ( DecoderException e )
  506. {
  507. fail();
  508. }
  509. KrbSafeBody body = container.getKrbSafeBody();
  510. String time = "20101119080043Z";
  511. HostAddress ad = new HostAddress( InetAddress.getByName( "127.0.0.1" ) );
  512. assertTrue( Arrays.equals( new byte[]
  513. { 0, 1 }, body.getUserData() ) );
  514. assertEquals( time, body.getTimestamp().getDate() );
  515. assertEquals( 1, body.getUsec() );
  516. assertEquals( 0, body.getSeqNumber() );
  517. assertEquals( ad, body.getSenderAddress() );
  518. assertEquals( ad, body.getRecipientAddress() );
  519. int computedLen = body.computeLength();
  520. assertEquals( streamLen, computedLen );
  521. try
  522. {
  523. ByteBuffer bb = ByteBuffer.allocate( computedLen );
  524. body.encode( bb );
  525. String encoded = Strings.dumpBytes( bb.array() );
  526. assertEquals( decoded, encoded );
  527. }
  528. catch ( EncoderException e )
  529. {
  530. fail();
  531. }
  532. }
  533. @Test
  534. public void testDecodeKrbSafeBodyWithoutOptionalValues() throws Exception
  535. {
  536. int streamLen = 0x19;
  537. ByteBuffer stream = ByteBuffer.allocate( streamLen );
  538. stream.put( new byte[]
  539. {
  540. 0x30, 0x17,
  541. ( byte ) 0xA0, 0x4, // user-data
  542. 0x04,
  543. 0x02,
  544. 0x00,
  545. 0x01,
  546. // NO timestamp, usec and seq-number
  547. ( byte ) 0xA4,
  548. 0xF, // s-address
  549. 0x30,
  550. 0x0D,
  551. ( byte ) 0xA0,
  552. 0x03,
  553. 0x02,
  554. 0x01,
  555. 0x02,
  556. ( byte ) 0xA1,
  557. 0x06,
  558. 0x04,
  559. 0x04,
  560. 127,
  561. 0,
  562. 0,
  563. 1,
  564. // NO r-address
  565. } );
  566. String decoded = Strings.dumpBytes( stream.array() );
  567. stream.flip();
  568. KrbSafeBodyContainer container = new KrbSafeBodyContainer();
  569. container.setStream( stream );
  570. try
  571. {
  572. Asn1Decoder.decode( stream, container );
  573. }
  574. catch ( DecoderException e )
  575. {
  576. e.printStackTrace();
  577. fail();
  578. }
  579. KrbSafeBody body = container.getKrbSafeBody();
  580. HostAddress ad = new HostAddress( InetAddress.getByName( "127.0.0.1" ) );
  581. assertTrue( Arrays.equals( new byte[]
  582. { 0, 1 }, body.getUserData() ) );
  583. assertNull( body.getTimestamp() );
  584. assertEquals( 0, body.getUsec() );
  585. assertEquals( 0, body.getSeqNumber() );
  586. assertEquals( ad, body.getSenderAddress() );
  587. assertNull( body.getRecipientAddress() );
  588. int computedLen = body.computeLength();
  589. assertEquals( streamLen, computedLen );
  590. try
  591. {
  592. ByteBuffer bb = ByteBuffer.allocate( computedLen );
  593. body.encode( bb );
  594. String encoded = Strings.dumpBytes( bb.array() );
  595. assertEquals( decoded, encoded );
  596. }
  597. catch ( EncoderException e )
  598. {
  599. fail();
  600. }
  601. }
  602. }