qutebrowser/tests/end2end/features/open.feature

123 lines
4.4 KiB
Gherkin
Raw Normal View History

# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et:
2015-11-24 19:19:23 +01:00
Feature: Opening pages
Scenario: :open with URL
Given I open about:blank
2015-11-25 18:02:14 +01:00
When I run :open http://localhost:(port)/data/numbers/1.txt
And I wait until data/numbers/1.txt is loaded
2015-11-24 19:19:23 +01:00
And I run :tab-only
Then the session should look like:
windows:
- tabs:
- active: true
history:
- url: about:blank
- active: true
2015-11-25 18:02:14 +01:00
url: http://localhost:*/data/numbers/1.txt
2015-11-24 19:19:23 +01:00
2016-11-26 12:17:23 +01:00
Scenario: :open without URL
When I set general -> default-page to http://localhost:(port)/data/numbers/11.txt
And I run :open
Then data/numbers/11.txt should be loaded
2015-11-24 19:19:23 +01:00
Scenario: :open without URL and -t
2015-11-25 18:02:14 +01:00
When I set general -> default-page to http://localhost:(port)/data/numbers/2.txt
2015-11-24 19:19:23 +01:00
And I run :open -t
2015-11-25 18:02:14 +01:00
Then data/numbers/2.txt should be loaded
2015-11-24 19:19:23 +01:00
Scenario: :open with invalid URL
When I set general -> auto-search to false
And I run :open foo!
2015-11-26 17:50:39 +01:00
Then the error "Invalid URL" should be shown
2015-11-24 19:19:23 +01:00
Scenario: :open with -t and -b
When I run :open -t -b foo.bar
2017-05-10 22:44:05 +02:00
Then the error "Only one of -t/-b/-w/-p can be given!" should be shown
2015-11-24 19:19:23 +01:00
Scenario: Searching with :open
When I set general -> auto-search to naive
2015-11-25 18:02:14 +01:00
And I set searchengines -> DEFAULT to http://localhost:(port)/data/numbers/{}.txt
2015-11-24 19:19:23 +01:00
And I run :open 3
2015-11-25 18:02:14 +01:00
Then data/numbers/3.txt should be loaded
2015-11-24 19:19:23 +01:00
Scenario: Opening in a new tab
Given I open about:blank
When I run :tab-only
2015-11-25 18:02:14 +01:00
And I run :open -t http://localhost:(port)/data/numbers/4.txt
And I wait until data/numbers/4.txt is loaded
2016-08-02 21:27:26 +02:00
Then the following tabs should be open:
- about:blank
- data/numbers/4.txt (active)
2015-11-24 19:19:23 +01:00
Scenario: Opening in a new background tab
Given I open about:blank
When I run :tab-only
2015-11-25 18:02:14 +01:00
And I run :open -b http://localhost:(port)/data/numbers/5.txt
And I wait until data/numbers/5.txt is loaded
2016-08-02 21:27:26 +02:00
Then the following tabs should be open:
- about:blank (active)
- data/numbers/5.txt
2015-11-24 19:19:23 +01:00
Scenario: :open with count
Given I open about:blank
When I run :tab-only
And I open about:blank in a new tab
2015-11-25 18:02:14 +01:00
And I run :open http://localhost:(port)/data/numbers/6.txt with count 2
And I wait until data/numbers/6.txt is loaded
2015-11-24 19:19:23 +01:00
Then the session should look like:
windows:
- tabs:
- history:
- url: about:blank
- active: true
history:
- url: about:blank
- active: true
2015-11-25 18:02:14 +01:00
url: http://localhost:*/data/numbers/6.txt
2015-11-24 19:19:23 +01:00
2016-08-02 21:27:26 +02:00
Scenario: Opening in a new tab (explicit)
2015-11-24 19:19:23 +01:00
Given I open about:blank
When I set tabs -> new-tab-position-explicit to next
And I set tabs -> new-tab-position to prev
2016-08-02 21:27:26 +02:00
And I run :tab-only
And I run :open -t http://localhost:(port)/data/numbers/7.txt
2015-11-25 18:02:14 +01:00
And I wait until data/numbers/7.txt is loaded
2016-08-02 21:27:26 +02:00
Then the following tabs should be open:
- about:blank
- data/numbers/7.txt (active)
2016-08-02 19:49:25 +02:00
2016-08-02 21:27:26 +02:00
Scenario: Opening in a new tab (implicit)
2016-08-02 19:49:25 +02:00
Given I open about:blank
When I set tabs -> new-tab-position-explicit to next
And I set tabs -> new-tab-position to prev
2016-08-02 19:49:25 +02:00
And I run :tab-only
2016-08-02 21:27:26 +02:00
And I run :open -t -i http://localhost:(port)/data/numbers/8.txt
And I wait until data/numbers/8.txt is loaded
Then the following tabs should be open:
- data/numbers/8.txt (active)
- about:blank
Scenario: Opening in a new window
Given I open about:blank
When I run :tab-only
And I run :open -w http://localhost:(port)/data/numbers/9.txt
2016-08-02 19:49:25 +02:00
And I wait until data/numbers/9.txt is loaded
Then the session should look like:
windows:
- tabs:
- active: true
history:
- active: true
2016-08-02 21:27:26 +02:00
url: about:blank
2016-08-02 19:49:25 +02:00
- tabs:
- active: true
history:
- active: true
2016-08-02 21:27:26 +02:00
url: http://localhost:*/data/numbers/9.txt
Scenario: Opening a quickmark
When I run :quickmark-add http://localhost:(port)/data/numbers/10.txt quickmarktest
And I run :open quickmarktest
Then data/numbers/10.txt should be loaded