/* * Copyright (C) 2013 Red Hat, Inc. and/or its affiliates. * * 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.jboss.errai.demo.busstress.client.local; import org.jboss.errai.bus.common.AbstractErraiTest; import org.jboss.errai.ioc.client.Container; import com.google.gwt.user.client.Timer; public class HelloWorldClientTest extends AbstractErraiTest { @Override public String getModuleName() { return "org.jboss.errai.demo.busstress.App"; } @Override protected void gwtSetUp() throws Exception { super.gwtSetUp(); // We need to bootstrap the IoC container manually because GWTTestCase // doesn't call onModuleLoad() for us. new Container().bootstrapContainer(); } public void testSendMessage() throws Exception { ErraiIocTestHelper.afterBusInitialized(new Runnable() { @Override public void run() { final StressTestClient client = ErraiIocTestHelper.instance.client; assertNotNull(client); // send a message using the bus (it is now initialized) client.messageInterval.setValue(10); client.messageMultiplier.setValue(1); client.messageSize.setValue(100); client.onStartButtonClick(null); // wait a few seconds, then check that the server response caused a DOM update new Timer() { @Override public void run() { client.stopIfRunning(); final StatsPanel statsPanel = (StatsPanel) client.resultsPanel.getWidget(0); assertNotNull("Stats panel should have been added to results panel", statsPanel); assertTrue("Expected at least one message received; got " + statsPanel.messageRecvCount, Integer.parseInt(statsPanel.messageRecvCount.getText()) > 0); finishTest(); } }.schedule(2000); } }); delayTestFinish(120000); } }