xfconf/xfconf_info: add return value version (#9226)

* xfconf/xfconf_info: add return value version

* add changelog frag

* adapt test to helper improvements

* rollback copyright update

* replace tab with spaces in test yamls
This commit is contained in:
Alexei Znamensky
2024-12-25 00:00:24 +13:00
committed by GitHub
parent d539b00d4c
commit b429e8a2cf
6 changed files with 121 additions and 21 deletions

View File

@@ -6,6 +6,13 @@
---
anchors:
environ: &env-def {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: true}
out: &version-output |
xfconf-query 4.18.1
Copyright (c) 2008-2023
The Xfce development team. All rights reserved.
Please report bugs to <https://gitlab.xfce.org/xfce/xfconf>.
test_cases:
- id: test_simple_property_get
input:
@@ -14,8 +21,14 @@ test_cases:
output:
value: '100'
is_array: false
version: "4.18.1"
mocks:
run_command:
- command: [/testbin/xfconf-query, --version]
environ: *env-def
rc: 0
out: *version-output
err: ""
- command: [/testbin/xfconf-query, --channel, xfwm4, --property, /general/inactive_opacity]
environ: *env-def
rc: 0
@@ -25,9 +38,15 @@ test_cases:
input:
channel: xfwm4
property: /general/i_dont_exist
output: {}
output:
version: "4.18.1"
mocks:
run_command:
- command: [/testbin/xfconf-query, --version]
environ: *env-def
rc: 0
out: *version-output
err: ""
- command: [/testbin/xfconf-query, --channel, xfwm4, --property, /general/i_dont_exist]
environ: *env-def
rc: 1
@@ -39,8 +58,6 @@ test_cases:
output:
failed: true
msg: "missing parameter(s) required by 'property': channel"
mocks:
run_command: []
- id: test_property_get_array
input:
channel: xfwm4
@@ -48,8 +65,14 @@ test_cases:
output:
is_array: true
value_array: [Main, Work, Tmp]
version: "4.18.1"
mocks:
run_command:
- command: [/testbin/xfconf-query, --version]
environ: *env-def
rc: 0
out: *version-output
err: ""
- command: [/testbin/xfconf-query, --channel, xfwm4, --property, /general/workspace_names]
environ: *env-def
rc: 0
@@ -59,8 +82,14 @@ test_cases:
input: {}
output:
channels: [a, b, c]
version: "4.18.1"
mocks:
run_command:
- command: [/testbin/xfconf-query, --version]
environ: *env-def
rc: 0
out: *version-output
err: ""
- command: [/testbin/xfconf-query, --list]
environ: *env-def
rc: 0
@@ -77,8 +106,14 @@ test_cases:
- /general/wrap_windows
- /general/wrap_workspaces
- /general/zoom_desktop
version: "4.18.1"
mocks:
run_command:
- command: [/testbin/xfconf-query, --version]
environ: *env-def
rc: 0
out: *version-output
err: ""
- command: [/testbin/xfconf-query, --list, --channel, xfwm4]
environ: *env-def
rc: 0