cli: merge branch 'th/cli-connection-handling-2'

https://github.com/NetworkManager/NetworkManager/pull/125
This commit is contained in:
Thomas Haller 2018-06-01 16:03:32 +02:00
commit 357717c2aa
92 changed files with 2944 additions and 1806 deletions

File diff suppressed because it is too large Load diff

View file

@ -35,8 +35,8 @@ nmc_read_connection_properties (NmCli *nmc,
NMMetaColor nmc_active_connection_state_to_color (NMActiveConnectionState state); NMMetaColor nmc_active_connection_state_to_color (NMActiveConnectionState state);
extern const NmcMetaGenericInfo *const nmc_fields_con_show[]; extern const NmcMetaGenericInfo *const metagen_con_show[];
extern const NmcMetaGenericInfo *const nmc_fields_con_active_details_general[]; extern const NmcMetaGenericInfo *const metagen_con_active_general[];
extern const NmcMetaGenericInfo *const nmc_fields_con_active_details_vpn[]; extern const NmcMetaGenericInfo *const nmc_fields_con_active_details_vpn[];
extern const NmcMetaGenericInfo *const nmc_fields_con_active_details_groups[]; extern const NmcMetaGenericInfo *const nmc_fields_con_active_details_groups[];

View file

@ -188,8 +188,8 @@ complete_fields (const char *option, const char *prefix)
complete_field (h, metagen_ip4_config); complete_field (h, metagen_ip4_config);
complete_field (h, nmc_fields_dhcp_config); complete_field (h, nmc_fields_dhcp_config);
complete_field (h, nmc_fields_ip6_config); complete_field (h, nmc_fields_ip6_config);
complete_field (h, nmc_fields_con_show); complete_field (h, metagen_con_show);
complete_field (h, nmc_fields_con_active_details_general); complete_field (h, metagen_con_active_general);
complete_field (h, nmc_fields_con_active_details_vpn); complete_field (h, nmc_fields_con_active_details_vpn);
complete_field (h, nmc_fields_con_active_details_groups); complete_field (h, nmc_fields_con_active_details_groups);
complete_field (h, nmc_fields_dev_status); complete_field (h, nmc_fields_dev_status);

View file

@ -72,6 +72,14 @@ typedef enum {
NMC_PRINT_PRETTY = 2 NMC_PRINT_PRETTY = 2
} NMCPrintOutput; } NMCPrintOutput;
static inline NMMetaAccessorGetType
nmc_print_output_to_accessor_get_type (NMCPrintOutput print_output)
{
return (print_output != NMC_PRINT_TERSE)
? NM_META_ACCESSOR_GET_TYPE_PRETTY
: NM_META_ACCESSOR_GET_TYPE_PARSABLE;
}
/* === Output fields === */ /* === Output fields === */
typedef enum { typedef enum {

View file

@ -1004,9 +1004,7 @@ _print_fill (const NmcConfig *nmc_config,
g_array_set_clear_func (cells, _print_data_cell_clear); g_array_set_clear_func (cells, _print_data_cell_clear);
g_array_set_size (cells, targets_len * header_row->len); g_array_set_size (cells, targets_len * header_row->len);
text_get_type = pretty text_get_type = nmc_print_output_to_accessor_get_type (nmc_config->print_output);
? NM_META_ACCESSOR_GET_TYPE_PRETTY
: NM_META_ACCESSOR_GET_TYPE_PARSABLE;
text_get_flags = NM_META_ACCESSOR_GET_FLAGS_ACCEPT_STRV; text_get_flags = NM_META_ACCESSOR_GET_FLAGS_ACCEPT_STRV;
if (nmc_config->show_secrets) if (nmc_config->show_secrets)
text_get_flags |= NM_META_ACCESSOR_GET_FLAGS_SHOW_SECRETS; text_get_flags |= NM_META_ACCESSOR_GET_FLAGS_SHOW_SECRETS;
@ -1165,7 +1163,7 @@ _print_do (const NmcConfig *nmc_config,
guint i_row, i_col; guint i_row, i_col;
nm_auto_free_gstring GString *str = NULL; nm_auto_free_gstring GString *str = NULL;
g_assert (col_len && row_len); g_assert (col_len);
/* Main header */ /* Main header */
if (pretty && header_name_no_l10n) { if (pretty && header_name_no_l10n) {

View file

@ -121,6 +121,36 @@ typedef enum {
NMC_GENERIC_INFO_TYPE_IP6_CONFIG_DOMAIN, NMC_GENERIC_INFO_TYPE_IP6_CONFIG_DOMAIN,
_NMC_GENERIC_INFO_TYPE_IP6_CONFIG_NUM, _NMC_GENERIC_INFO_TYPE_IP6_CONFIG_NUM,
NMC_GENERIC_INFO_TYPE_CON_SHOW_NAME = 0,
NMC_GENERIC_INFO_TYPE_CON_SHOW_UUID,
NMC_GENERIC_INFO_TYPE_CON_SHOW_TYPE,
NMC_GENERIC_INFO_TYPE_CON_SHOW_TIMESTAMP,
NMC_GENERIC_INFO_TYPE_CON_SHOW_TIMESTAMP_REAL,
NMC_GENERIC_INFO_TYPE_CON_SHOW_AUTOCONNECT,
NMC_GENERIC_INFO_TYPE_CON_SHOW_AUTOCONNECT_PRIORITY,
NMC_GENERIC_INFO_TYPE_CON_SHOW_READONLY,
NMC_GENERIC_INFO_TYPE_CON_SHOW_DBUS_PATH,
NMC_GENERIC_INFO_TYPE_CON_SHOW_ACTIVE,
NMC_GENERIC_INFO_TYPE_CON_SHOW_DEVICE,
NMC_GENERIC_INFO_TYPE_CON_SHOW_STATE,
NMC_GENERIC_INFO_TYPE_CON_SHOW_ACTIVE_PATH,
NMC_GENERIC_INFO_TYPE_CON_SHOW_SLAVE,
_NMC_GENERIC_INFO_TYPE_CON_SHOW_NUM,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_NAME = 0,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_UUID,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_DEVICES,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_STATE,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_DEFAULT,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_DEFAULT6,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_SPEC_OBJECT,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_VPN,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_DBUS_PATH,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_CON_PATH,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_ZONE,
NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_MASTER_PATH,
_NMC_GENERIC_INFO_TYPE_CON_ACTIVE_GENERAL_NUM,
} NmcGenericInfoType; } NmcGenericInfoType;
#define NMC_HANDLE_COLOR(color) \ #define NMC_HANDLE_COLOR(color) \

View file

@ -105,6 +105,44 @@ clients_tests_expected_files = \
clients/tests/test-client.check-on-disk/test_003-052.expected \ clients/tests/test-client.check-on-disk/test_003-052.expected \
clients/tests/test-client.check-on-disk/test_003-053.expected \ clients/tests/test-client.check-on-disk/test_003-053.expected \
clients/tests/test-client.check-on-disk/test_003-054.expected \ clients/tests/test-client.check-on-disk/test_003-054.expected \
clients/tests/test-client.check-on-disk/test_003-055.expected \
clients/tests/test-client.check-on-disk/test_003-056.expected \
clients/tests/test-client.check-on-disk/test_003-057.expected \
clients/tests/test-client.check-on-disk/test_003-058.expected \
clients/tests/test-client.check-on-disk/test_003-059.expected \
clients/tests/test-client.check-on-disk/test_003-060.expected \
clients/tests/test-client.check-on-disk/test_003-061.expected \
clients/tests/test-client.check-on-disk/test_003-062.expected \
clients/tests/test-client.check-on-disk/test_003-063.expected \
clients/tests/test-client.check-on-disk/test_003-064.expected \
clients/tests/test-client.check-on-disk/test_003-065.expected \
clients/tests/test-client.check-on-disk/test_003-066.expected \
clients/tests/test-client.check-on-disk/test_003-067.expected \
clients/tests/test-client.check-on-disk/test_003-068.expected \
clients/tests/test-client.check-on-disk/test_003-069.expected \
clients/tests/test-client.check-on-disk/test_003-070.expected \
clients/tests/test-client.check-on-disk/test_003-071.expected \
clients/tests/test-client.check-on-disk/test_003-072.expected \
clients/tests/test-client.check-on-disk/test_003-073.expected \
clients/tests/test-client.check-on-disk/test_003-074.expected \
clients/tests/test-client.check-on-disk/test_003-075.expected \
clients/tests/test-client.check-on-disk/test_003-076.expected \
clients/tests/test-client.check-on-disk/test_003-077.expected \
clients/tests/test-client.check-on-disk/test_003-078.expected \
clients/tests/test-client.check-on-disk/test_003-079.expected \
clients/tests/test-client.check-on-disk/test_003-080.expected \
clients/tests/test-client.check-on-disk/test_003-081.expected \
clients/tests/test-client.check-on-disk/test_003-082.expected \
clients/tests/test-client.check-on-disk/test_003-083.expected \
clients/tests/test-client.check-on-disk/test_003-084.expected \
clients/tests/test-client.check-on-disk/test_003-085.expected \
clients/tests/test-client.check-on-disk/test_003-086.expected \
clients/tests/test-client.check-on-disk/test_003-087.expected \
clients/tests/test-client.check-on-disk/test_003-088.expected \
clients/tests/test-client.check-on-disk/test_003-089.expected \
clients/tests/test-client.check-on-disk/test_003-090.expected \
clients/tests/test-client.check-on-disk/test_003-091.expected \
clients/tests/test-client.check-on-disk/test_003-092.expected \
clients/tests/test-client.check-on-disk/test_004-001.expected \ clients/tests/test-client.check-on-disk/test_004-001.expected \
clients/tests/test-client.check-on-disk/test_004-002.expected \ clients/tests/test-client.check-on-disk/test_004-002.expected \
clients/tests/test-client.check-on-disk/test_004-003.expected \ clients/tests/test-client.check-on-disk/test_004-003.expected \

View file

@ -1,87 +1,11 @@
location: clients/tests/test-client.py:737:test_003()/16 location: clients/tests/test-client.py:737:test_003()/16
cmd: $NMCLI -f ALL con s ethernet cmd: $NMCLI -f ALL con s -a
lang: C lang: C
returncode: 0 returncode: 0
stdout: 3516 bytes stdout: 542 bytes
>>> >>>
connection.id: ethernet NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 --
connection.stable-id: --
connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: no
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: no
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: auto
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,87 +1,11 @@
location: clients/tests/test-client.py:737:test_003()/17 location: clients/tests/test-client.py:737:test_003()/17
cmd: $NMCLI -f ALL con s ethernet cmd: $NMCLI -f ALL con s -a
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 3534 bytes stdout: 544 bytes
>>> >>>
connection.id: ethernet NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 --
connection.stable-id: --
connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: tak
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: nie
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: nieznane
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: nie
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: automatyczne
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,99 +1,11 @@
location: clients/tests/test-client.py:740:test_003()/18 location: clients/tests/test-client.py:740:test_003()/18
cmd: $NMCLI con s ethernet cmd: $NMCLI -f ACTIVE-PATH,DEVICE,UUID con s -act
lang: C lang: C
returncode: 0 returncode: 0
stdout: 4180 bytes stdout: 196 bytes
>>> >>>
connection.id: ethernet ACTIVE-PATH DEVICE UUID
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 eth0 UUID-ethernet-REPLACED-REPLACED-REPL
connection.stable-id: --
connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: no
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: no
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: auto
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: activated
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,99 +1,11 @@
location: clients/tests/test-client.py:740:test_003()/19 location: clients/tests/test-client.py:740:test_003()/19
cmd: $NMCLI con s ethernet cmd: $NMCLI -f ACTIVE-PATH,DEVICE,UUID con s -act
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 4201 bytes stdout: 196 bytes
>>> >>>
connection.id: ethernet ACTIVE-PATH DEVICE UUID
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 eth0 UUID-ethernet-REPLACED-REPLACED-REPL
connection.stable-id: --
connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: tak
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: nie
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: nieznane
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: nie
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: automatyczne
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: activated
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,19 +1,14 @@
location: clients/tests/test-client.py:743:test_003()/20 location: clients/tests/test-client.py:743:test_003()/20
cmd: $NMCLI -f ALL dev s eth0 cmd: $NMCLI -f UUID,NAME con s --active
lang: C lang: C
returncode: 0 returncode: 0
stdout: 1056 bytes stdout: 96 bytes
>>> >>>
DEVICE TYPE STATE DBUS-PATH CONNECTION CON-UUID CON-PATH UUID NAME
eth1 ethernet unavailable /org/freedesktop/NetworkManager/Devices/2 -- -- -- UUID-ethernet-REPLACED-REPLACED-REPL ethernet
wlan0 wifi unavailable /org/freedesktop/NetworkManager/Devices/3 -- -- --
wlan1 wifi unavailable /org/freedesktop/NetworkManager/Devices/4 -- -- --
wlan1 wifi unavailable /org/freedesktop/NetworkManager/Devices/5 -- -- --
eth0 ethernet unavailable /org/freedesktop/NetworkManager/Devices/1 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1
<<< <<<
stderr: 24 bytes stderr: 0 bytes
>>> >>>
Unknown parameter: eth0
<<< <<<

View file

@ -1,19 +1,14 @@
location: clients/tests/test-client.py:743:test_003()/21 location: clients/tests/test-client.py:743:test_003()/21
cmd: $NMCLI -f ALL dev s eth0 cmd: $NMCLI -f UUID,NAME con s --active
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 1061 bytes stdout: 96 bytes
>>> >>>
DEVICE TYPE STATE DBUS-PATH CONNECTION CON-UUID CON-PATH UUID NAME
eth1 ethernet niedostępne /org/freedesktop/NetworkManager/Devices/2 -- -- -- UUID-ethernet-REPLACED-REPLACED-REPL ethernet
wlan0 wifi niedostępne /org/freedesktop/NetworkManager/Devices/3 -- -- --
wlan1 wifi niedostępne /org/freedesktop/NetworkManager/Devices/4 -- -- --
wlan1 wifi niedostępne /org/freedesktop/NetworkManager/Devices/5 -- -- --
eth0 ethernet niedostępne /org/freedesktop/NetworkManager/Devices/1 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1
<<< <<<
stderr: 24 bytes stderr: 0 bytes
>>> >>>
Nieznany parametr: eth0
<<< <<<

View file

@ -1,39 +1,87 @@
location: clients/tests/test-client.py:746:test_003()/22 location: clients/tests/test-client.py:746:test_003()/22
cmd: $NMCLI -f ALL dev show eth0 cmd: $NMCLI -f ALL con s ethernet
lang: C lang: C
returncode: 0 returncode: 0
stdout: 1487 bytes stdout: 3516 bytes
>>> >>>
GENERAL.DEVICE: eth0 connection.id: ethernet
GENERAL.TYPE: ethernet connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.NM-TYPE: NMDeviceEthernet connection.stable-id: --
GENERAL.VENDOR: -- connection.type: 802-3-ethernet
GENERAL.PRODUCT: -- connection.interface-name: --
GENERAL.DRIVER: virtual connection.autoconnect: yes
GENERAL.DRIVER-VERSION: -- connection.autoconnect-priority: 0
GENERAL.FIRMWARE-VERSION: -- connection.autoconnect-retries: -1 (default)
GENERAL.HWADDR: 72:41:AB:90:41:5D connection.auth-retries: -1
GENERAL.MTU: 0 connection.timestamp: 0
GENERAL.STATE: 20 (unavailable) connection.read-only: no
GENERAL.REASON: 0 (No reason given) connection.permissions: --
GENERAL.UDI: /sys/devices/virtual/eth0 connection.zone: --
GENERAL.IP-IFACE: -- connection.master: --
GENERAL.IS-SOFTWARE: no connection.slave-type: --
GENERAL.NM-MANAGED: yes connection.autoconnect-slaves: -1 (default)
GENERAL.AUTOCONNECT: yes connection.secondaries: --
GENERAL.FIRMWARE-MISSING: no connection.gateway-ping-timeout: 0
GENERAL.NM-PLUGIN-MISSING: no connection.metered: unknown
GENERAL.PHYS-PORT-ID: -- connection.lldp: default
GENERAL.CONNECTION: ethernet connection.mdns: -1 (default)
GENERAL.CON-UUID: UUID-ethernet-REPLACED-REPLACED-REPL 802-3-ethernet.port: --
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 802-3-ethernet.speed: 0
GENERAL.METERED: unknown 802-3-ethernet.duplex: --
CAPABILITIES.CARRIER-DETECT: no 802-3-ethernet.auto-negotiate: no
CAPABILITIES.SPEED: 100 Mb/s 802-3-ethernet.mac-address: --
CAPABILITIES.IS-SOFTWARE: no 802-3-ethernet.cloned-mac-address: --
CAPABILITIES.SRIOV: no 802-3-ethernet.generate-mac-address-mask:--
WIRED-PROPERTIES.CARRIER: off 802-3-ethernet.mac-address-blacklist: --
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: -- 802-3-ethernet.mtu: auto
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,39 +1,87 @@
location: clients/tests/test-client.py:746:test_003()/23 location: clients/tests/test-client.py:746:test_003()/23
cmd: $NMCLI -f ALL dev show eth0 cmd: $NMCLI -f ALL con s ethernet
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 1510 bytes stdout: 3534 bytes
>>> >>>
GENERAL.DEVICE: eth0 connection.id: ethernet
GENERAL.TYPE: ethernet connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.NM-TYPE: NMDeviceEthernet connection.stable-id: --
GENERAL.VENDOR: -- connection.type: 802-3-ethernet
GENERAL.PRODUCT: -- connection.interface-name: --
GENERAL.DRIVER: virtual connection.autoconnect: tak
GENERAL.DRIVER-VERSION: -- connection.autoconnect-priority: 0
GENERAL.FIRMWARE-VERSION: -- connection.autoconnect-retries: -1 (default)
GENERAL.HWADDR: 72:41:AB:90:41:5D connection.auth-retries: -1
GENERAL.MTU: 0 connection.timestamp: 0
GENERAL.STATE: 20 (niedostępne) connection.read-only: nie
GENERAL.REASON: 0 (Nie podano przyczyny) connection.permissions: --
GENERAL.UDI: /sys/devices/virtual/eth0 connection.zone: --
GENERAL.IP-IFACE: -- connection.master: --
GENERAL.IS-SOFTWARE: nie connection.slave-type: --
GENERAL.NM-MANAGED: tak connection.autoconnect-slaves: -1 (default)
GENERAL.AUTOCONNECT: tak connection.secondaries: --
GENERAL.FIRMWARE-MISSING: nie connection.gateway-ping-timeout: 0
GENERAL.NM-PLUGIN-MISSING: nie connection.metered: nieznane
GENERAL.PHYS-PORT-ID: -- connection.lldp: default
GENERAL.CONNECTION: ethernet connection.mdns: -1 (default)
GENERAL.CON-UUID: UUID-ethernet-REPLACED-REPLACED-REPL 802-3-ethernet.port: --
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1 802-3-ethernet.speed: 0
GENERAL.METERED: nieznane 802-3-ethernet.duplex: --
CAPABILITIES.CARRIER-DETECT: nie 802-3-ethernet.auto-negotiate: nie
CAPABILITIES.SPEED: 100Mb/s 802-3-ethernet.mac-address: --
CAPABILITIES.IS-SOFTWARE: nie 802-3-ethernet.cloned-mac-address: --
CAPABILITIES.SRIOV: nie 802-3-ethernet.generate-mac-address-mask:--
WIRED-PROPERTIES.CARRIER: wyłączone 802-3-ethernet.mac-address-blacklist: --
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: -- 802-3-ethernet.mtu: automatyczne
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,10 +1,10 @@
location: clients/tests/test-client.py:728:test_003()/24 location: clients/tests/test-client.py:749:test_003()/24
cmd: $NMCLI con up ethernet ifname eth1 cmd: $NMCLI -f GENERAL.STATE con s ethernet
lang: C lang: C
returncode: 0 returncode: 0
stdout: 106 bytes stdout: 50 bytes
>>> >>>
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/2) GENERAL.STATE: activated
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,13 +1,10 @@
location: clients/tests/test-client.py:731:test_003()/25 location: clients/tests/test-client.py:749:test_003()/25
cmd: $NMCLI con cmd: $NMCLI -f GENERAL.STATE con s ethernet
lang: C lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 264 bytes stdout: 51 bytes
>>> >>>
NAME UUID TYPE DEVICE GENERAL.STATE: aktywowano
ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth0
con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet --
con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,13 +1,99 @@
location: clients/tests/test-client.py:731:test_003()/26 location: clients/tests/test-client.py:752:test_003()/26
cmd: $NMCLI con cmd: $NMCLI con s ethernet
lang: pl_PL.UTF-8 lang: C
returncode: 0 returncode: 0
stdout: 264 bytes stdout: 4180 bytes
>>> >>>
NAME UUID TYPE DEVICE connection.id: ethernet
ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth0 connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet -- connection.stable-id: --
con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet -- connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: no
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: no
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: auto
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: activated
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,13 +1,99 @@
location: clients/tests/test-client.py:734:test_003()/27 location: clients/tests/test-client.py:752:test_003()/27
cmd: $NMCLI -f ALL con cmd: $NMCLI con s ethernet
lang: C lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 1084 bytes stdout: 4202 bytes
>>> >>>
NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE connection.id: ethernet
ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 -- connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- connection.stable-id: --
con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- -- connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: tak
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: nie
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: nieznane
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: nie
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: automatyczne
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: aktywowano
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,16 +1,19 @@
location: clients/tests/test-client.py:734:test_003()/28 location: clients/tests/test-client.py:755:test_003()/28
cmd: $NMCLI -f ALL con cmd: $NMCLI -f ALL dev s eth0
lang: pl_PL.UTF-8 lang: C
returncode: 0 returncode: 0
stdout: 1088 bytes stdout: 1056 bytes
>>> >>>
NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE DEVICE TYPE STATE DBUS-PATH CONNECTION CON-UUID CON-PATH
ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 -- eth1 ethernet unavailable /org/freedesktop/NetworkManager/Devices/2 -- -- --
con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- wlan0 wifi unavailable /org/freedesktop/NetworkManager/Devices/3 -- -- --
con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- -- wlan1 wifi unavailable /org/freedesktop/NetworkManager/Devices/4 -- -- --
wlan1 wifi unavailable /org/freedesktop/NetworkManager/Devices/5 -- -- --
eth0 ethernet unavailable /org/freedesktop/NetworkManager/Devices/1 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1
<<< <<<
stderr: 0 bytes stderr: 24 bytes
>>> >>>
Unknown parameter: eth0
<<< <<<

View file

@ -1,90 +1,19 @@
location: clients/tests/test-client.py:737:test_003()/29 location: clients/tests/test-client.py:755:test_003()/29
cmd: $NMCLI -f ALL con s ethernet cmd: $NMCLI -f ALL dev s eth0
lang: C lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 3516 bytes stdout: 1061 bytes
>>> >>>
connection.id: ethernet DEVICE TYPE STATE DBUS-PATH CONNECTION CON-UUID CON-PATH
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL eth1 ethernet niedostępne /org/freedesktop/NetworkManager/Devices/2 -- -- --
connection.stable-id: -- wlan0 wifi niedostępne /org/freedesktop/NetworkManager/Devices/3 -- -- --
connection.type: 802-3-ethernet wlan1 wifi niedostępne /org/freedesktop/NetworkManager/Devices/4 -- -- --
connection.interface-name: -- wlan1 wifi niedostępne /org/freedesktop/NetworkManager/Devices/5 -- -- --
connection.autoconnect: yes eth0 ethernet niedostępne /org/freedesktop/NetworkManager/Devices/1 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: no
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: no
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: auto
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
<<< <<<
stderr: 0 bytes stderr: 24 bytes
>>> >>>
Nieznany parametr: eth0
<<< <<<

View file

@ -1,87 +1,39 @@
location: clients/tests/test-client.py:737:test_003()/30 location: clients/tests/test-client.py:758:test_003()/30
cmd: $NMCLI -f ALL con s ethernet cmd: $NMCLI -f ALL dev show eth0
lang: pl_PL.UTF-8 lang: C
returncode: 0 returncode: 0
stdout: 3534 bytes stdout: 1487 bytes
>>> >>>
connection.id: ethernet GENERAL.DEVICE: eth0
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL GENERAL.TYPE: ethernet
connection.stable-id: -- GENERAL.NM-TYPE: NMDeviceEthernet
connection.type: 802-3-ethernet GENERAL.VENDOR: --
connection.interface-name: -- GENERAL.PRODUCT: --
connection.autoconnect: tak GENERAL.DRIVER: virtual
connection.autoconnect-priority: 0 GENERAL.DRIVER-VERSION: --
connection.autoconnect-retries: -1 (default) GENERAL.FIRMWARE-VERSION: --
connection.auth-retries: -1 GENERAL.HWADDR: 72:41:AB:90:41:5D
connection.timestamp: 0 GENERAL.MTU: 0
connection.read-only: nie GENERAL.STATE: 20 (unavailable)
connection.permissions: -- GENERAL.REASON: 0 (No reason given)
connection.zone: -- GENERAL.UDI: /sys/devices/virtual/eth0
connection.master: -- GENERAL.IP-IFACE: --
connection.slave-type: -- GENERAL.IS-SOFTWARE: no
connection.autoconnect-slaves: -1 (default) GENERAL.NM-MANAGED: yes
connection.secondaries: -- GENERAL.AUTOCONNECT: yes
connection.gateway-ping-timeout: 0 GENERAL.FIRMWARE-MISSING: no
connection.metered: nieznane GENERAL.NM-PLUGIN-MISSING: no
connection.lldp: default GENERAL.PHYS-PORT-ID: --
connection.mdns: -1 (default) GENERAL.CONNECTION: ethernet
802-3-ethernet.port: -- GENERAL.CON-UUID: UUID-ethernet-REPLACED-REPLACED-REPL
802-3-ethernet.speed: 0 GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
802-3-ethernet.duplex: -- GENERAL.METERED: unknown
802-3-ethernet.auto-negotiate: nie CAPABILITIES.CARRIER-DETECT: no
802-3-ethernet.mac-address: -- CAPABILITIES.SPEED: 100 Mb/s
802-3-ethernet.cloned-mac-address: -- CAPABILITIES.IS-SOFTWARE: no
802-3-ethernet.generate-mac-address-mask:-- CAPABILITIES.SRIOV: no
802-3-ethernet.mac-address-blacklist: -- WIRED-PROPERTIES.CARRIER: off
802-3-ethernet.mtu: automatyczne CONNECTIONS.AVAILABLE-CONNECTION-PATHS: --
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,112 +1,39 @@
location: clients/tests/test-client.py:740:test_003()/31 location: clients/tests/test-client.py:758:test_003()/31
cmd: $NMCLI con s ethernet cmd: $NMCLI -f ALL dev show eth0
lang: C lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 4845 bytes stdout: 1510 bytes
>>> >>>
connection.id: ethernet GENERAL.DEVICE: eth0
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL GENERAL.TYPE: ethernet
connection.stable-id: -- GENERAL.NM-TYPE: NMDeviceEthernet
connection.type: 802-3-ethernet GENERAL.VENDOR: --
connection.interface-name: -- GENERAL.PRODUCT: --
connection.autoconnect: yes GENERAL.DRIVER: virtual
connection.autoconnect-priority: 0 GENERAL.DRIVER-VERSION: --
connection.autoconnect-retries: -1 (default) GENERAL.FIRMWARE-VERSION: --
connection.auth-retries: -1 GENERAL.HWADDR: 72:41:AB:90:41:5D
connection.timestamp: 0 GENERAL.MTU: 0
connection.read-only: no GENERAL.STATE: 20 (niedostępne)
connection.permissions: -- GENERAL.REASON: 0 (Nie podano przyczyny)
connection.zone: -- GENERAL.UDI: /sys/devices/virtual/eth0
connection.master: -- GENERAL.IP-IFACE: --
connection.slave-type: -- GENERAL.IS-SOFTWARE: nie
connection.autoconnect-slaves: -1 (default) GENERAL.NM-MANAGED: tak
connection.secondaries: -- GENERAL.AUTOCONNECT: tak
connection.gateway-ping-timeout: 0 GENERAL.FIRMWARE-MISSING: nie
connection.metered: unknown GENERAL.NM-PLUGIN-MISSING: nie
connection.lldp: default GENERAL.PHYS-PORT-ID: --
connection.mdns: -1 (default) GENERAL.CONNECTION: ethernet
802-3-ethernet.port: -- GENERAL.CON-UUID: UUID-ethernet-REPLACED-REPLACED-REPL
802-3-ethernet.speed: 0 GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
802-3-ethernet.duplex: -- GENERAL.METERED: nieznane
802-3-ethernet.auto-negotiate: no CAPABILITIES.CARRIER-DETECT: nie
802-3-ethernet.mac-address: -- CAPABILITIES.SPEED: 100Mb/s
802-3-ethernet.cloned-mac-address: -- CAPABILITIES.IS-SOFTWARE: nie
802-3-ethernet.generate-mac-address-mask:-- CAPABILITIES.SRIOV: nie
802-3-ethernet.mac-address-blacklist: -- WIRED-PROPERTIES.CARRIER: wyłączone
802-3-ethernet.mtu: auto CONNECTIONS.AVAILABLE-CONNECTION-PATHS: --
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: activated
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth1
GENERAL.STATE: activated
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,112 +1,10 @@
location: clients/tests/test-client.py:740:test_003()/32 location: clients/tests/test-client.py:728:test_003()/32
cmd: $NMCLI con s ethernet cmd: $NMCLI con up ethernet ifname eth1
lang: pl_PL.UTF-8 lang: C
returncode: 0 returncode: 0
stdout: 4869 bytes stdout: 106 bytes
>>> >>>
connection.id: ethernet Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/2)
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
connection.stable-id: --
connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: tak
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: nie
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: nieznane
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: nie
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: automatyczne
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: activated
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth1
GENERAL.STATE: activated
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,19 +1,17 @@
location: clients/tests/test-client.py:743:test_003()/33 location: clients/tests/test-client.py:731:test_003()/33
cmd: $NMCLI -f ALL dev s eth0 cmd: $NMCLI con
lang: C lang: C
returncode: 0 returncode: 0
stdout: 1056 bytes stdout: 330 bytes
>>> >>>
DEVICE TYPE STATE DBUS-PATH CONNECTION CON-UUID CON-PATH NAME UUID TYPE DEVICE
wlan0 wifi unavailable /org/freedesktop/NetworkManager/Devices/3 -- -- -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth0
wlan1 wifi unavailable /org/freedesktop/NetworkManager/Devices/4 -- -- -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth1
wlan1 wifi unavailable /org/freedesktop/NetworkManager/Devices/5 -- -- -- con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet --
eth0 ethernet unavailable /org/freedesktop/NetworkManager/Devices/1 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet --
eth1 ethernet unavailable /org/freedesktop/NetworkManager/Devices/2 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/2
<<< <<<
stderr: 24 bytes stderr: 0 bytes
>>> >>>
Unknown parameter: eth0
<<< <<<

View file

@ -1,19 +1,17 @@
location: clients/tests/test-client.py:743:test_003()/34 location: clients/tests/test-client.py:731:test_003()/34
cmd: $NMCLI -f ALL dev s eth0 cmd: $NMCLI con
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 1061 bytes stdout: 330 bytes
>>> >>>
DEVICE TYPE STATE DBUS-PATH CONNECTION CON-UUID CON-PATH NAME UUID TYPE DEVICE
wlan0 wifi niedostępne /org/freedesktop/NetworkManager/Devices/3 -- -- -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth0
wlan1 wifi niedostępne /org/freedesktop/NetworkManager/Devices/4 -- -- -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet eth1
wlan1 wifi niedostępne /org/freedesktop/NetworkManager/Devices/5 -- -- -- con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet --
eth0 ethernet niedostępne /org/freedesktop/NetworkManager/Devices/1 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet --
eth1 ethernet niedostępne /org/freedesktop/NetworkManager/Devices/2 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/2
<<< <<<
stderr: 24 bytes stderr: 0 bytes
>>> >>>
Nieznany parametr: eth0
<<< <<<

View file

@ -1,39 +1,14 @@
location: clients/tests/test-client.py:746:test_003()/35 location: clients/tests/test-client.py:734:test_003()/35
cmd: $NMCLI -f ALL dev show eth0 cmd: $NMCLI -f ALL con
lang: C lang: C
returncode: 0 returncode: 0
stdout: 1487 bytes stdout: 1355 bytes
>>> >>>
GENERAL.DEVICE: eth0 NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE
GENERAL.TYPE: ethernet ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 --
GENERAL.NM-TYPE: NMDeviceEthernet ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 --
GENERAL.VENDOR: -- con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- --
GENERAL.PRODUCT: -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- --
GENERAL.DRIVER: virtual
GENERAL.DRIVER-VERSION: --
GENERAL.FIRMWARE-VERSION: --
GENERAL.HWADDR: 72:41:AB:90:41:5D
GENERAL.MTU: 0
GENERAL.STATE: 20 (unavailable)
GENERAL.REASON: 0 (No reason given)
GENERAL.UDI: /sys/devices/virtual/eth0
GENERAL.IP-IFACE: --
GENERAL.IS-SOFTWARE: no
GENERAL.NM-MANAGED: yes
GENERAL.AUTOCONNECT: yes
GENERAL.FIRMWARE-MISSING: no
GENERAL.NM-PLUGIN-MISSING: no
GENERAL.PHYS-PORT-ID: --
GENERAL.CONNECTION: ethernet
GENERAL.CON-UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.METERED: unknown
CAPABILITIES.CARRIER-DETECT: no
CAPABILITIES.SPEED: 100 Mb/s
CAPABILITIES.IS-SOFTWARE: no
CAPABILITIES.SRIOV: no
WIRED-PROPERTIES.CARRIER: off
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,39 +1,14 @@
location: clients/tests/test-client.py:746:test_003()/36 location: clients/tests/test-client.py:734:test_003()/36
cmd: $NMCLI -f ALL dev show eth0 cmd: $NMCLI -f ALL con
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 1510 bytes stdout: 1360 bytes
>>> >>>
GENERAL.DEVICE: eth0 NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE
GENERAL.TYPE: ethernet ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 --
GENERAL.NM-TYPE: NMDeviceEthernet ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 --
GENERAL.VENDOR: -- con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- --
GENERAL.PRODUCT: -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- --
GENERAL.DRIVER: virtual
GENERAL.DRIVER-VERSION: --
GENERAL.FIRMWARE-VERSION: --
GENERAL.HWADDR: 72:41:AB:90:41:5D
GENERAL.MTU: 0
GENERAL.STATE: 20 (niedostępne)
GENERAL.REASON: 0 (Nie podano przyczyny)
GENERAL.UDI: /sys/devices/virtual/eth0
GENERAL.IP-IFACE: --
GENERAL.IS-SOFTWARE: nie
GENERAL.NM-MANAGED: tak
GENERAL.AUTOCONNECT: tak
GENERAL.FIRMWARE-MISSING: nie
GENERAL.NM-PLUGIN-MISSING: nie
GENERAL.PHYS-PORT-ID: --
GENERAL.CONNECTION: ethernet
GENERAL.CON-UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.METERED: nieznane
CAPABILITIES.CARRIER-DETECT: nie
CAPABILITIES.SPEED: 100Mb/s
CAPABILITIES.IS-SOFTWARE: nie
CAPABILITIES.SRIOV: nie
WIRED-PROPERTIES.CARRIER: wyłączone
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,13 +1,12 @@
location: clients/tests/test-client.py:755:test_003()/37 location: clients/tests/test-client.py:737:test_003()/37
cmd: $NMCLI -f ALL con cmd: $NMCLI -f ALL con s -a
lang: C lang: C
returncode: 0 returncode: 0
stdout: 1096 bytes stdout: 813 bytes
>>> >>>
NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE
ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/1 --
con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 --
con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,13 +1,12 @@
location: clients/tests/test-client.py:755:test_003()/38 location: clients/tests/test-client.py:737:test_003()/38
cmd: $NMCLI -f ALL con cmd: $NMCLI -f ALL con s -a
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 1104 bytes stdout: 816 bytes
>>> >>>
NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE
ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/1 --
con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 --
con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,13 +1,12 @@
location: clients/tests/test-client.py:758:test_003()/39 location: clients/tests/test-client.py:740:test_003()/39
cmd: $NMCLI -f UUID,TYPE con cmd: $NMCLI -f ACTIVE-PATH,DEVICE,UUID con s -act
lang: C lang: C
returncode: 0 returncode: 0
stdout: 192 bytes stdout: 294 bytes
>>> >>>
UUID TYPE ACTIVE-PATH DEVICE UUID
UUID-ethernet-REPLACED-REPLACED-REPL ethernet /org/freedesktop/NetworkManager/ActiveConnection/1 eth0 UUID-ethernet-REPLACED-REPLACED-REPL
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet /org/freedesktop/NetworkManager/ActiveConnection/2 eth1 UUID-ethernet-REPLACED-REPLACED-REPL
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,13 +1,12 @@
location: clients/tests/test-client.py:758:test_003()/40 location: clients/tests/test-client.py:740:test_003()/40
cmd: $NMCLI -f UUID,TYPE con cmd: $NMCLI -f ACTIVE-PATH,DEVICE,UUID con s -act
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 192 bytes stdout: 294 bytes
>>> >>>
UUID TYPE ACTIVE-PATH DEVICE UUID
UUID-ethernet-REPLACED-REPLACED-REPL ethernet /org/freedesktop/NetworkManager/ActiveConnection/1 eth0 UUID-ethernet-REPLACED-REPLACED-REPL
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet /org/freedesktop/NetworkManager/ActiveConnection/2 eth1 UUID-ethernet-REPLACED-REPLACED-REPL
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,15 +1,11 @@
location: clients/tests/test-client.py:761:test_003()/41 location: clients/tests/test-client.py:743:test_003()/41
cmd: $NMCLI -f UUID,TYPE --mode multiline con cmd: $NMCLI -f UUID,NAME con s --active
lang: C lang: C
returncode: 0 returncode: 0
stdout: 378 bytes stdout: 96 bytes
>>> >>>
UUID: UUID-ethernet-REPLACED-REPLACED-REPL UUID NAME
TYPE: ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,15 +1,11 @@
location: clients/tests/test-client.py:761:test_003()/42 location: clients/tests/test-client.py:743:test_003()/42
cmd: $NMCLI -f UUID,TYPE --mode multiline con cmd: $NMCLI -f UUID,NAME con s --active
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 378 bytes stdout: 96 bytes
>>> >>>
UUID: UUID-ethernet-REPLACED-REPLACED-REPL UUID NAME
TYPE: ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,15 +1,87 @@
location: clients/tests/test-client.py:764:test_003()/43 location: clients/tests/test-client.py:746:test_003()/43
cmd: $NMCLI -f UUID,TYPE --mode multiline --terse con cmd: $NMCLI -f ALL con s ethernet
lang: C lang: C
returncode: 0 returncode: 0
stdout: 186 bytes stdout: 3516 bytes
>>> >>>
UUID:UUID-ethernet-REPLACED-REPLACED-REPL connection.id: ethernet
TYPE:802-3-ethernet connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d connection.stable-id: --
TYPE:802-3-ethernet connection.type: 802-3-ethernet
UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA connection.interface-name: --
TYPE:802-3-ethernet connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: no
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: no
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: auto
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,15 +1,87 @@
location: clients/tests/test-client.py:764:test_003()/44 location: clients/tests/test-client.py:746:test_003()/44
cmd: $NMCLI -f UUID,TYPE --mode multiline --terse con cmd: $NMCLI -f ALL con s ethernet
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 186 bytes stdout: 3534 bytes
>>> >>>
UUID:UUID-ethernet-REPLACED-REPLACED-REPL connection.id: ethernet
TYPE:802-3-ethernet connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d connection.stable-id: --
TYPE:802-3-ethernet connection.type: 802-3-ethernet
UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA connection.interface-name: --
TYPE:802-3-ethernet connection.autoconnect: tak
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: nie
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: nieznane
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: nie
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: automatyczne
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,21 +1,12 @@
location: clients/tests/test-client.py:767:test_003()/45 location: clients/tests/test-client.py:749:test_003()/45
cmd: $NMCLI -f UUID,TYPE --mode multiline --pretty con cmd: $NMCLI -f GENERAL.STATE con s ethernet
lang: C lang: C
returncode: 0 returncode: 0
stdout: 835 bytes stdout: 101 bytes
>>> >>>
=============================================================================== GENERAL.STATE: activated
NetworkManager connection profiles
=============================================================================== GENERAL.STATE: activated
UUID: UUID-ethernet-REPLACED-REPLACED-REPL
TYPE: ethernet
-------------------------------------------------------------------------------
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
-------------------------------------------------------------------------------
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
-------------------------------------------------------------------------------
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,21 +1,12 @@
location: clients/tests/test-client.py:767:test_003()/46 location: clients/tests/test-client.py:749:test_003()/46
cmd: $NMCLI -f UUID,TYPE --mode multiline --pretty con cmd: $NMCLI -f GENERAL.STATE con s ethernet
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 841 bytes stdout: 103 bytes
>>> >>>
=============================================================================== GENERAL.STATE: aktywowano
Profile połączeń usługi NetworkManager
=============================================================================== GENERAL.STATE: aktywowano
UUID: UUID-ethernet-REPLACED-REPLACED-REPL
TYPE: ethernet
-------------------------------------------------------------------------------
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
-------------------------------------------------------------------------------
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
-------------------------------------------------------------------------------
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,13 +1,112 @@
location: clients/tests/test-client.py:770:test_003()/47 location: clients/tests/test-client.py:752:test_003()/47
cmd: $NMCLI -f UUID,TYPE --mode tabular con cmd: $NMCLI con s ethernet
lang: C lang: C
returncode: 0 returncode: 0
stdout: 192 bytes stdout: 4845 bytes
>>> >>>
UUID TYPE connection.id: ethernet
UUID-ethernet-REPLACED-REPLACED-REPL ethernet connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet connection.stable-id: --
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: no
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: no
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: auto
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: activated
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth1
GENERAL.STATE: activated
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,13 +1,112 @@
location: clients/tests/test-client.py:770:test_003()/48 location: clients/tests/test-client.py:752:test_003()/48
cmd: $NMCLI -f UUID,TYPE --mode tabular con cmd: $NMCLI con s ethernet
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 192 bytes stdout: 4871 bytes
>>> >>>
UUID TYPE connection.id: ethernet
UUID-ethernet-REPLACED-REPLACED-REPL ethernet connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet connection.stable-id: --
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: tak
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: nie
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: nieznane
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: nie
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: automatyczne
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: aktywowano
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth1
GENERAL.STATE: aktywowano
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,15 +1,19 @@
location: clients/tests/test-client.py:773:test_003()/49 location: clients/tests/test-client.py:755:test_003()/49
cmd: $NMCLI -f UUID,TYPE --mode tabular --terse con cmd: $NMCLI -f ALL dev s eth0
lang: C lang: C
returncode: 0 returncode: 0
stdout: 156 bytes stdout: 1056 bytes
>>> >>>
UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet DEVICE TYPE STATE DBUS-PATH CONNECTION CON-UUID CON-PATH
5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet wlan0 wifi unavailable /org/freedesktop/NetworkManager/Devices/3 -- -- --
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet wlan1 wifi unavailable /org/freedesktop/NetworkManager/Devices/4 -- -- --
wlan1 wifi unavailable /org/freedesktop/NetworkManager/Devices/5 -- -- --
eth0 ethernet unavailable /org/freedesktop/NetworkManager/Devices/1 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1
eth1 ethernet unavailable /org/freedesktop/NetworkManager/Devices/2 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/2
<<< <<<
stderr: 0 bytes stderr: 24 bytes
>>> >>>
Unknown parameter: eth0
<<< <<<

View file

@ -1,15 +1,19 @@
location: clients/tests/test-client.py:773:test_003()/50 location: clients/tests/test-client.py:755:test_003()/50
cmd: $NMCLI -f UUID,TYPE --mode tabular --terse con cmd: $NMCLI -f ALL dev s eth0
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 156 bytes stdout: 1061 bytes
>>> >>>
UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet DEVICE TYPE STATE DBUS-PATH CONNECTION CON-UUID CON-PATH
5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet wlan0 wifi niedostępne /org/freedesktop/NetworkManager/Devices/3 -- -- --
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet wlan1 wifi niedostępne /org/freedesktop/NetworkManager/Devices/4 -- -- --
wlan1 wifi niedostępne /org/freedesktop/NetworkManager/Devices/5 -- -- --
eth0 ethernet niedostępne /org/freedesktop/NetworkManager/Devices/1 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1
eth1 ethernet niedostępne /org/freedesktop/NetworkManager/Devices/2 ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/2
<<< <<<
stderr: 0 bytes stderr: 24 bytes
>>> >>>
Nieznany parametr: eth0
<<< <<<

View file

@ -1,17 +1,39 @@
location: clients/tests/test-client.py:776:test_003()/51 location: clients/tests/test-client.py:758:test_003()/51
cmd: $NMCLI -f UUID,TYPE --mode tabular --pretty con cmd: $NMCLI -f ALL dev show eth0
lang: C lang: C
returncode: 0 returncode: 0
stdout: 394 bytes stdout: 1487 bytes
>>> >>>
====================================== GENERAL.DEVICE: eth0
NetworkManager connection profiles GENERAL.TYPE: ethernet
====================================== GENERAL.NM-TYPE: NMDeviceEthernet
UUID TYPE GENERAL.VENDOR: --
-------------------------------------------------------------------------------------- GENERAL.PRODUCT: --
UUID-ethernet-REPLACED-REPLACED-REPL ethernet GENERAL.DRIVER: virtual
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet GENERAL.DRIVER-VERSION: --
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet GENERAL.FIRMWARE-VERSION: --
GENERAL.HWADDR: 72:41:AB:90:41:5D
GENERAL.MTU: 0
GENERAL.STATE: 20 (unavailable)
GENERAL.REASON: 0 (No reason given)
GENERAL.UDI: /sys/devices/virtual/eth0
GENERAL.IP-IFACE: --
GENERAL.IS-SOFTWARE: no
GENERAL.NM-MANAGED: yes
GENERAL.AUTOCONNECT: yes
GENERAL.FIRMWARE-MISSING: no
GENERAL.NM-PLUGIN-MISSING: no
GENERAL.PHYS-PORT-ID: --
GENERAL.CONNECTION: ethernet
GENERAL.CON-UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.METERED: unknown
CAPABILITIES.CARRIER-DETECT: no
CAPABILITIES.SPEED: 100 Mb/s
CAPABILITIES.IS-SOFTWARE: no
CAPABILITIES.SRIOV: no
WIRED-PROPERTIES.CARRIER: off
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,17 +1,39 @@
location: clients/tests/test-client.py:776:test_003()/52 location: clients/tests/test-client.py:758:test_003()/52
cmd: $NMCLI -f UUID,TYPE --mode tabular --pretty con cmd: $NMCLI -f ALL dev show eth0
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 414 bytes stdout: 1510 bytes
>>> >>>
========================================== GENERAL.DEVICE: eth0
Profile połączeń usługi NetworkManager GENERAL.TYPE: ethernet
========================================== GENERAL.NM-TYPE: NMDeviceEthernet
UUID TYPE GENERAL.VENDOR: --
------------------------------------------------------------------------------------------ GENERAL.PRODUCT: --
UUID-ethernet-REPLACED-REPLACED-REPL ethernet GENERAL.DRIVER: virtual
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet GENERAL.DRIVER-VERSION: --
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet GENERAL.FIRMWARE-VERSION: --
GENERAL.HWADDR: 72:41:AB:90:41:5D
GENERAL.MTU: 0
GENERAL.STATE: 20 (niedostępne)
GENERAL.REASON: 0 (Nie podano przyczyny)
GENERAL.UDI: /sys/devices/virtual/eth0
GENERAL.IP-IFACE: --
GENERAL.IS-SOFTWARE: nie
GENERAL.NM-MANAGED: tak
GENERAL.AUTOCONNECT: tak
GENERAL.FIRMWARE-MISSING: nie
GENERAL.NM-PLUGIN-MISSING: nie
GENERAL.PHYS-PORT-ID: --
GENERAL.CONNECTION: ethernet
GENERAL.CON-UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.METERED: nieznane
CAPABILITIES.CARRIER-DETECT: nie
CAPABILITIES.SPEED: 100Mb/s
CAPABILITIES.IS-SOFTWARE: nie
CAPABILITIES.SRIOV: nie
WIRED-PROPERTIES.CARRIER: wyłączone
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,112 +1,14 @@
location: clients/tests/test-client.py:779:test_003()/53 location: clients/tests/test-client.py:772:test_003()/53
cmd: $NMCLI con s ethernet cmd: $NMCLI -f ALL con
lang: C lang: C
returncode: 0 returncode: 0
stdout: 4848 bytes stdout: 1370 bytes
>>> >>>
connection.id: ethernet NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 --
connection.stable-id: -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 --
connection.type: 802-3-ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- --
connection.interface-name: -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- --
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: no
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: no
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: auto
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: deactivating
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth1
GENERAL.STATE: activated
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -1,112 +1,14 @@
location: clients/tests/test-client.py:779:test_003()/54 location: clients/tests/test-client.py:772:test_003()/54
cmd: $NMCLI con s ethernet cmd: $NMCLI -f ALL con
lang: pl_PL.UTF-8 lang: pl_PL.UTF-8
returncode: 0 returncode: 0
stdout: 4872 bytes stdout: 1380 bytes
>>> >>>
connection.id: ethernet NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 --
connection.stable-id: -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 --
connection.type: 802-3-ethernet con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- --
connection.interface-name: -- con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- --
connection.autoconnect: tak
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: nie
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: nieznane
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: nie
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: automatyczne
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: deactivating
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth1
GENERAL.STATE: activated
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<< <<<
stderr: 0 bytes stderr: 0 bytes

View file

@ -0,0 +1,16 @@
location: clients/tests/test-client.py:775:test_003()/55
cmd: $NMCLI -f UUID,TYPE con
lang: C
returncode: 0
stdout: 192 bytes
>>>
UUID TYPE
UUID-ethernet-REPLACED-REPLACED-REPL ethernet
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,16 @@
location: clients/tests/test-client.py:775:test_003()/56
cmd: $NMCLI -f UUID,TYPE con
lang: pl_PL.UTF-8
returncode: 0
stdout: 192 bytes
>>>
UUID TYPE
UUID-ethernet-REPLACED-REPLACED-REPL ethernet
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,18 @@
location: clients/tests/test-client.py:778:test_003()/57
cmd: $NMCLI -f UUID,TYPE --mode multiline con
lang: C
returncode: 0
stdout: 378 bytes
>>>
UUID: UUID-ethernet-REPLACED-REPLACED-REPL
TYPE: ethernet
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,18 @@
location: clients/tests/test-client.py:778:test_003()/58
cmd: $NMCLI -f UUID,TYPE --mode multiline con
lang: pl_PL.UTF-8
returncode: 0
stdout: 378 bytes
>>>
UUID: UUID-ethernet-REPLACED-REPLACED-REPL
TYPE: ethernet
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,18 @@
location: clients/tests/test-client.py:781:test_003()/59
cmd: $NMCLI -f UUID,TYPE --mode multiline --terse con
lang: C
returncode: 0
stdout: 186 bytes
>>>
UUID:UUID-ethernet-REPLACED-REPLACED-REPL
TYPE:802-3-ethernet
UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE:802-3-ethernet
UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE:802-3-ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,18 @@
location: clients/tests/test-client.py:781:test_003()/60
cmd: $NMCLI -f UUID,TYPE --mode multiline --terse con
lang: pl_PL.UTF-8
returncode: 0
stdout: 186 bytes
>>>
UUID:UUID-ethernet-REPLACED-REPLACED-REPL
TYPE:802-3-ethernet
UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE:802-3-ethernet
UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE:802-3-ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,24 @@
location: clients/tests/test-client.py:784:test_003()/61
cmd: $NMCLI -f UUID,TYPE --mode multiline --pretty con
lang: C
returncode: 0
stdout: 835 bytes
>>>
===============================================================================
NetworkManager connection profiles
===============================================================================
UUID: UUID-ethernet-REPLACED-REPLACED-REPL
TYPE: ethernet
-------------------------------------------------------------------------------
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
-------------------------------------------------------------------------------
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
-------------------------------------------------------------------------------
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,24 @@
location: clients/tests/test-client.py:784:test_003()/62
cmd: $NMCLI -f UUID,TYPE --mode multiline --pretty con
lang: pl_PL.UTF-8
returncode: 0
stdout: 841 bytes
>>>
===============================================================================
Profile połączeń usługi NetworkManager
===============================================================================
UUID: UUID-ethernet-REPLACED-REPLACED-REPL
TYPE: ethernet
-------------------------------------------------------------------------------
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
-------------------------------------------------------------------------------
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
-------------------------------------------------------------------------------
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,16 @@
location: clients/tests/test-client.py:787:test_003()/63
cmd: $NMCLI -f UUID,TYPE --mode tabular con
lang: C
returncode: 0
stdout: 192 bytes
>>>
UUID TYPE
UUID-ethernet-REPLACED-REPLACED-REPL ethernet
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,16 @@
location: clients/tests/test-client.py:787:test_003()/64
cmd: $NMCLI -f UUID,TYPE --mode tabular con
lang: pl_PL.UTF-8
returncode: 0
stdout: 192 bytes
>>>
UUID TYPE
UUID-ethernet-REPLACED-REPLACED-REPL ethernet
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,15 @@
location: clients/tests/test-client.py:790:test_003()/65
cmd: $NMCLI -f UUID,TYPE --mode tabular --terse con
lang: C
returncode: 0
stdout: 156 bytes
>>>
UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet
5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,15 @@
location: clients/tests/test-client.py:790:test_003()/66
cmd: $NMCLI -f UUID,TYPE --mode tabular --terse con
lang: pl_PL.UTF-8
returncode: 0
stdout: 156 bytes
>>>
UUID-ethernet-REPLACED-REPLACED-REPL:802-3-ethernet
5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,20 @@
location: clients/tests/test-client.py:793:test_003()/67
cmd: $NMCLI -f UUID,TYPE --mode tabular --pretty con
lang: C
returncode: 0
stdout: 394 bytes
>>>
======================================
NetworkManager connection profiles
======================================
UUID TYPE
--------------------------------------------------------------------------------------
UUID-ethernet-REPLACED-REPLACED-REPL ethernet
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,20 @@
location: clients/tests/test-client.py:793:test_003()/68
cmd: $NMCLI -f UUID,TYPE --mode tabular --pretty con
lang: pl_PL.UTF-8
returncode: 0
stdout: 414 bytes
>>>
==========================================
Profile połączeń usługi NetworkManager
==========================================
UUID TYPE
------------------------------------------------------------------------------------------
UUID-ethernet-REPLACED-REPLACED-REPL ethernet
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,115 @@
location: clients/tests/test-client.py:796:test_003()/69
cmd: $NMCLI con s ethernet
lang: C
returncode: 0
stdout: 4848 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
connection.stable-id: --
connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: no
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: no
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: auto
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth1
GENERAL.STATE: activated
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: deactivating
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,115 @@
location: clients/tests/test-client.py:796:test_003()/70
cmd: $NMCLI con s ethernet
lang: pl_PL.UTF-8
returncode: 0
stdout: 4875 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
connection.stable-id: --
connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: tak
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: nie
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: nieznane
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: nie
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: automatyczne
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth1
GENERAL.STATE: aktywowano
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/2
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: dezaktywowanie
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,102 @@
location: clients/tests/test-client.py:799:test_003()/71
cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
stdout: 4183 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
connection.stable-id: --
connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: no
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: no
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: auto
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: deactivating
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,102 @@
location: clients/tests/test-client.py:799:test_003()/72
cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
stdout: 4206 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
connection.stable-id: --
connection.type: 802-3-ethernet
connection.interface-name: --
connection.autoconnect: tak
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.auth-retries: -1
connection.timestamp: 0
connection.read-only: nie
connection.permissions: --
connection.zone: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.metered: nieznane
connection.lldp: default
connection.mdns: -1 (default)
802-3-ethernet.port: --
802-3-ethernet.speed: 0
802-3-ethernet.duplex: --
802-3-ethernet.auto-negotiate: nie
802-3-ethernet.mac-address: --
802-3-ethernet.cloned-mac-address: --
802-3-ethernet.generate-mac-address-mask:--
802-3-ethernet.mac-address-blacklist: --
802-3-ethernet.mtu: automatyczne
802-3-ethernet.s390-subchannels: --
802-3-ethernet.s390-nettype: --
802-3-ethernet.s390-options: --
802-3-ethernet.wake-on-lan: default
802-3-ethernet.wake-on-lan-password: --
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: ""
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.ignore-auto-routes: nie
ipv4.ignore-auto-dns: nie
ipv4.dhcp-client-id: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: ""
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.ignore-auto-routes: nie
ipv6.ignore-auto-dns: nie
ipv6.never-default: nie
ipv6.may-fail: tak
ipv6.ip6-privacy: -1 (unknown)
ipv6.addr-gen-mode: stable-privacy
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
proxy.pac-script: --
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: dezaktywowanie
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,17 @@
location: clients/tests/test-client.py:772:test_003()/73
cmd: $NMCLI -f ALL con
lang: C
returncode: 0
stdout: 1370 bytes
>>>
NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE
ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth1 activated /org/freedesktop/NetworkManager/ActiveConnection/2 --
ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 yes eth0 deactivating /org/freedesktop/NetworkManager/ActiveConnection/1 --
con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/1 no -- -- -- --
con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 never yes 0 no /org/freedesktop/NetworkManager/Settings/Connection/2 no -- -- -- --
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,17 @@
location: clients/tests/test-client.py:772:test_003()/74
cmd: $NMCLI -f ALL con
lang: pl_PL.UTF-8
returncode: 0
stdout: 1380 bytes
>>>
NAME UUID TYPE TIMESTAMP TIMESTAMP-REAL AUTOCONNECT AUTOCONNECT-PRIORITY READONLY DBUS-PATH ACTIVE DEVICE STATE ACTIVE-PATH SLAVE
ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth1 aktywowano /org/freedesktop/NetworkManager/ActiveConnection/2 --
ethernet UUID-ethernet-REPLACED-REPLACED-REPL ethernet -- -- -- -- -- /org/freedesktop/NetworkManager/Settings/Connection/3 tak eth0 dezaktywowanie /org/freedesktop/NetworkManager/ActiveConnection/1 --
con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/1 nie -- -- -- --
con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet 0 nigdy tak 0 nie /org/freedesktop/NetworkManager/Settings/Connection/2 nie -- -- -- --
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,15 @@
location: clients/tests/test-client.py:775:test_003()/75
cmd: $NMCLI -f UUID,TYPE con
lang: C
returncode: 0
stdout: 144 bytes
>>>
UUID TYPE
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,15 @@
location: clients/tests/test-client.py:775:test_003()/76
cmd: $NMCLI -f UUID,TYPE con
lang: pl_PL.UTF-8
returncode: 0
stdout: 144 bytes
>>>
UUID TYPE
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,16 @@
location: clients/tests/test-client.py:778:test_003()/77
cmd: $NMCLI -f UUID,TYPE --mode multiline con
lang: C
returncode: 0
stdout: 252 bytes
>>>
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,16 @@
location: clients/tests/test-client.py:778:test_003()/78
cmd: $NMCLI -f UUID,TYPE --mode multiline con
lang: pl_PL.UTF-8
returncode: 0
stdout: 252 bytes
>>>
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,16 @@
location: clients/tests/test-client.py:781:test_003()/79
cmd: $NMCLI -f UUID,TYPE --mode multiline --terse con
lang: C
returncode: 0
stdout: 124 bytes
>>>
UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE:802-3-ethernet
UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE:802-3-ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,16 @@
location: clients/tests/test-client.py:781:test_003()/80
cmd: $NMCLI -f UUID,TYPE --mode multiline --terse con
lang: pl_PL.UTF-8
returncode: 0
stdout: 124 bytes
>>>
UUID:5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE:802-3-ethernet
UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE:802-3-ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,21 @@
location: clients/tests/test-client.py:784:test_003()/81
cmd: $NMCLI -f UUID,TYPE --mode multiline --pretty con
lang: C
returncode: 0
stdout: 629 bytes
>>>
===============================================================================
NetworkManager connection profiles
===============================================================================
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
-------------------------------------------------------------------------------
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
-------------------------------------------------------------------------------
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,21 @@
location: clients/tests/test-client.py:784:test_003()/82
cmd: $NMCLI -f UUID,TYPE --mode multiline --pretty con
lang: pl_PL.UTF-8
returncode: 0
stdout: 635 bytes
>>>
===============================================================================
Profile połączeń usługi NetworkManager
===============================================================================
UUID: 5fcfd6d7-1e63-3332-8826-a7eda103792d
TYPE: ethernet
-------------------------------------------------------------------------------
UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
-------------------------------------------------------------------------------
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,15 @@
location: clients/tests/test-client.py:787:test_003()/83
cmd: $NMCLI -f UUID,TYPE --mode tabular con
lang: C
returncode: 0
stdout: 144 bytes
>>>
UUID TYPE
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,15 @@
location: clients/tests/test-client.py:787:test_003()/84
cmd: $NMCLI -f UUID,TYPE --mode tabular con
lang: pl_PL.UTF-8
returncode: 0
stdout: 144 bytes
>>>
UUID TYPE
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,14 @@
location: clients/tests/test-client.py:790:test_003()/85
cmd: $NMCLI -f UUID,TYPE --mode tabular --terse con
lang: C
returncode: 0
stdout: 104 bytes
>>>
5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,14 @@
location: clients/tests/test-client.py:790:test_003()/86
cmd: $NMCLI -f UUID,TYPE --mode tabular --terse con
lang: pl_PL.UTF-8
returncode: 0
stdout: 104 bytes
>>>
5fcfd6d7-1e63-3332-8826-a7eda103792d:802-3-ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,19 @@
location: clients/tests/test-client.py:793:test_003()/87
cmd: $NMCLI -f UUID,TYPE --mode tabular --pretty con
lang: C
returncode: 0
stdout: 346 bytes
>>>
======================================
NetworkManager connection profiles
======================================
UUID TYPE
--------------------------------------------------------------------------------------
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,19 @@
location: clients/tests/test-client.py:793:test_003()/88
cmd: $NMCLI -f UUID,TYPE --mode tabular --pretty con
lang: pl_PL.UTF-8
returncode: 0
stdout: 366 bytes
>>>
==========================================
Profile połączeń usługi NetworkManager
==========================================
UUID TYPE
------------------------------------------------------------------------------------------
5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,13 @@
location: clients/tests/test-client.py:796:test_003()/89
cmd: $NMCLI con s ethernet
lang: C
returncode: 10
stdout: 0 bytes
>>>
<<<
stderr: 46 bytes
>>>
Error: ethernet - no such connection profile.
<<<

View file

@ -0,0 +1,13 @@
location: clients/tests/test-client.py:796:test_003()/90
cmd: $NMCLI con s ethernet
lang: pl_PL.UTF-8
returncode: 10
stdout: 0 bytes
>>>
<<<
stderr: 58 bytes
>>>
Błąd: ethernet — nie ma takiego profilu połączenia.
<<<

View file

@ -0,0 +1,24 @@
location: clients/tests/test-client.py:799:test_003()/91
cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
stdout: 667 bytes
>>>
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: deactivating
GENERAL.DEFAULT: no
GENERAL.DEFAULT6: no
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: no
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -0,0 +1,24 @@
location: clients/tests/test-client.py:799:test_003()/92
cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
stdout: 672 bytes
>>>
GENERAL.NAME: ethernet
GENERAL.UUID: UUID-ethernet-REPLACED-REPLACED-REPL
GENERAL.DEVICES: eth0
GENERAL.STATE: dezaktywowanie
GENERAL.DEFAULT: nie
GENERAL.DEFAULT6: nie
GENERAL.SPEC-OBJECT: --
GENERAL.VPN: nie
GENERAL.DBUS-PATH: /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/Settings/Connection/3
GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
stderr: 0 bytes
>>>
<<<

View file

@ -1,4 +1,4 @@
location: clients/tests/test-client.py:789:test_004()/1 location: clients/tests/test-client.py:809:test_004()/1
cmd: $NMCLI c add type wifi ifname '*' ssid foobar con-name con-xx1 cmd: $NMCLI c add type wifi ifname '*' ssid foobar con-name con-xx1
lang: C lang: C
returncode: 0 returncode: 0

View file

@ -1,4 +1,4 @@
location: clients/tests/test-client.py:791:test_004()/2 location: clients/tests/test-client.py:811:test_004()/2
cmd: $NMCLI connection mod con-xx1 ip.gateway '' cmd: $NMCLI connection mod con-xx1 ip.gateway ''
lang: C lang: C
returncode: 2 returncode: 2

View file

@ -1,4 +1,4 @@
location: clients/tests/test-client.py:792:test_004()/3 location: clients/tests/test-client.py:812:test_004()/3
cmd: $NMCLI connection mod con-xx1 ipv4.gateway 172.16.0.1 cmd: $NMCLI connection mod con-xx1 ipv4.gateway 172.16.0.1
lang: C lang: C
returncode: 0 returncode: 0

View file

@ -1,4 +1,4 @@
location: clients/tests/test-client.py:793:test_004()/4 location: clients/tests/test-client.py:813:test_004()/4
cmd: $NMCLI connection mod con-xx1 ipv6.gateway ::99 cmd: $NMCLI connection mod con-xx1 ipv6.gateway ::99
lang: C lang: C
returncode: 0 returncode: 0

View file

@ -1,4 +1,4 @@
location: clients/tests/test-client.py:794:test_004()/5 location: clients/tests/test-client.py:814:test_004()/5
cmd: $NMCLI connection mod con-xx1 802.abc '' cmd: $NMCLI connection mod con-xx1 802.abc ''
lang: C lang: C
returncode: 2 returncode: 2

View file

@ -1,4 +1,4 @@
location: clients/tests/test-client.py:795:test_004()/6 location: clients/tests/test-client.py:815:test_004()/6
cmd: $NMCLI connection mod con-xx1 802-11-wireless.band a cmd: $NMCLI connection mod con-xx1 802-11-wireless.band a
lang: C lang: C
returncode: 0 returncode: 0

View file

@ -733,9 +733,21 @@ class TestNmcli(NmTestBase):
self.call_nmcli_l(['-f', 'ALL', 'con'], self.call_nmcli_l(['-f', 'ALL', 'con'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'ALL', 'con', 's', '-a'],
replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'ACTIVE-PATH,DEVICE,UUID', 'con', 's', '-act'],
replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'UUID,NAME', 'con', 's', '--active'],
replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'ALL', 'con', 's', 'ethernet'], self.call_nmcli_l(['-f', 'ALL', 'con', 's', 'ethernet'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'GENERAL.STATE', 'con', 's', 'ethernet'],
replace_stdout = replace_stdout)
self.call_nmcli_l(['con', 's', 'ethernet'], self.call_nmcli_l(['con', 's', 'ethernet'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
@ -751,32 +763,40 @@ class TestNmcli(NmTestBase):
'State', 'State',
dbus.UInt32(NM.ActiveConnectionState.DEACTIVATING)) dbus.UInt32(NM.ActiveConnectionState.DEACTIVATING))
self.call_nmcli_l(['-f', 'ALL', 'con'], for i in [0, 1]:
replace_stdout = replace_stdout) if i == 1:
self.async_wait()
self.srv.op_ConnectionSetVisible(False, con_id = 'ethernet')
self.call_nmcli_l(['-f', 'UUID,TYPE', 'con'], self.call_nmcli_l(['-f', 'ALL', 'con'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'multiline', 'con'], self.call_nmcli_l(['-f', 'UUID,TYPE', 'con'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'multiline', '--terse', 'con'], self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'multiline', 'con'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'multiline', '--pretty', 'con'], self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'multiline', '--terse', 'con'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'tabular', 'con'], self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'multiline', '--pretty', 'con'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'tabular', '--terse', 'con'], self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'tabular', 'con'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'tabular', '--pretty', 'con'], self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'tabular', '--terse', 'con'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
self.call_nmcli_l(['con', 's', 'ethernet'], self.call_nmcli_l(['-f', 'UUID,TYPE', '--mode', 'tabular', '--pretty', 'con'],
replace_stdout = replace_stdout) replace_stdout = replace_stdout)
self.call_nmcli_l(['con', 's', 'ethernet'],
replace_stdout = replace_stdout)
self.call_nmcli_l(['c', 's', '/org/freedesktop/NetworkManager/ActiveConnection/1'],
replace_stdout = replace_stdout)
def test_004(self): def test_004(self):
self.init_001() self.init_001()

View file

@ -968,8 +968,8 @@ class NetworkManager(ExportedObj):
gl.mainloop.quit() gl.mainloop.quit()
@dbus.service.method(IFACE_TEST, in_signature='a{ss}', out_signature='a(sss)') @dbus.service.method(IFACE_TEST, in_signature='a{ss}', out_signature='a(sss)')
def FindConnections(self, args): def FindConnections(self, selector_args):
return [(c.path, c.get_uuid(), c.get_id()) for c in gl.settings.find_connections(**args)] return [(c.path, c.get_uuid(), c.get_id()) for c in gl.settings.find_connections(**selector_args)]
@dbus.service.method(IFACE_TEST, in_signature='a(oa(sa(sv)))', out_signature='') @dbus.service.method(IFACE_TEST, in_signature='a(oa(sa(sv)))', out_signature='')
def SetProperties(self, all_args): def SetProperties(self, all_args):
@ -1055,6 +1055,12 @@ class NetworkManager(ExportedObj):
def UpdateConnection(self, path, connection, verify_connection): def UpdateConnection(self, path, connection, verify_connection):
return gl.settings.update_connection(connection, path, verify_connection) return gl.settings.update_connection(connection, path, verify_connection)
@dbus.service.method(dbus_interface=IFACE_TEST, in_signature='ba{ss}', out_signature='')
def ConnectionSetVisible(self, vis, selector_args):
cons = list(gl.settings.find_connections(**selector_args))
assert(len(cons) == 1)
cons[0].SetVisible(vis)
@dbus.service.method(dbus_interface=IFACE_TEST, in_signature='', out_signature='') @dbus.service.method(dbus_interface=IFACE_TEST, in_signature='', out_signature='')
def Restart(self): def Restart(self):
gl.bus.release_name("org.freedesktop.NetworkManager") gl.bus.release_name("org.freedesktop.NetworkManager")