aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/traccar/protocol/AppletProtocolDecoderTest.java
blob: 11c9c65d84761b18ade7114dd9132c4028f6c04f (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
package org.traccar.protocol;

import io.netty.handler.codec.http.DefaultHttpHeaders;
import io.netty.handler.codec.http.HttpMethod;
import org.junit.Test;
import org.traccar.ProtocolTest;

public class AppletProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = new AppletProtocolDecoder(null);

        DefaultHttpHeaders headers = new DefaultHttpHeaders();

        headers.add("HOST", "192.168.0.1:8080");
        headers.add("X-Admin-Protocol", "globalplatform-remote-admin/1.0");
        headers.add("X-Admin-From", "8943170080001406197F");
        headers.add("User-Agent", "oma-scws-admin-agent/1.1");
        headers.add("From", "8943170080001406197F");

        verifyNull(decoder, request(HttpMethod.POST, "/pli?=", headers));

    }

}