summaryrefslogtreecommitdiff
path: root/tests/end2end/features/history.feature
blob: 10658cb313ba407b23155122d47a02ee7a4f4e6e (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
# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et:

Feature: Page history

    Make sure the global page history is saved correctly.

    Background:
        Given I run :history-clear --force

    Scenario: Simple history saving
        When I open data/numbers/1.txt
        And I open data/numbers/2.txt
        Then the history should contain:
            http://localhost:(port)/data/numbers/1.txt
            http://localhost:(port)/data/numbers/2.txt

    Scenario: History item with title
        When I open data/title.html
        Then the history should contain:
            http://localhost:(port)/data/title.html Test title

    Scenario: History item with redirect
        When I open redirect-to?url=data/title.html without waiting
        And I wait until data/title.html is loaded
        Then the history should contain:
            r http://localhost:(port)/redirect-to?url=data/title.html Test title
            http://localhost:(port)/data/title.html Test title

    Scenario: History item with spaces in URL
        When I open data/title with spaces.html
        Then the history should contain:
            http://localhost:(port)/data/title%20with%20spaces.html Test title

    @unicode_locale
    Scenario: History item with umlauts
        When I open data/äöü.html
        Then the history should contain:
            http://localhost:(port)/data/%C3%A4%C3%B6%C3%BC.html Chäschüechli

    @flaky @qtwebengine_todo: Error page message is not implemented
    Scenario: History with an error
        When I run :open file:///does/not/exist
        And I wait for "Error while loading file:///does/not/exist: Error opening /does/not/exist: *" in the log
        Then the history should contain:
            file:///does/not/exist Error loading page: file:///does/not/exist

    @qtwebengine_todo: Error page message is not implemented
    Scenario: History with a 404
        When I open 404 without waiting
        And I wait for "Error while loading http://localhost:*/404: NOT FOUND" in the log
        Then the history should contain:
            http://localhost:(port)/404 Error loading page: http://localhost:(port)/404

    # Hangs a lot on AppVeyor
    @posix
    Scenario: History with invalid URL
        When I run :tab-only
        And I open data/javascript/window_open.html
        And I run :click-element id open-invalid
        Then "Changing title for idx 1 to 'about:blank'" should be logged

    Scenario: History with data URL
        When I open data/data_link.html
        And I run :click-element id link
        And I wait until data:;base64,cXV0ZWJyb3dzZXI= is loaded
        Then the history should contain:
            http://localhost:(port)/data/data_link.html data: link

    Scenario: History with view-source URL
        When I open data/title.html
        And I run :view-source
        And I wait for regex "Changing title for idx \d+ to 'view-source:(http://)?localhost:\d+/data/title.html'" in the log
        Then the history should contain:
            http://localhost:(port)/data/title.html Test title

    # Hangs a lot on AppVeyor
    @posix
    Scenario: Clearing history
        When I run :tab-only
        And I open data/title.html
        And I run :history-clear --force
        Then the history should be empty

    Scenario: Clearing history with confirmation
        When I open data/title.html
        And I run :history-clear
        And I wait for "Asking question <* title='Clear all browsing history?'>, *" in the log
        And I run :prompt-accept yes
        Then the history should be empty

    Scenario: History with yanked URL and 'add to history' flag
        When I open data/hints/html/simple.html
        And I hint with args "--add-history links yank" and follow a
        Then the history should contain:
            http://localhost:(port)/data/hints/html/simple.html Simple link
            http://localhost:(port)/data/hello.txt

    Scenario: Listing history
        When I open data/numbers/3.txt
        And I open data/numbers/4.txt
        And I open qute://history
        Then the page should contain the plaintext "3.txt"
        Then the page should contain the plaintext "4.txt"

    # Hangs a lot on AppVeyor
    @posix
    Scenario: Listing history with qute:history redirect
        When I open data/numbers/3.txt
        And I open data/numbers/4.txt
        And I open qute:history without waiting
        And I wait until qute://history is loaded
        Then the page should contain the plaintext "3.txt"
        Then the page should contain the plaintext "4.txt"

    Scenario: XSS in :history
        When I open data/issue4011.html
        And I open qute://history
        Then the javascript message "XSS" should not be logged