public void TestBeaconsWithDifferentId2AreNotEqual()
        {
            Beacon beacon1 = new Beacon.Builder().SetId1("1").SetId2("2").SetId3("3").SetRssi(4)
                .SetBeaconTypeCode(5).SetTxPower(6).SetBluetoothAddress("1:2:3:4:5:6").Build();

            Beacon beacon2 = new Beacon.Builder().SetId1("1").SetId2("12").SetId3("3").SetRssi(4)
                .SetBeaconTypeCode(5).SetTxPower(6).SetBluetoothAddress("1:2:3:4:5:6").Build();

            Assert.IsTrue(!beacon1.Equals(beacon2), "Beacons with different id2 are not equal");
        }
Ejemplo n.º 2
0
        public void TestBeaconsWithDifferentId3AreNotEqual()
        {
            Beacon beacon1 = new Beacon.Builder().SetId1("1").SetId2("2").SetId3("3").SetRssi(4)
                             .SetBeaconTypeCode(5).SetTxPower(6).SetBluetoothAddress("1:2:3:4:5:6").Build();

            Beacon beacon2 = new Beacon.Builder().SetId1("1").SetId2("2").SetId3("13").SetRssi(4)
                             .SetBeaconTypeCode(5).SetTxPower(6).SetBluetoothAddress("1:2:3:4:5:6").Build();

            Assert.IsTrue(!beacon1.Equals(beacon2), "Beacons with different id3 are not equal");
        }
Ejemplo n.º 3
0
        public void TestBeaconsWithSameIdentifersAreEqual()
        {
            Beacon beacon1 = new Beacon.Builder().SetId1("1").SetId2("2").SetId3("3").SetRssi(4)
                             .SetBeaconTypeCode(5).SetTxPower(6).SetBluetoothAddress("1:2:3:4:5:6").Build();

            Beacon beacon2 = new Beacon.Builder().SetId1("1").SetId2("2").SetId3("3").SetRssi(4)
                             .SetBeaconTypeCode(5).SetTxPower(6).SetBluetoothAddress("1:2:3:4:5:6").Build();

            Assert.AreEqual(beacon1, beacon2, "Beacons with same identifiers should be equal");
        }
        public void TestAccessBeaconIdentifiers()
        {
            Beacon beacon = new Beacon.Builder().SetId1("1").SetId2("2").SetId3("3").SetRssi(4)
                .SetBeaconTypeCode(5).SetTxPower(6).SetBluetoothAddress("1:2:3:4:5:6").Build();

            Assert.AreEqual("1", beacon.Identifiers[0].ToString(), "First beacon id should be 1");
            Assert.AreEqual("2", beacon.Identifiers[1].ToString(), "Second beacon id should be 1");
            Assert.AreEqual("3", beacon.Identifiers[2].ToString(), "Third beacon id should be 1");
            Assert.AreEqual("1", beacon.Id1.ToString(), "First beacon id should be 1");
            Assert.AreEqual("2", beacon.Id2.ToString(), "Second beacon id should be 1");
            Assert.AreEqual("3", beacon.Id3.ToString(), "Third beacon id should be 1");
        }
Ejemplo n.º 5
0
        public void TestAccessBeaconIdentifiers()
        {
            Beacon beacon = new Beacon.Builder().SetId1("1").SetId2("2").SetId3("3").SetRssi(4)
                            .SetBeaconTypeCode(5).SetTxPower(6).SetBluetoothAddress("1:2:3:4:5:6").Build();

            Assert.AreEqual("1", beacon.Identifiers[0].ToString(), "First beacon id should be 1");
            Assert.AreEqual("2", beacon.Identifiers[1].ToString(), "Second beacon id should be 1");
            Assert.AreEqual("3", beacon.Identifiers[2].ToString(), "Third beacon id should be 1");
            Assert.AreEqual("1", beacon.Id1.ToString(), "First beacon id should be 1");
            Assert.AreEqual("2", beacon.Id2.ToString(), "Second beacon id should be 1");
            Assert.AreEqual("3", beacon.Id3.ToString(), "Third beacon id should be 1");
        }
