blob: d5be9b5abb6526acbdb21d94c01219c821f02867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
package com.vaadin.tests.components.upload;
import java.io.ByteArrayOutputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;
import com.vaadin.tests.components.ComponentTestCase;
import com.vaadin.ui.Component;
import com.vaadin.ui.Notification;
import com.vaadin.ui.Upload;
import com.vaadin.ui.Upload.Receiver;
public class TestUpload extends ComponentTestCase<Upload> implements Receiver {
@Override
protected Integer getTicketNumber() {
return 3525;
}
@Override
protected Class<Upload> getTestClass() {
return Upload.class;
}
@Override
protected void initializeComponents() {
Upload u;
u = new Upload("Undefined wide upload", this);
u.setSizeUndefined();
addTestComponent(u);
u.addFinishedListener(event -> Notification.show("Done"));
u = new Upload("300px wide upload", this);
u.setWidth("300px");
addTestComponent(u);
}
@Override
protected List<Component> createActions() {
List<Component> actions = new ArrayList<>();
actions.add(createEnabledAction(true));
return actions;
}
@Override
public OutputStream receiveUpload(String filename, String MIMEType) {
Notification.show("Receiving upload");
return new ByteArrayOutputStream();
}
}
|