OnCloseTest.java
/*
* Copyright (c) 2014, 2017 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.tyrus.test.e2e.non_deployable;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import javax.websocket.ClientEndpointConfig;
import javax.websocket.CloseReason;
import javax.websocket.DeploymentException;
import javax.websocket.Endpoint;
import javax.websocket.EndpointConfig;
import javax.websocket.Session;
import javax.websocket.server.ServerEndpoint;
import org.glassfish.tyrus.server.Server;
import org.glassfish.tyrus.test.tools.TestContainer;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
/**
* Tests {@link CloseReason} in client's {@code onClose} method after stopping server.
*
* @author Pavel Bucek (pavel.bucek at oracle.com)
*/
public class OnCloseTest extends TestContainer {
@ServerEndpoint(value = "/onCloseEndpoint")
public static class OnCloseEndpoint {
}
@Test
public void testOnClose1006() throws DeploymentException {
Server server = startServer(OnCloseEndpoint.class);
final CountDownLatch messageLatch = new CountDownLatch(1);
try {
final ClientEndpointConfig cec = ClientEndpointConfig.Builder.create().build();
createClient().connectToServer(new Endpoint() {
@Override
public void onOpen(Session session, EndpointConfig config) {
}
@Override
public void onClose(Session session, CloseReason closeReason) {
if (closeReason != null && closeReason.getCloseCode().getCode()
== CloseReason.CloseCodes.CLOSED_ABNORMALLY.getCode()) {
messageLatch.countDown();
}
}
}, cec, getURI(OnCloseEndpoint.class));
stopServer(server);
assertTrue(messageLatch.await(100, TimeUnit.SECONDS));
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e.getMessage(), e);
}
}
}