Ejemplo n.º 6
0
        /// <summary>
        /// Construct a Beacon from a Bluetooth LE packet collected by Android's Bluetooth APIs,
        /// including the raw bluetooth device info
        /// </summary>
        /// <param name="scanData">
        /// The actual packet bytes
        /// </param>
        /// <param name="rssi">
        /// The measured signal strength of the packet
        /// </param>
        /// <param name="device">
        /// The bluetooth device that was detected
        /// </param>
        /// <param name="beaconBuilder">
        /// Beacon Builder
        /// </param>
        /// <returns>
        /// An instance of a <code>Beacon</code>
        /// </returns>
        protected Beacon FromScanData(byte[] scanData, int rssi, BluetoothDevice device, Beacon.Builder beaconBuilder)
        {
            int  startByte          = 2;
            bool patternFound       = false;
            int  matchingBeaconSize = this.matchingBeaconTypeCodeEndOffset.Value -
                                      this.matchingBeaconTypeCodeStartOffset.Value + 1;

            byte[] typeCodeBytes = LongToByteArray(this.MatchingBeaconTypeCode, matchingBeaconSize);

            while (startByte <= 5)
            {
                if (AreByteArraysMatch(scanData, startByte + this.matchingBeaconTypeCodeStartOffset.Value, typeCodeBytes, 0))
                {
                    patternFound = true;
                    break;
                }

                startByte++;
            }

            if (patternFound == false)
            {
                // This is not a beacon
                // TODO LogManager

                /*if (this.ServiceUuid == null)
                 * {
                 *  TODO LogManager
                 *  if (LogManager.isVerboseLoggingEnabled())
                 *  {
                 *      LogManager.d(TAG, "This is not a matching Beacon advertisement. " +
                 *          "(Was expecting %s. The bytes I see are: %s",
                 *          byteArrayToString(typeCodeBytes), bytesToHex(scanData));
                 *  }
                 * }
                 * else
                 * {
                 *  if (LogManager.isVerboseLoggingEnabled())
                 *  {
                 *      LogManager.d(TAG, "This is not a matching Beacon advertisement. " +
                 *          "(Was expecting %s and %s. The bytes I see are: %s",
                 *          byteArrayToString(serviceUuidBytes),
                 *          byteArrayToString(typeCodeBytes), bytesToHex(scanData));
                 *  }
                 * }*/
                return(null);
            }
            else
            {
                //// TODO LogManager
                //// if (LogManager.isVerboseLoggingEnabled())
                //// {
                ////     LogManager.d(TAG, "This is a recognized beacon advertisement -- %s seen",
                ////             byteArrayToString(typeCodeBytes));
                //// }
                ////
                //// TODO LogManager
                //// LogManager.d(Tag, "This is a recognized beacon advertisement -- " +
                ////     getMatchingBeaconTypeCode().ToString("x4") + " seen");
            }

            List <Identifier> identifiers = new List <Identifier>();

            for (int i = 0; i < this.identifierEndOffsets.Count; i++)
            {
                Identifier identifier = Identifier.FromBytes(
                    scanData,
                    this.identifierStartOffsets[i].Value + startByte,
                    this.identifierEndOffsets[i].Value + startByte + 1,
                    this.identifierLittleEndianFlags[i]);

                identifiers.Add(identifier);
            }

            List <long> dataFields = new List <long>();

            for (int i = 0; i < this.dataEndOffsets.Count; i++)
            {
                string dataString = ByteArrayToFormattedString(
                    scanData,
                    this.dataStartOffsets[i].Value + startByte,
                    this.dataEndOffsets[i].Value + startByte,
                    this.dataLittleEndianFlags[i]);

                dataFields.Add(long.Parse(dataString));
                //// TODO LogManager
                //// LogManager.d(Tag, "parsing found data field " + i);
                //// TODO: error handling needed here on the parse
            }

            int    txPower     = 0;
            string powerString = ByteArrayToFormattedString(
                scanData,
                this.powerStartOffset.Value + startByte,
                this.powerEndOffset.Value + startByte,
                false);

            txPower = int.Parse(powerString);

            // make sure it is a signed integer
            if (txPower > 127)
            {
                txPower -= 256;
            }

            // TODO: error handling needed on the parse
            int    beaconTypeCode   = 0;
            string beaconTypeString = ByteArrayToFormattedString(
                scanData,
                this.matchingBeaconTypeCodeStartOffset.Value + startByte,
                this.matchingBeaconTypeCodeEndOffset.Value + startByte,
                false);

            beaconTypeCode = int.Parse(beaconTypeString);

            // TODO: error handling needed on the parse
            int    manufacturer       = 0;
            string manufacturerString =
                ByteArrayToFormattedString(scanData, startByte, startByte + 1, true);

            manufacturer = int.Parse(manufacturerString);

            string macAddress = null;
            string name       = null;

            if (device != null)
            {
                macAddress = device.Address;
                name       = device.Name;
            }

            return(beaconBuilder
                   .SetIdentifiers(identifiers)
                   .SetDataFields(dataFields)
                   .SetTxPower(txPower)
                   .SetRssi(rssi)
                   .SetBeaconTypeCode(beaconTypeCode)
                   .SetBluetoothAddress(macAddress)
                   .SetBluetoothAddress(macAddress)
                   .SetManufacturer(manufacturer)
                   .Build());
        }
        public void TestBeaconsWithSameIdentifersAreEqual()
        {
            Beacon beacon1 = new Beacon.Builder().SetId1("1").SetId2("2").SetId3("3").SetRssi(4)
                .SetBeaconTypeCode(5).SetTxPower(6).SetBluetoothAddress("1:2:3:4:5:6").Build();

            Beacon beacon2 = new Beacon.Builder().SetId1("1").SetId2("2").SetId3("3").SetRssi(4)
                .SetBeaconTypeCode(5).SetTxPower(6).SetBluetoothAddress("1:2:3:4:5:6").Build();

            Assert.AreEqual(beacon1, beacon2, "Beacons with same identifiers should be equal");
        }