blob: 6e9b83aefa7b4292663316d58f1e58b0c7e1c19b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2014 EclipseSource and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* EclipseSource - initial API and implementation
******************************************************************************/
package org.eclipse.rap.addons.fileupload;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.fail;
import org.eclipse.rap.addons.fileupload.test.TestFileUploadEvent;
import org.eclipse.rap.addons.fileupload.test.TestFileUploadListener;
import org.eclipse.rap.addons.fileupload.test.TestFileUploadReceiver;
import org.eclipse.rap.rwt.testfixture.internal.Fixture;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
@SuppressWarnings( "restriction" )
public class FileUploadEvent_Test {
private FileUploadHandler handler;
@Before
public void setUp() {
Fixture.setUp();
handler = new FileUploadHandler( new TestFileUploadReceiver() );
}
@After
public void tearDown() {
handler.dispose();
handler = null;
Fixture.tearDown();
}
@Test
public void testCannotCreateWithNullSource() {
try {
new TestFileUploadEvent( null );
fail();
} catch( IllegalArgumentException expected ) {
}
}
@Test
public void testGetSource() {
TestFileUploadEvent event = new TestFileUploadEvent( handler );
assertSame( handler, event.getSource() );
}
@Test
public void testDispatchProgress() {
TestFileUploadListener listener = new TestFileUploadListener();
handler.addUploadListener( listener );
new TestFileUploadEvent( handler ).dispatchProgress();
assertEquals( "progress.", listener.getLog() );
}
@Test
public void testDispatchFinished() {
TestFileUploadListener listener = new TestFileUploadListener();
handler.addUploadListener( listener );
new TestFileUploadEvent( handler ).dispatchFinished();
assertEquals( "finished.", listener.getLog() );
}
@Test
public void testDispatchFailed() {
TestFileUploadListener listener = new TestFileUploadListener();
handler.addUploadListener( listener );
new TestFileUploadEvent( handler ).dispatchFailed();
assertEquals( "failed.", listener.getLog() );
}
}