summaryrefslogtreecommitdiff
path: root/lib/java/src/test/java/org/apache/thrift/protocol/TestTProtocolUtil.java
blob: 937e9130ef078eefaf459df9c2c7eb64db95996a (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.thrift.protocol;

import org.apache.thrift.TSerializer;
import org.junit.jupiter.api.Test;
import thrift.test.GuessProtocolStruct;

import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;

public class TestTProtocolUtil  {

  @Test
  public void testGuessProtocolFactory_JSON() throws Exception {

    byte[] data = "{foo}".getBytes();
    TProtocolFactory factory = TProtocolUtil.guessProtocolFactory(data, new TCompactProtocol.Factory());
    assertTrue(factory instanceof TJSONProtocol.Factory);

    // Make sure data serialized with TCompact and which starts with '{'
    // is not mistakenly guessed as serialized with JSON.

    GuessProtocolStruct s = new GuessProtocolStruct();
    s.putToMap_field("}","}");
    byte[] ser = new TSerializer(new TCompactProtocol.Factory()).serialize(s);
    factory = TProtocolUtil.guessProtocolFactory(ser, new TCompactProtocol.Factory());
    assertFalse(factory instanceof TJSONProtocol.Factory);
  }

  @Test
  public void testGuessProtocolFactory_Binary() throws Exception {
    // Check that a last byte != 0 is correctly reported as Binary

    byte[] buf = new byte[1];
    for (int i = 1; i < 256; i++) {
      buf[0] = (byte) i;
      TProtocolFactory factory = TProtocolUtil.guessProtocolFactory(buf, new TCompactProtocol.Factory());
      assertTrue(factory instanceof TBinaryProtocol.Factory);
    }

    // Check that a second byte set to 0 is reported as Binary
    buf = new byte[2];
    TProtocolFactory factory = TProtocolUtil.guessProtocolFactory(buf, new TCompactProtocol.Factory());
    assertTrue(factory instanceof TBinaryProtocol.Factory);
  }

  @Test
  public void testGuessProtocolFactory_Compact() throws Exception {
    // Check that a first byte > 0x10 is reported as Compact
    byte[] buf = new byte[3];
    buf[0] = 0x11;
    TProtocolFactory factory = TProtocolUtil.guessProtocolFactory(buf, new TBinaryProtocol.Factory());
    assertTrue(factory instanceof TCompactProtocol.Factory);

    // Check that second byte >= 0x80 is reported as Compact
    buf[0] = 0;
    for (int i = 0x80; i < 0x100; i++) {
      buf[1] = (byte) i;
      factory = TProtocolUtil.guessProtocolFactory(buf, new TBinaryProtocol.Factory());
      assertTrue(factory instanceof TCompactProtocol.Factory);
    }
  }

  @Test
  public void testGuessProtocolFactory_Undecided() throws Exception {
    byte[] buf = new byte[3];
    buf[1] = 0x7e;
    TProtocolFactory factory = TProtocolUtil.guessProtocolFactory(buf, new TSimpleJSONProtocol.Factory());
    assertTrue(factory instanceof TSimpleJSONProtocol.Factory);
  }
}