From: Automerge Date: Wed, 9 May 2012 17:06:15 +0000 (+0000) Subject: [merge from 6.7] Test case for #8781 X-Git-Tag: 7.0.0.alpha3~175^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0bcee7fad275880d2acf5ed4cca34ace42c7481b;p=vaadin-framework.git [merge from 6.7] Test case for #8781 svn changeset:23699/svn branch:6.8 --- diff --git a/WebContent/statictestfiles/dummy.zip b/WebContent/statictestfiles/dummy.zip new file mode 100644 index 0000000000..e6e34282fe Binary files /dev/null and b/WebContent/statictestfiles/dummy.zip differ diff --git a/tests/testbench/com/vaadin/tests/components/window/DownloadAndUpdate.java b/tests/testbench/com/vaadin/tests/components/window/DownloadAndUpdate.java new file mode 100644 index 0000000000..ca9c31513f --- /dev/null +++ b/tests/testbench/com/vaadin/tests/components/window/DownloadAndUpdate.java @@ -0,0 +1,45 @@ +package com.vaadin.tests.components.window; + +import com.vaadin.terminal.ExternalResource; +import com.vaadin.tests.components.TestBase; +import com.vaadin.ui.Button; +import com.vaadin.ui.Button.ClickEvent; +import com.vaadin.ui.Table; + +public class DownloadAndUpdate extends TestBase { + + @Override + protected void setup() { + addComponent(new Button("Download and update", + new Button.ClickListener() { + public void buttonClick(ClickEvent event) { + downloadAndUpdate(); + } + })); + } + + protected void downloadAndUpdate() { + getMainWindow().open( + new ExternalResource("/statictestfiles/dummy.zip", "_new")); + + // Any component sending an UIDL request when rendered will likely do + Table table = new Table(); + table.addContainerProperty("A", String.class, ""); + for (int i = 0; i < 100; i++) { + table.addItem(new Object[] { Integer.toString(i) }, + Integer.valueOf(i)); + } + addComponent(table); + } + + @Override + protected String getDescription() { + return "There should be no problems downloading a file from the same request that triggers another request, even in webkit browsers."; + } + + @Override + protected Integer getTicketNumber() { + return Integer.valueOf(8781); + } + +}