Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EvolutionGraph_spec.js « specs « UI « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecf6f3220dd14c1cab0f902ab31ad12140242267 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*!
 * Piwik - free/libre analytics platform
 *
 * evolution graph screenshot tests.
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

describe("EvolutionGraph", function () {
    this.timeout(0);

    var url = "?module=Widgetize&action=iframe&idSite=1&period=day&date=2012-01-31&evolution_day_last_n=30"
            + "&moduleToWidgetize=UserCountry&actionToWidgetize=getCountry&viewDataTable=graphEvolution"
            + "&isFooterExpandedInDashboard=1";

    before(function (done) {
        testEnvironment.callApi("Annotations.deleteAll", {idSite: 3}, done);
    });

    function showDataTableFooter(page)
    {
        page.mouseMove('.dataTableFeatures');
    }

    it("should load correctly", function (done) {
        expect.screenshot('initial').to.be.capture(function (page) {
            page.load(url);
        }, done);
    });

    it("should show percent metrics like bounce rate correctly", function (done) {
        expect.screenshot('bounce_rate').to.be.capture(function (page) {
            page.load(url + "&columns=nb_visits,bounce_rate,avg_time_on_site&filter_add_columns_when_show_all_columns=0");
        }, done);
    });

    it("should show only one series when a label is specified", function (done) {
        expect.screenshot('one_series').to.be.capture(function (page) {
            page.load(url + "&label=Canada");
        }, done);
    });

    it("should display the metric picker on hover of metric picker icon", function (done) {
        expect.screenshot('metric_picker_shown').to.be.capture(function (page) {
            page.mouseMove('.jqplot-seriespicker');
        }, done);
    });

    it("should show multiple metrics when another metric picked", function (done) {
        expect.screenshot('two_metrics').to.be.capture(function (page) {
            page.click('.jqplot-seriespicker-popover input:not(:checked):first + label');
        }, done);
    });

    it("should show table actions on hover", function (done) {
        expect.screenshot('table_actions').to.be.capture(function (page) {
            showDataTableFooter(page);
        }, done);
    });

    it("should show export formats on click including image", function (done) {
        expect.screenshot('export_formats').to.be.capture(function (page) {
            page.click('.activateExportSelection');
        }, done);
    });

    it("should show graph as image when export as image icon clicked", function (done) {
        expect.screenshot('export_image').to.be.capture(function (page) {
            page.click('#dataTableFooterExportAsImageIcon');
        }, done);
    });

    it("should display more periods when limit selection changed", function (done) {
        expect.screenshot('limit_changed').to.be.capture(function (page) {
            page.click('.ui-dialog .ui-widget-header button:visible');
            showDataTableFooter(page);
            page.click('.limitSelection input');
            page.evaluate(function () {
                $('.limitSelection ul li:contains(60) span').click();
            });
        }, done);
    });

    // annotations tests
    it("should show annotations when annotation icon on x-axis clicked", function (done) {
        expect.screenshot('annotations_single_period').to.be.capture(function (page) {
            showDataTableFooter(page);
            page.click('.limitSelection input');
            page.evaluate(function () {
                $('.limitSelection ul li:contains(30) span').click(); // change limit back
            });

            page.click('.evolution-annotations>span[data-count!=0]', 3000);
        }, done);
    });

    it("should show all annotations when annotations footer link clicked", function (done) {
        expect.screenshot('annotations_all').to.be.capture(function (page) {
            showDataTableFooter(page);
            page.click('.annotationView', 3000);
        }, done);
    });

    it("should show no annotations message when no annotations for site", function (done) {
        expect.screenshot('annotations_none').to.be.capture(function (page) {
            page.load(page.getCurrentUrl().replace(/idSite=[^&]*/, "idSite=3") + "&columns=nb_visits");
            showDataTableFooter(page);
            page.click('.annotationView', 3000);
        }, done);
    });

    it("should show add annotation form when create annotation clicked", function (done) {
        expect.screenshot('new_annotation_form').to.be.capture(function (page) {
            page.click('.add-annotation');
            page.click('.annotation-period-edit>a');
            page.evaluate(function () {
                $('.datepicker').datepicker("setDate", new Date(2012,0,02) );
                $(".ui-datepicker-current-day").trigger("click"); // this triggers onSelect event which sets .annotation-period-edit>a
            });
        }, done);
    });

    it("should add new annotation when create annotation submitted", function (done) {
        expect.screenshot('new_annotation_submit').to.be.capture(function (page) {
            page.sendKeys('.new-annotation-edit', 'new annotation');
            page.click('.annotation-period-edit>a');
            page.evaluate(function () {
                $('.ui-datepicker-calendar td a:contains(15)').click();
            });
            page.click('.annotation-list-range');
            page.click('input.new-annotation-save', 3000);
        }, done);
    });

    it("should star annotation when star image clicked", function (done) {
        expect.screenshot('annotation_starred').to.be.capture(function (page) {
            page.click('.annotation-star');
        }, done);
    });

    it("should show edit annotation form", function (done) {
        expect.screenshot('annotation_edit_form').to.be.capture(function (page) {
            page.click('.edit-annotation');
        }, done);
    });

    it("should edit annotation when edit form submitted", function (done) {
        expect.screenshot('annotation_edit_submit').to.be.capture(function (page) {
            page.sendKeys('.annotation-edit', 'edited annotation');
            page.click('.annotation-period-edit>a');
            page.evaluate(function () {
                $('.annotation-meta .ui-datepicker-calendar td a:contains(16)').click();
            });
            page.click('.annotation-list-range');
            page.click('input.annotation-save', 3000);
        }, done);
    });

    it("should delete annotation when delete link clicked", function (done) {
        expect.screenshot('annotation_delete').to.be.capture(function (page) {
            page.click('.edit-annotation');
            page.click('.delete-annotation');
        }, done);
    });

    it("should cutout two labels so all can fit on screen", function (done) {
        expect.screenshot('label_ticks_cutout').to.be.capture(function (page) {
            page.setViewportSize(320,320);
            page.load(url.replace(/idSite=[^&]*/, "idSite=3") + "&columns=nb_visits");
        }, done);
    });
});