public void TestGroupAddress() { ZigBeeApsFrame frame = new ZigBeeApsFrame(); _output.WriteLine(frame.ToString()); frame.GroupAddress = 1; Assert.Equal(1, frame.GroupAddress); }
public void TestSecurityEnable() { ZigBeeApsFrame frame = new ZigBeeApsFrame(); frame.SecurityEnabled = true; Assert.True(frame.SecurityEnabled); frame.SecurityEnabled = false; Assert.False(frame.SecurityEnabled); _output.WriteLine(frame.ToString()); }
public void TestToString() { ZigBeeApsFrame frame = new ZigBeeApsFrame(); Assert.NotNull(frame.ToString()); }
public void SendCommand() { IList <IXBeeCommand> sentCommands = new List <IXBeeCommand>(); Mock <IXBeeFrameHandler> frameHandlerMock = new Mock <IXBeeFrameHandler>(); frameHandlerMock.Setup(frameHandler => frameHandler.SendRequestAsync(It.IsAny <IXBeeCommand>())).Callback <IXBeeCommand>(item => sentCommands.Add(item)).ReturnsAsync(() => null); ZigBeeDongleXBee dongle = new ZigBeeDongleXBee(null); try { Type fieldType = dongle.GetType(); FieldInfo fieldInfo = fieldType.GetField("_frameHandler", BindingFlags.NonPublic | BindingFlags.Instance); fieldInfo.SetValue(dongle, frameHandlerMock.Object); } catch (Exception ex) { _output.WriteLine(ex.StackTrace); } MatchDescriptorResponse command = new MatchDescriptorResponse { DestinationAddress = new ZigBeeEndpointAddress(46946), NwkAddrOfInterest = 46946, Status = ZDO.ZdoStatus.SUCCESS, TransactionId = 0x2A }; List <ushort> matchList = new List <ushort> { 1 }; command.MatchList = matchList; ZigBeeApsFrame apsFrame = new ZigBeeApsFrame { DestinationAddress = 46946, DestinationEndpoint = 0, DestinationIeeeAddress = new IeeeAddress(BigInteger.Parse("000D6F00057CF7C6", NumberStyles.HexNumber)), Cluster = 32774, AddressMode = ZigBeeNwkAddressMode.Device, Radius = 31, ApsCounter = 42, Payload = new byte[] { 0x00, 0x00, 0x2E, 0x5B, 0x01, 0x01 } }; _output.WriteLine(command.ToString()); _output.WriteLine(apsFrame.ToString()); dongle.SendCommand(apsFrame); Assert.Equal(1, sentCommands.Count); XBeeTransmitRequestExplicitCommand sentCommand = (XBeeTransmitRequestExplicitCommand)sentCommands[0]; sentCommand.SetFrameId(32); _output.WriteLine(sentCommand.ToString()); int[] payload = new int[] { 0, 26, 17, 32, 0, 13, 111, 0, 5, 124, 247, 198, 183, 98, 0, 0, 128, 6, 0, 0, 0, 0, 0, 0, 46, 91, 1, 1, 234 }; int[] output = sentCommand.Serialize(); Assert.True(payload.SequenceEqual(output)); }