aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/components/table/TooManySetColumnCollapsedCalls.java
blob: 30921392e8cbdd1e3f003c6d5500aaf755103586 (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
package com.vaadin.tests.components.table;

import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Label;
import com.vaadin.ui.Table;

public class TooManySetColumnCollapsedCalls extends TestBase {

    private int counter = 0;
    private Label label;
    private Table table;

    @Override
    protected void setup() {
        label = new Label(String.valueOf(counter));
        label.setId("label");
        table = createTable();
        table.setId("table");
        addComponent(table);
        addComponent(label);
        getLayout().setSpacing(true);
        table.setColumnCollapsed("p2", true);
    }

    @Override
    protected String getDescription() {
        return "Table.setColumnCollapsed is called too many times in Table.changeVariables."
                + " Collapsing column 'P3' should only increase the counter by one.";
    }

    @Override
    protected Integer getTicketNumber() {
        return 5681;
    }

    private Table createTable() {
        Table table = new Table() {
            @Override
            public void setColumnCollapsed(Object propertyId, boolean collapsed)
                    throws IllegalStateException {
                ++counter;
                label.setValue(String.valueOf(counter));
                super.setColumnCollapsed(propertyId, collapsed);
            }
        };
        table.setWidth("400px");
        table.setHeight("100px");
        table.setPageLength(100);
        table.setColumnCollapsingAllowed(true);
        table.setImmediate(true);
        table.addContainerProperty("p1", String.class, null);
        table.addContainerProperty("p2", String.class, null);
        table.addContainerProperty("p3", String.class, null);
        table.addContainerProperty("p4", String.class, null);

        for (int i = 0; i < 10; i++) {
            table.addItem(new Object[] { "a" + i, "b" + i, "c" + i, "X" + i },
                    "" + i);
        }
        return table;
    }

}