1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-28 07:50:11 +02:00
Gadgetbridge/app/src/test/java/nodomain/freeyourgadget/gadgetbridge/devices/huawei/packets/TestCalls.java
2024-01-10 18:25:20 +00:00

69 lines
3.0 KiB
Java

/* Copyright (C) 2022 Martin.JM
This file is part of Gadgetbridge.
Gadgetbridge is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Gadgetbridge is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
package nodomain.freeyourgadget.gadgetbridge.devices.huawei.packets;
import org.junit.Assert;
import org.junit.Test;
import java.lang.reflect.Field;
import nodomain.freeyourgadget.gadgetbridge.devices.huawei.HuaweiPacket;
import nodomain.freeyourgadget.gadgetbridge.devices.huawei.HuaweiTLV;
public class TestCalls {
@Test
public void testAnswerCallResponseAccept() throws NoSuchFieldException, IllegalAccessException, HuaweiPacket.ParseException {
byte[] raw = new byte[] {(byte) 0x5A, (byte) 0x00, (byte) 0x06, (byte) 0x00, (byte) 0x04, (byte) 0x01, (byte) 0x01, (byte) 0x01, (byte) 0x02, (byte) 0x99, (byte) 0x6B};
Field tlvField = HuaweiPacket.class.getDeclaredField("tlv");
tlvField.setAccessible(true);
HuaweiTLV expectedTlv = new HuaweiTLV().put(0x01, (byte) 0x02);
HuaweiPacket packet = new HuaweiPacket(null).parse(raw);
packet.parseTlv();
Assert.assertEquals(0x04, packet.serviceId);
Assert.assertEquals(0x01, packet.commandId);
Assert.assertEquals(expectedTlv, tlvField.get(packet));
Assert.assertTrue(packet.complete);
Assert.assertTrue(packet instanceof Calls.AnswerCallResponse);
Assert.assertEquals(Calls.AnswerCallResponse.Action.CALL_ACCEPT, ((Calls.AnswerCallResponse) packet).action);
}
@Test
public void testAnswerCallResponseReject() throws NoSuchFieldException, IllegalAccessException, HuaweiPacket.ParseException {
byte[] raw = new byte[] {(byte) 0x5A, (byte) 0x00, (byte) 0x06, (byte) 0x00, (byte) 0x04, (byte) 0x01, (byte) 0x01, (byte) 0x01, (byte) 0x01, (byte) 0xA9, (byte) 0x08};
Field tlvField = HuaweiPacket.class.getDeclaredField("tlv");
tlvField.setAccessible(true);
HuaweiTLV expectedTlv = new HuaweiTLV().put(0x01, (byte) 0x01);
HuaweiPacket packet = new HuaweiPacket(null).parse(raw);
packet.parseTlv();
Assert.assertEquals(0x04, packet.serviceId);
Assert.assertEquals(0x01, packet.commandId);
Assert.assertEquals(expectedTlv, tlvField.get(packet));
Assert.assertTrue(packet.complete);
Assert.assertTrue(packet instanceof Calls.AnswerCallResponse);
Assert.assertEquals(Calls.AnswerCallResponse.Action.CALL_REJECT, ((Calls.AnswerCallResponse) packet).action);
}
}