29 package test.org.direct_bt;
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;
37 import jau.test.junit.util.JunitTracer;
44 import org.junit.Assert;
45 import org.junit.FixMethodOrder;
46 import org.junit.Test;
47 import org.junit.runners.MethodSorters;
52 @FixMethodOrder(MethodSorters.NAME_ASCENDING)
59 }
catch (
BTException | NoSuchMethodException | SecurityException
60 | IllegalAccessException | IllegalArgumentException
61 | InvocationTargetException | ClassNotFoundException e) {
62 System.err.println(
"Unable to instantiate DirectBT BluetoothManager");
67 static void test_sub(
final String mac_str,
final List<String> mac_sub_strs,
final List<Integer> indices) {
70 System.out.printf(
"Test EUI48 mac: '%s' -> '%s'\n", mac_str, mac.
toString());
71 Assert.assertEquals(mac_str, mac.
toString());
74 for(
final Iterator<String> iter=mac_sub_strs.iterator(); iter.hasNext(); ++i) {
75 final String mac_sub_str = iter.next();
77 System.out.printf(
"EUI48Sub mac02_sub: '%s' -> '%s'\n", mac_sub_str, mac_sub.
toString());
79 String sub_str =
new String(mac_sub_str);
80 if( sub_str.isEmpty() ) {
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());
86 if( sub_str.length() > 0 && sub_str.charAt(sub_str.length()-1) ==
':' ) {
87 sub_str = sub_str.substring(0, sub_str.length()-1);
90 Assert.assertEquals(sub_str, mac_sub.
toString());
92 final int idx = mac.
indexOf(mac_sub);
93 Assert.assertEquals( idx, indices.get(i).intValue());
95 Assert.assertTrue( mac.
contains(mac_sub) );
97 Assert.assertFalse( mac.
contains(mac_sub) );
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();
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());
111 System.out.printf(
"EUI48Sub mac_sub: '%s' -> Error '%s'\n", mac_sub_str, errmsg.toString());
113 Assert.assertEquals(expected_result, res);
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));
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));
134 final String mac_sub_str =
"C0:10:22:A0:10:00";
135 test_sub(mac_sub_str, mac_sub_str,
true );
138 final String mac_sub_str =
"0600106";
139 test_sub(
null, mac_sub_str,
false );
143 public static void main(
final String args[])
throws IOException {
144 final String tstname =
TestEUI48.class.getName();
145 org.junit.runner.JUnitCore.main(tstname);