@@ -13,8 +13,9 @@ mod vm;
13
13
use std:: net:: IpAddr ;
14
14
use std:: { net:: SocketAddr , path:: PathBuf } ;
15
15
16
- use anyhow:: { Context , Result } ;
16
+ use anyhow:: { Context , Ok , Result } ;
17
17
use clap:: { builder:: PossibleValuesParser , Parser } ;
18
+ use config:: ConfigFile ;
18
19
use package:: TargetInfo ;
19
20
use tests:: { config:: TEST_CONFIG , get_filtered_tests} ;
20
21
use vm:: provision;
@@ -31,28 +32,13 @@ struct Args {
31
32
32
33
#[ derive( clap:: Subcommand , Debug ) ]
33
34
enum Commands {
34
- /// Create or edit a VM config
35
- Set {
36
- /// Name of the VM config
37
- vm : String ,
38
-
39
- /// VM config
40
- #[ clap( flatten) ]
41
- config : config:: VmConfig ,
42
- } ,
43
-
44
- /// Remove specified VM config
45
- Remove {
46
- /// Name of the VM config, run `test-manager list` to see available configs
47
- vm : String ,
48
- } ,
49
-
50
- /// List available VM configurations
51
- List ,
35
+ /// Manage configuration for tests and VMs
36
+ #[ clap( subcommand) ]
37
+ Config ( ConfigArg ) ,
52
38
53
39
/// Spawn a runner instance without running any tests
54
40
RunVm {
55
- /// Name of the VM config, run `test-manager list` to see available configs
41
+ /// Name of the VM config, run `test-manager config vm list` to see configured VMs
56
42
vm : String ,
57
43
58
44
/// Run VNC server on a specified port
@@ -69,7 +55,7 @@ enum Commands {
69
55
70
56
/// Spawn a runner instance and run tests
71
57
RunTests {
72
- /// Name of the VM config, run `test-manager list` to see available configs
58
+ /// Name of the VM config, run `test-manager config vm list` to see configured VMs
73
59
#[ arg( long) ]
74
60
vm : String ,
75
61
@@ -161,6 +147,39 @@ enum Commands {
161
147
} ,
162
148
}
163
149
150
+ #[ derive( clap:: Subcommand , Debug ) ]
151
+ enum ConfigArg {
152
+ /// Print the current config
153
+ Get ,
154
+ /// Print the path to the current config file
155
+ Which ,
156
+ /// Manage VM-specific setting
157
+ #[ clap( subcommand) ]
158
+ Vm ( VmConfig ) ,
159
+ }
160
+
161
+ #[ derive( clap:: Subcommand , Debug ) ]
162
+ enum VmConfig {
163
+ /// Create or edit a VM config
164
+ Set {
165
+ /// Name of the VM config
166
+ vm : String ,
167
+
168
+ /// VM config
169
+ #[ clap( flatten) ]
170
+ config : config:: VmConfig ,
171
+ } ,
172
+
173
+ /// Remove specified VM config
174
+ Remove {
175
+ /// Name of the VM config, run `test-manager config vm list` to see configured VMs
176
+ vm : String ,
177
+ } ,
178
+
179
+ /// List available VM configurations
180
+ List ,
181
+ }
182
+
164
183
#[ cfg( target_os = "linux" ) ]
165
184
impl Args {
166
185
fn get_vnc_port ( & self ) -> Option < u16 > {
@@ -184,33 +203,50 @@ async fn main() -> Result<()> {
184
203
. await
185
204
. context ( "Failed to load config" ) ?;
186
205
match args. cmd {
187
- Commands :: Set {
188
- vm,
189
- config : vm_config,
190
- } => vm:: set_config ( & mut config, & vm, vm_config)
191
- . await
192
- . context ( "Failed to edit or create VM config" ) ,
193
- Commands :: Remove { vm } => {
194
- if config. get_vm ( & vm) . is_none ( ) {
195
- println ! ( "No such configuration" ) ;
196
- return Ok ( ( ) ) ;
206
+ Commands :: Config ( config_subcommand) => match config_subcommand {
207
+ ConfigArg :: Get => {
208
+ println ! ( "{:#?}" , * config) ;
209
+ Ok ( ( ) )
197
210
}
198
- config
199
- . edit ( |config| {
200
- config. vms . remove_entry ( & vm) ;
201
- } )
202
- . await
203
- . context ( "Failed to remove config entry" ) ?;
204
- println ! ( "Removed configuration \" {vm}\" " ) ;
205
- Ok ( ( ) )
206
- }
207
- Commands :: List => {
208
- println ! ( "Available configurations:" ) ;
209
- for ( vm, config) in config. vms . iter ( ) {
210
- println ! ( "{vm}: {config:#?}" ) ;
211
+ ConfigArg :: Which => {
212
+ println ! (
213
+ "{}" ,
214
+ ConfigFile :: get_config_path( )
215
+ . expect( "Get config path" )
216
+ . display( )
217
+ ) ;
218
+ Ok ( ( ) )
211
219
}
212
- Ok ( ( ) )
213
- }
220
+ ConfigArg :: Vm ( vm_config) => match vm_config {
221
+ VmConfig :: Set {
222
+ vm,
223
+ config : vm_config,
224
+ } => vm:: set_config ( & mut config, & vm, vm_config)
225
+ . await
226
+ . context ( "Failed to edit or create VM config" ) ,
227
+ VmConfig :: Remove { vm } => {
228
+ if config. get_vm ( & vm) . is_none ( ) {
229
+ println ! ( "No such configuration" ) ;
230
+ return Ok ( ( ) ) ;
231
+ }
232
+ config
233
+ . edit ( |config| {
234
+ config. vms . remove_entry ( & vm) ;
235
+ } )
236
+ . await
237
+ . context ( "Failed to remove config entry" ) ?;
238
+ println ! ( "Removed configuration \" {vm}\" " ) ;
239
+ Ok ( ( ) )
240
+ }
241
+ VmConfig :: List => {
242
+ println ! ( "Configured VMs:" ) ;
243
+ for vm in config. vms . keys ( ) {
244
+ println ! ( "{vm}" ) ;
245
+ }
246
+ Ok ( ( ) )
247
+ }
248
+ } ,
249
+ } ,
214
250
Commands :: RunVm {
215
251
vm,
216
252
vnc,
0 commit comments