/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/jdk/java/net/MulticastSocket/SendPortZero.java
105 строк
4 KB
Daniel Fuchs
8381616: Refactor various java/net/*Socket*/ TestNG tests to use JUnit
08 апр 2026, 18:41
08 апр 2026, 18:41
52a54da
Код
Авторство
О чём код?
/* * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ import java.io.IOException; import java.net.DatagramPacket; import java.net.MulticastSocket; import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.SocketException; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertThrows; /* * @test * @bug 8243408 * @summary Check that MulticastSocket throws expected * Exception when sending a DatagramPacket with port 0 * @run junit/othervm ${test.main.class} */ public class SendPortZero { private static InetAddress loopbackAddr, wildcardAddr; private static MulticastSocket multicastSocket; private static DatagramPacket loopbackZeroPkt, wildcardZeroPkt, wildcardValidPkt; private static final Class<SocketException> SE = SocketException.class; @BeforeAll public static void setUp() throws IOException { multicastSocket = new MulticastSocket(); byte[] buf = "test".getBytes(); // Addresses loopbackAddr = InetAddress.getLoopbackAddress(); wildcardAddr = new InetSocketAddress(0).getAddress(); // Packets // loopback w/port 0 loopbackZeroPkt = new DatagramPacket(buf, 0, buf.length); loopbackZeroPkt.setAddress(loopbackAddr); loopbackZeroPkt.setPort(0); // wildcard w/port 0 wildcardZeroPkt = new DatagramPacket(buf, 0, buf.length); wildcardZeroPkt.setAddress(wildcardAddr); wildcardZeroPkt.setPort(0); // wildcard addr w/valid port // Not currently tested. See JDK-8236807 wildcardValidPkt = new DatagramPacket(buf, 0, buf.length); wildcardValidPkt.setAddress(wildcardAddr); wildcardValidPkt.setPort(multicastSocket.getLocalPort()); } public static Object[][] testCases() throws IOException { return new Object[][]{ { new MulticastSocket(), loopbackZeroPkt }, { new MulticastSocket(), wildcardZeroPkt }, // Not currently tested. See JDK-8236807 //{ new MulticastSocket(), wildcardValidPkt } }; } @ParameterizedTest @MethodSource("testCases") public void testSend(MulticastSocket ms, DatagramPacket pkt) { try (ms) { assertFalse(ms.isClosed()); assertThrows(SE, () -> ms.send(pkt)); } } @AfterAll public static void tearDown() { multicastSocket.close(); } }