@@ -79,18 +79,20 @@ Feature: Test configuration settings
79
79
Examples :
80
80
| property | value1 | value2 |
81
81
| skip -check -bundle -extracted | true | false |
82
- | skip -check -crc -network | true | false |
83
- | skip -check -crc -network -active | true | false |
84
82
| skip -check -kvm -enabled | true | false |
85
83
| skip -check -libvirt -driver | true | false |
86
84
| skip -check -libvirt -installed | true | false |
87
85
| skip -check -libvirt -running | true | false |
88
86
| skip -check -libvirt -version | true | false |
89
- | skip -check -network -manager -installed | true | false |
90
- | skip -check -network -manager -running | true | false |
91
87
| skip -check -root -user | true | false |
92
88
| skip -check -user -in -libvirt -group | true | false |
93
89
| skip -check -virt -enabled | true | false |
90
+
91
+ # the following properties not suit for user notwork
92
+ #| skip-check-crc-network | true | false |
93
+ #| skip-check-crc-network-active | true | false |
94
+ #| skip-check-network-manager-installed | true | false |
95
+ #| skip-check-network-manager-running | true | false |
94
96
95
97
@windows
96
98
Examples :
@@ -118,20 +120,17 @@ Feature: Test configuration settings
118
120
When removing file "crc.json" from CRC home folder succeeds
119
121
And executing single crc setup command succeeds
120
122
And executing "sudo virsh net-list --name" succeeds
121
- Then stdout contains "crc"
122
- When executing "sudo virsh net-undefine crc && sudo virsh net-destroy crc" succeeds
123
- And executing "sudo virsh net-list --name" succeeds
124
- Then stdout should not contain "crc"
123
+ Then stdout contains "default"
125
124
126
- @linux
125
+ @linux @system_network
127
126
Scenario : Running `crc setup` with checks enabled restores destroyed network
128
127
When setting config property "skip-check-crc-network" to value "false" succeeds
129
128
And setting config property "skip-check-crc-network-active" to value "false" succeeds
130
129
Then executing single crc setup command succeeds
131
130
And executing "sudo virsh net-list --name" succeeds
132
131
And stdout contains "crc"
133
132
134
- @linux
133
+ @linux @system_network
135
134
Scenario : Running `crc start` without `crc setup` and with checks disabled fails when network destroyed
136
135
# Destroy network again
137
136
When executing "sudo virsh net-undefine crc && sudo virsh net-destroy crc" succeeds
0 commit comments