qutebrowser/tests/end2end/features/set.feature

139 lines
5.6 KiB
Gherkin
Raw Normal View History

# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et:
2015-11-10 21:07:49 +01:00
Feature: Setting settings.
Background:
2017-06-16 16:22:41 +02:00
Given I set messages.timeout to 100
2015-11-10 21:07:49 +01:00
Scenario: Using :set
2017-06-16 16:22:41 +02:00
When I run :set colors.statusbar.bg magenta
Then colors.statusbar.bg should be magenta
2015-11-10 21:07:49 +01:00
Scenario: Without value
2017-06-16 16:22:41 +02:00
When I run :set colors.statusbar.bg
2015-11-26 17:50:39 +01:00
Then the error "set: The following arguments are required: value" should be shown
2015-11-10 21:07:49 +01:00
Scenario: Invalid option
2017-06-16 16:22:41 +02:00
When I run :set blub foo
2015-11-26 17:50:39 +01:00
Then the error "set: No option 'blub' in section 'general'" should be shown
2015-11-10 21:07:49 +01:00
Scenario: Toggling an option
2017-06-16 16:22:41 +02:00
When I run :set auto_save.config false
And I run :set auto_save.config!
Then auto_save_config should be true
2015-11-10 21:07:49 +01:00
Scenario: Toggling a non-bool option
When I run :set colors statusbar.bg!
2015-11-26 17:50:39 +01:00
Then the error "set: Attempted inversion of non-boolean value." should be shown
2015-11-10 21:07:49 +01:00
Scenario: Cycling an option
When I run :set colors statusbar.bg magenta
And I run :set colors statusbar.bg green magenta blue yellow
2017-06-16 16:22:41 +02:00
Then colors.statusbar.bg should be blue
Scenario: Cycling an option through the end of the list
When I run :set colors statusbar.bg yellow
And I run :set colors statusbar.bg green magenta blue yellow
2017-06-16 16:22:41 +02:00
Then colors.statusbar.bg should be green
Scenario: Cycling an option that's not on the list
When I run :set colors statusbar.bg red
And I run :set colors statusbar.bg green magenta blue yellow
2017-06-16 16:22:41 +02:00
Then colors.statusbar.bg should be green
Scenario: Cycling through a single option
When I run :set colors statusbar.bg red
And I run :set colors statusbar.bg red
2017-06-16 16:22:41 +02:00
Then colors.statusbar.bg should be red
2015-11-10 21:07:49 +01:00
Scenario: Getting an option
When I run :set colors statusbar.bg magenta
And I run :set colors statusbar.bg?
2015-11-26 17:50:39 +01:00
Then the message "colors statusbar.bg = magenta" should be shown
2015-11-10 21:07:49 +01:00
Scenario: Using -p
When I run :set -p colors statusbar.bg red
2015-11-26 17:50:39 +01:00
Then the message "colors statusbar.bg = red" should be shown
2015-11-10 21:07:49 +01:00
2015-11-10 21:27:42 +01:00
Scenario: Using ! and -p
2017-06-16 16:22:41 +02:00
When I run :set general auto_save_config false
And I run :set -p auto_save_config!
Then the message "auto_save_config = true" should be shown
2015-11-10 21:27:42 +01:00
2015-11-10 22:09:36 +01:00
Scenario: Setting an invalid value
2017-06-16 16:22:41 +02:00
When I run :set general auto_save_config blah
2015-11-26 17:50:39 +01:00
Then the error "set: Invalid value 'blah' - must be a boolean!" should be shown
2015-11-10 22:09:36 +01:00
2015-11-10 21:07:49 +01:00
Scenario: Setting a temporary option
# We don't actually check if the option is temporary as this isn't easy
# to check.
When I run :set -t colors statusbar.bg green
2017-06-16 16:22:41 +02:00
Then colors.statusbar.bg should be green
2015-11-10 21:07:49 +01:00
# qute://settings isn't actually implemented on QtWebEngine, but this works
# (and displays a page saying it's not available)
Scenario: Opening qute://settings
2015-11-10 21:07:49 +01:00
When I run :set
And I wait until qute://settings is loaded
Then the following tabs should be open:
- qute://settings (active)
2015-11-10 21:27:42 +01:00
2016-08-26 13:45:21 +02:00
Scenario: Focusing input fields in qute://settings and entering valid value
2017-06-16 16:22:41 +02:00
When I set ignore_case to false
2016-08-29 07:08:57 +02:00
And I open qute://settings
2016-08-26 13:45:21 +02:00
# scroll to the right - the table does not fit in the default screen
And I run :scroll-perc -x 100
And I hint with args "inputs" and follow a
2016-08-29 07:08:57 +02:00
And I wait for "Entering mode KeyMode.insert *" in the log
2016-08-26 13:45:21 +02:00
And I press the key "<Ctrl+Backspace>"
2016-08-29 07:08:57 +02:00
And I press the keys "true"
2016-08-26 13:45:21 +02:00
And I press the key "<Escape>"
# an explicit Tab to unfocus the input field seems to stabilize the tests
And I press the key "<Tab>"
2017-06-16 16:22:41 +02:00
Then ignore-case should be true
2016-08-26 13:45:21 +02:00
Scenario: Focusing input fields in qute://settings and entering invalid value
When I open qute://settings
# scroll to the right - the table does not fit in the default screen
And I run :scroll-perc -x 100
And I hint with args "inputs" and follow a
2016-08-29 07:08:57 +02:00
And I wait for "Entering mode KeyMode.insert *" in the log
2016-08-26 13:45:21 +02:00
And I press the key "<Ctrl+Backspace>"
2016-08-29 07:08:57 +02:00
And I press the keys "foo"
2016-08-26 13:45:21 +02:00
And I press the key "<Escape>"
# an explicit Tab to unfocus the input field seems to stabilize the tests
And I press the key "<Tab>"
Then "Invalid value 'foo' *" should be logged
2016-08-26 13:45:21 +02:00
2015-11-10 21:27:42 +01:00
Scenario: Empty option with ? (issue 1109)
When I run :set general ?
2015-11-26 17:50:39 +01:00
Then the error "set: The following arguments are required: value" should be shown
2015-11-10 21:27:42 +01:00
Scenario: Invalid section and empty option with ? (issue 1109)
When I run :set blah ?
2015-11-26 17:50:39 +01:00
Then the error "set: The following arguments are required: value" should be shown
2015-11-10 21:27:42 +01:00
Scenario: Invalid option with ? (issue 1109)
When I run :set general foo?
2015-11-26 17:50:39 +01:00
Then the error "set: No option 'foo' in section 'general'" should be shown
2015-11-10 21:27:42 +01:00
Scenario: Invalid section/option with ? (issue 1109)
When I run :set blah foo ?
2015-11-26 17:50:39 +01:00
Then the error "set: Section 'blah' does not exist!" should be shown
2015-11-10 21:27:42 +01:00
Scenario: Empty option with !
When I run :set general !
2015-11-26 17:50:39 +01:00
Then the error "set: The following arguments are required: value" should be shown
2015-11-10 21:27:42 +01:00
Scenario: Invalid section and empty option with !
When I run :set blah !
2015-11-26 17:50:39 +01:00
Then the error "set: The following arguments are required: value" should be shown
2015-11-10 21:27:42 +01:00
Scenario: Invalid option with !
When I run :set general foo!
2015-11-26 17:50:39 +01:00
Then the error "set: No option 'foo' in section 'general'" should be shown
2015-11-10 21:27:42 +01:00
Scenario: Invalid section/option with !
When I run :set blah foo !
2015-11-26 17:50:39 +01:00
Then the error "set: Section 'blah' does not exist!" should be shown