Direct-BT  2.3.1
Direct-BT - Direct Bluetooth Programming.
TestEUI48.java
Go to the documentation of this file.
1 /**
2  * Copyright 2015 JogAmp Community. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without modification, are
5  * permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice, this list of
8  * conditions and the following disclaimer.
9  *
10  * 2. Redistributions in binary form must reproduce the above copyright notice, this list
11  * of conditions and the following disclaimer in the documentation and/or other materials
12  * provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
15  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
16  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
21  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
22  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  *
24  * The views and conclusions contained in the software and documentation are those of the
25  * authors and should not be interpreted as representing official policies, either expressed
26  * or implied, of JogAmp Community.
27  */
28 
29 package test.org.direct_bt;
30 
31 import java.io.IOException;
32 import java.lang.reflect.InvocationTargetException;
33 import java.util.Arrays;
34 import java.util.Iterator;
35 import java.util.List;
36 
37 import jau.test.junit.util.JunitTracer;
38 
40 import org.direct_bt.BTFactory;
41 import org.direct_bt.BTManager;
42 import org.direct_bt.EUI48;
43 import org.direct_bt.EUI48Sub;
44 import org.junit.Assert;
45 import org.junit.FixMethodOrder;
46 import org.junit.Test;
47 import org.junit.runners.MethodSorters;
48 
49 /**
50  * Test basic EUI48 functionality
51  */
52 @FixMethodOrder(MethodSorters.NAME_ASCENDING)
53 public class TestEUI48 extends JunitTracer {
54 
55  static {
56  final BTManager manager;
57  try {
58  manager = BTFactory.getDirectBTManager();
59  } catch (BTException | NoSuchMethodException | SecurityException
60  | IllegalAccessException | IllegalArgumentException
61  | InvocationTargetException | ClassNotFoundException e) {
62  System.err.println("Unable to instantiate DirectBT BluetoothManager");
63  e.printStackTrace();
64  System.exit(-1);
65  }
66  }
67  static void test_sub(final String mac_str, final List<String> mac_sub_strs, final List<Integer> indices) {
68  final EUI48 mac = new EUI48(mac_str);
69 
70  System.out.printf("Test EUI48 mac: '%s' -> '%s'\n", mac_str, mac.toString());
71  Assert.assertEquals(mac_str, mac.toString());
72 
73  int i=0;
74  for(final Iterator<String> iter=mac_sub_strs.iterator(); iter.hasNext(); ++i) {
75  final String mac_sub_str = iter.next();
76  final EUI48Sub mac_sub = new EUI48Sub(mac_sub_str);
77  System.out.printf("EUI48Sub mac02_sub: '%s' -> '%s'\n", mac_sub_str, mac_sub.toString());
78  // cut-off pre- and post-colon in test string, but leave single colon
79  String sub_str = new String(mac_sub_str);
80  if( sub_str.isEmpty() ) {
81  sub_str = ":";
82  } else if( !sub_str.equals(":") ) {
83  if( sub_str.length() > 0 && sub_str.charAt(0) == ':' ) {
84  sub_str = sub_str.substring(1, sub_str.length());
85  }
86  if( sub_str.length() > 0 && sub_str.charAt(sub_str.length()-1) == ':' ) {
87  sub_str = sub_str.substring(0, sub_str.length()-1);
88  }
89  }
90  Assert.assertEquals(sub_str, mac_sub.toString());
91 
92  final int idx = mac.indexOf(mac_sub);
93  Assert.assertEquals( idx, indices.get(i).intValue());
94  if( idx >= 0 ) {
95  Assert.assertTrue( mac.contains(mac_sub) );
96  } else {
97  Assert.assertFalse( mac.contains(mac_sub) );
98  }
99  }
100  }
101  static void test_sub(final String mac_sub_str_exp, final String mac_sub_str, final boolean expected_result) {
102  final StringBuilder errmsg = new StringBuilder();
103  final EUI48Sub mac_sub = new EUI48Sub ();
104  final boolean res = EUI48Sub.scanEUI48Sub(mac_sub_str, mac_sub, errmsg);
105  if( res ) {
106  System.out.printf("EUI48Sub mac_sub: '%s' -> '%s'\n", mac_sub_str, mac_sub.toString());
107  if( expected_result ) {
108  Assert.assertEquals(mac_sub_str_exp, mac_sub.toString());
109  }
110  } else {
111  System.out.printf("EUI48Sub mac_sub: '%s' -> Error '%s'\n", mac_sub_str, errmsg.toString());
112  }
113  Assert.assertEquals(expected_result, res);
114  }
115 
116  @Test
117  public void test01_EUI48AndSub() {
118  {
119  // index [high=5 ... low=0]
120  final String mac02_str = "C0:10:22:A0:10:00";
121  final String[] mac02_sub_strs = { "C0", "C0:10", ":10:22", "10:22", ":10:22:", "10:22:", "10", "10:00", "00", ":", "", "00:10", mac02_str};
122  final Integer[] mac02_sub_idxs = { 5, 4, 3, 3, 3, 3, 1, 0, 0, 0, 0, -1, 0};
123  test_sub(mac02_str, Arrays.asList(mac02_sub_strs), Arrays.asList(mac02_sub_idxs));
124  }
125 
126  {
127  // index [high=5 ... low=0]
128  final String mac03_str = "01:02:03:04:05:06";
129  final String[] mac03_sub_strs = { "01", "01:02", ":03:04", "03:04", ":04:05:", "04:05:", "04", "05:06", "06", ":", "", "06:05", mac03_str};
130  final Integer[] mac03_sub_idxs = { 5, 4, 2, 2, 1, 1, 2, 0, 0, 0, 0, -1, 0};
131  test_sub(mac03_str, Arrays.asList(mac03_sub_strs), Arrays.asList(mac03_sub_idxs));
132  }
133  {
134  final String mac_sub_str = "C0:10:22:A0:10:00";
135  test_sub(mac_sub_str, mac_sub_str, true /* expected_result */);
136  }
137  {
138  final String mac_sub_str = "0600106";
139  test_sub(null, mac_sub_str, false /* expected_result */);
140  }
141  }
142 
143  public static void main(final String args[]) throws IOException {
144  final String tstname = TestEUI48.class.getName();
145  org.junit.runner.JUnitCore.main(tstname);
146  }
147 
148 }
org.direct_bt.EUI48.contains
boolean contains(final EUI48Sub needle)
Returns true, if given EUI48Sub is contained in here.
Definition: EUI48.java:265
org.direct_bt.EUI48.toString
final String toString()
Definition: EUI48.java:278
org.direct_bt
Author: Sven Gothel sgothel@jausoft.com Copyright (c) 2020 Gothel Software e.K.
test.org.direct_bt.TestEUI48.test01_EUI48AndSub
void test01_EUI48AndSub()
Definition: TestEUI48.java:117
org.direct_bt.EUI48Sub
A 48 bit EUI-48 sub-identifier, see EUI48.
Definition: EUI48Sub.java:31
org.direct_bt.EUI48
A packed 48 bit EUI-48 identifier, formerly known as MAC-48 or simply network device MAC address (Med...
Definition: EUI48.java:37
org.direct_bt.BTFactory
One stop BTManager API entry point.
Definition: BTFactory.java:52
jau
org.direct_bt.BTManager
Definition: BTManager.java:34
test.org.direct_bt.TestEUI48.main
static void main(final String args[])
Definition: TestEUI48.java:143
org.direct_bt.BTFactory.getDirectBTManager
static synchronized BTManager getDirectBTManager()
Returns an initialized BluetoothManager instance using the DirectBT implementation.
Definition: BTFactory.java:480
org
org.direct_bt.BTException
Definition: BTException.java:32
org.direct_bt.EUI48Sub.scanEUI48Sub
static boolean scanEUI48Sub(final String str, final EUI48Sub dest, final StringBuilder errmsg)
Fills given EUI48Sub instance via given string representation.
Definition: EUI48Sub.java:64
org.direct_bt.EUI48.indexOf
int indexOf(final EUI48Sub needle)
Finds the index of given EUI48Sub.
Definition: EUI48.java:255
org.direct_bt.EUI48Sub.toString
final String toString()
Definition: EUI48Sub.java:259
test.org.direct_bt.TestEUI48
Test basic EUI48 functionality.
Definition: TestEUI48.java:53