/* * Copyright (c) 2008-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.cometd.javascript; import org.cometd.bayeux.server.BayeuxServer; import org.cometd.bayeux.server.ServerMessage; import org.cometd.bayeux.server.ServerSession; import org.junit.Assert; import org.junit.Test; public class CometDPublishTest extends AbstractCometDTest { @Test public void testPublish() throws Exception { defineClass(Latch.class); evaluateScript("var readyLatch = new Latch(1);"); Latch readyLatch = get("readyLatch"); evaluateScript("cometd.addListener('/meta/connect', function(message) { readyLatch.countDown(); });"); evaluateScript("cometd.init({url: '" + cometdURL + "', logLevel: '" + getLogLevel() + "'})"); Assert.assertTrue(readyLatch.await(5000)); evaluateScript("var echoLatch = new Latch(1);"); Latch echoLatch = get("echoLatch"); evaluateScript("var subscription = cometd.subscribe('/echo', echoLatch, echoLatch.countDown);"); evaluateScript("var publishLatch = new Latch(1);"); Latch publishLatch = get("publishLatch"); evaluateScript("cometd.addListener('/meta/publish', publishLatch, publishLatch.countDown);"); evaluateScript("cometd.publish('/echo', 'test');"); Assert.assertTrue(echoLatch.await(5000)); Assert.assertTrue(publishLatch.await(5000)); disconnect(); } @Test public void testPublishSuccessfulInvokesCallback() throws Exception { defineClass(Latch.class); evaluateScript("var readyLatch = new Latch(1);"); Latch readyLatch = get("readyLatch"); evaluateScript("cometd.addListener('/meta/connect', function(message) { readyLatch.countDown(); });"); evaluateScript("cometd.init({url: '" + cometdURL + "', logLevel: '" + getLogLevel() + "'})"); Assert.assertTrue(readyLatch.await(5000)); evaluateScript("var publishLatch = new Latch(2);"); Latch publishLatch = get("publishLatch"); evaluateScript("cometd.addListener('/meta/publish', publishLatch, publishLatch.countDown);"); evaluateScript("cometd.publish('/echo', 'test1', function(message)" + "{" + " publishLatch.countDown();" + "});"); Assert.assertTrue(publishLatch.await(5000)); // Be sure that another publish without callback does not trigger the previous callback publishLatch.reset(2); evaluateScript("cometd.publish('/echo', 'test2');"); Assert.assertFalse(publishLatch.await(1000)); Assert.assertEquals(1, publishLatch.jsGet_count()); disconnect(); } @Test public void testPublishFailedInvokesCallback() throws Exception { bayeuxServer.addExtension(new BayeuxServer.Extension.Adapter() { @Override public boolean rcv(ServerSession from, ServerMessage.Mutable message) { return !"/echo".equals(message.getChannel()); } }); defineClass(Latch.class); evaluateScript("var readyLatch = new Latch(1);"); Latch readyLatch = get("readyLatch"); evaluateScript("cometd.addListener('/meta/connect', function(message) { readyLatch.countDown(); });"); evaluateScript("cometd.init({url: '" + cometdURL + "', logLevel: '" + getLogLevel() + "'})"); Assert.assertTrue(readyLatch.await(5000)); evaluateScript("var publishLatch = new Latch(2);"); Latch publishLatch = get("publishLatch"); evaluateScript("cometd.addListener('/meta/publish', publishLatch, publishLatch.countDown);"); evaluateScript("cometd.publish('/echo', 'test1', function(message)" + "{" + " if (!message.successful)" + " publishLatch.countDown();" + "});"); Assert.assertTrue(publishLatch.await(5000)); // Be sure that another publish without callback does not trigger the previous callback publishLatch.reset(2); evaluateScript("cometd.publish('/echo', 'test2');"); Assert.assertFalse(publishLatch.await(1000)); Assert.assertEquals(1, publishLatch.jsGet_count()); disconnect(); } @Test public void testPublishWithServerDownInvokesCallback() throws Exception { defineClass(Latch.class); evaluateScript("var readyLatch = new Latch(1);"); Latch readyLatch = get("readyLatch"); evaluateScript("cometd.addListener('/meta/connect', function(message) { readyLatch.countDown(); });"); evaluateScript("var publishLatch = new Latch(2);"); Latch publishLatch = get("publishLatch"); evaluateScript("cometd.addListener('/meta/publish', publishLatch, publishLatch.countDown);"); evaluateScript("cometd.init({url: '" + cometdURL + "', logLevel: '" + getLogLevel() + "'})"); Assert.assertTrue(readyLatch.await(5000)); server.stop(); Thread.sleep(1000); evaluateScript("cometd.publish('/echo', 'test2', function(message)" + "{" + " if (!message.successful)" + " publishLatch.countDown();" + "});"); Assert.assertTrue(publishLatch.await(5000)); disconnect(); } }