info("Multicast send to port " + socket.port);
socket.send(addr, socket.port, rawPing, rawPing.length);
// Timers are bad, but it seems like the only way to test *not* getting a // packet.
let timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
timer.initWithCallback(
() => {
socket.close();
reject();
},
TIMEOUT,
Ci.nsITimer.TYPE_ONE_SHOT
);
});
}
add_test(() => {
info("Joining multicast group");
let socket = createSocketAndJoin(ADDRESS_TEST1);
sendPing(socket, ADDRESS_TEST1).then(run_next_test, () =>
do_throw("Joined group, but no packet received")
);
});
// Disabled on Windows11 for frequent intermittent failures. // See bug 1760123.
add_test({ skip_if: () => mozinfo.win11_2009 }, () => {
info("Disabling multicast loopback");
let socket = createSocketAndJoin(ADDRESS_TEST2);
socket.multicastLoopback = false;
sendPing(socket, ADDRESS_TEST2).then(
() => do_throw("Loopback disabled, but still got a packet"),
run_next_test
);
});
// This fails locally on windows 11.
add_test({ skip_if: () => mozinfo.win11_2009 }, () => {
info("Changing multicast interface");
let socket = createSocketAndJoin(ADDRESS_TEST3);
socket.multicastInterface = "127.0.0.1";
sendPing(socket, ADDRESS_TEST3).then(
() => do_throw("Changed interface, but still got a packet"),
run_next_test
);
});
add_test(() => {
info("Leaving multicast group");
let socket = createSocketAndJoin(ADDRESS_TEST4);
socket.leaveMulticast(ADDRESS_TEST4);
sendPing(socket, ADDRESS_TEST4).then(
() => do_throw("Left group, but still got a packet"),
run_next_test
);
});
Messung V0.5
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.