blob: d267d80669c034fe37474b599a94ae1d5d5c9155 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
package com.vaadin.tests.components;
import com.vaadin.shared.ui.label.ContentMode;
import com.vaadin.ui.Component;
import com.vaadin.ui.Label;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
public abstract class TestBase extends AbstractTestCase {
@Override
public final void init() {
window = new LegacyWindow(getClass().getName());
setMainWindow(window);
window.getContent().setSizeFull();
Label label = new Label(getDescription(), ContentMode.HTML);
if (label.getValue() == null || "".equals(label.getValue())) {
// This is only an ugly hack to be screenshot compatible to be able
// to detect real problems when introducing IE font-size/line-height
// fixes
label.setValue(" ");
if (getBrowser().isIE()
&& getBrowser().getBrowserMajorVersion() == 9) {
label.setHeight("13.8px");
} else {
label.setHeight("15px");
}
}
label.setWidth("100%");
window.addComponent(label);
layout = new VerticalLayout();
window.addComponent(layout);
((VerticalLayout) window.getContent()).setExpandRatio(layout, 1);
setup();
}
private LegacyWindow window;
@Override
public void setMainWindow(LegacyWindow mainWindow) {
if (mainWindow != window) {
throw new IllegalStateException(
"You should not set your own main window when using TestBase. If you need to use a custom Window as the main window, use AbstractTestCase instead.");
}
super.setMainWindow(mainWindow);
}
private VerticalLayout layout;
public TestBase() {
}
protected VerticalLayout getLayout() {
return layout;
}
protected abstract void setup();
protected void addComponent(Component c) {
getLayout().addComponent(c);
}
protected void removeComponent(Component c) {
getLayout().removeComponent(c);
}
protected void replaceComponent(Component oldComponent,
Component newComponent) {
getLayout().replaceComponent(oldComponent, newComponent);
}
}
|