perforce-cli 0.1.0-alpha.1

A type-safe builder library for spawning Perforce (p4) commands, with compile-time option state isolation and multi-version support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
use std::{
    ffi::OsStr,
    path::PathBuf,
    process::{Child, Command, Stdio},
};

use super::{ExclusiveOption, SubCommand, Unselected};

use crate::global::GlobalOpts;
use crate::spawn::ParameterizedSpawn;

/// File edit mode of `p4 edit`: the file form carrying `-k`, `-n`,
/// `--remote`, and `-t`.
///
/// Entered with [`Edit::keep_workspace`], [`Edit::preview`],
/// [`Edit::remote_server`], or [`Edit::filetype`].
#[derive(Debug, Clone, Default)]
pub struct FileEditMode {
    keep_workspace: bool,

    preview: bool,

    remote_server: Option<String>,

    filetype: Option<String>,
}

impl ExclusiveOption for FileEditMode {
    fn inject_args(&self, command: &mut Command) {
        if self.keep_workspace {
            command.arg("-k");
        }

        if self.preview {
            command.arg("-n");
        }

        if let Some(remote) = &self.remote_server {
            command.arg(format!("--remote={remote}"));
        }

        if let Some(filetype) = &self.filetype {
            command.arg("-t").arg(filetype);
        }
    }
}

/// Stream spec edit mode of `p4 edit` (`-So`): opens the current stream
/// spec for edit.
///
/// No list of files is allowed, and `-So` may only be combined with
/// `-c changelist`. Entered with [`Edit::edit_stream_spec`].
#[derive(Debug, Clone, Copy, Default)]
pub struct StreamSpecEditMode;

impl ExclusiveOption for StreamSpecEditMode {
    fn inject_args(&self, command: &mut Command) {
        command.arg("-So");
    }
}

#[cfg_attr(
    feature = "lt2019_1",
    doc = "`p4 [g-opts] edit [-c changelist] [-k -n] [-t type] [--remote=remote] file ...`"
)]
#[cfg_attr(
    not(feature = "lt2019_1"),
    doc = "`p4 [g-opts] edit [-c changelist] [-k -n] [-t type] [--remote=remote] file ...`\n\n\
           `p4 [g-opts] edit -So [-c changelist]`"
)]
///
/// Opens files in a client workspace for edit, or open the current stream
/// spec.
///
/// The `M` type parameter tracks the command form at compile time. The
/// default [`Unselected`] state opens plain files with no edit-mode options;
/// [`Self::keep_workspace`], [`Self::preview`], [`Self::remote_server`], and
/// [`Self::filetype`] transition to the [`FileEditMode`] state, while
/// [`Self::edit_stream_spec`] transitions to the [`StreamSpecEditMode`]
/// state.
#[derive(Debug, Clone, Default)]
pub struct Edit<M = Unselected> {
    bin: PathBuf,

    global_opts: GlobalOpts,

    change_list: Option<String>,

    mode: M,
}

impl Edit<Unselected> {
    /// Creates a new `p4 edit` command.
    ///
    /// `bin` is the path to the Perforce command-line executable.
    pub fn new(bin: impl Into<PathBuf>, global_opts: GlobalOpts) -> Self {
        Self {
            bin: bin.into(),
            global_opts,
            change_list: None,
            mode: Unselected,
        }
    }

    /// # Description
    ///
    /// -k
    ///
    /// Keep existing workspace files; mark the file as open for edit even if
    /// the file is not in the client view. Use `p4 edit -k` only in the
    /// context of reconciling work performed while disconnected from the
    /// shared versioning service.
    ///
    /// Transitions this command to the [`FileEditMode`] state.
    pub fn keep_workspace(self, v: bool) -> Edit<FileEditMode> {
        Edit {
            bin: self.bin,
            global_opts: self.global_opts,
            change_list: self.change_list,
            mode: FileEditMode {
                keep_workspace: v,
                preview: false,
                remote_server: None,
                filetype: None,
            },
        }
    }

    /// # Description
    ///
    /// -n
    ///
    /// Preview which files would be opened for edit, without actually changing
    /// any files or metadata.
    ///
    /// Transitions this command to the [`FileEditMode`] state.
    pub fn preview(self, v: bool) -> Edit<FileEditMode> {
        Edit {
            bin: self.bin,
            global_opts: self.global_opts,
            change_list: self.change_list,
            mode: FileEditMode {
                keep_workspace: false,
                preview: v,
                remote_server: None,
                filetype: None,
            },
        }
    }

    /// # Description
    ///
    /// `--remote=remote`
    ///
    /// Opens the file for edit in your personal server, and additionally — if
    /// the file is of type `+l` — takes a global exclusive lock on the file in
    /// the shared server from which you cloned the file.
    ///
    /// Transitions this command to the [`FileEditMode`] state.
    pub fn remote_server(self, v: impl Into<String>) -> Edit<FileEditMode> {
        Edit {
            bin: self.bin,
            global_opts: self.global_opts,
            change_list: self.change_list,
            mode: FileEditMode {
                keep_workspace: false,
                preview: false,
                remote_server: Some(v.into()),
                filetype: None,
            },
        }
    }

    /// # Description
    ///
    /// `-t type`
    ///
    /// Stores the new file revision as the specified type, overriding the file
    /// type of the previous revision of the same file. To forcibly re-detect a
    /// file's filetype upon editing a file, use `p4 edit -t auto`. This assigns
    /// a file type as if the file were being newly added.
    ///
    #[cfg_attr(feature = "lt2024_1", doc = "See File types for a list of file types.")]
    #[cfg_attr(
        not(feature = "lt2024_1"),
        doc = "See File types as well as the lbr.autocompress configurable."
    )]
    ///
    /// Transitions this command to the [`FileEditMode`] state.
    pub fn filetype(self, v: impl Into<String>) -> Edit<FileEditMode> {
        Edit {
            bin: self.bin,
            global_opts: self.global_opts,
            change_list: self.change_list,
            mode: FileEditMode {
                keep_workspace: false,
                preview: false,
                remote_server: None,
                filetype: Some(v.into()),
            },
        }
    }

    /// # Description
    ///
    /// `-So`
    ///
    /// Can be used with `-c changelist` to open the client's stream spec for
    /// edit. No list of files is allowed. `p4 edit -So` is an alias for
    /// `p4 stream edit` (see also `p4 help streamcmds`).
    ///
    /// Transitions this command to the [`StreamSpecEditMode`] state.
    #[cfg(not(feature = "lt2019_1"))]
    pub fn edit_stream_spec(self) -> Edit<StreamSpecEditMode> {
        Edit {
            bin: self.bin,
            global_opts: self.global_opts,
            change_list: self.change_list,
            mode: StreamSpecEditMode,
        }
    }
}

impl ParameterizedSpawn for Edit<Unselected> {
    type Input<'a> = &'a [&'a OsStr];
    type Output<'a> = Child;
    type Error = std::io::Error;

    /// Spawns `p4 edit` for the given files as a child process with piped
    /// standard output and error streams; use the returned [`Child`] handle
    /// to wait for it or interact with it.
    ///
    /// This corresponds to the file form of the command:
    /// `p4 edit [options] file ...`.
    fn spawn_with<'a>(&mut self, files: Self::Input<'a>) -> Result<Self::Output<'a>, Self::Error> {
        self.setup_command(&self.bin)
            .args(files)
            .stdout(Stdio::piped())
            .stderr(Stdio::piped())
            .spawn()
    }
}

impl ParameterizedSpawn for Edit<FileEditMode> {
    type Input<'a> = &'a [&'a OsStr];
    type Output<'a> = Child;
    type Error = std::io::Error;

    /// Spawns `p4 edit` for the given files as a child process with piped
    /// standard output and error streams; use the returned [`Child`] handle
    /// to wait for it or interact with it.
    ///
    /// This corresponds to the file form of the command:
    /// `p4 edit [options] file ...`.
    fn spawn_with<'a>(&mut self, files: Self::Input<'a>) -> Result<Self::Output<'a>, Self::Error> {
        self.setup_command(&self.bin)
            .args(files)
            .stdout(Stdio::piped())
            .stderr(Stdio::piped())
            .spawn()
    }
}

impl Edit<FileEditMode> {
    /// # Description
    ///
    /// -k
    ///
    /// Keep existing workspace files; mark the file as open for edit even if
    /// the file is not in the client view. Use `p4 edit -k` only in the
    /// context of reconciling work performed while disconnected from the
    /// shared versioning service.
    pub fn get_keep_workspace(&self) -> bool {
        self.mode.keep_workspace
    }

    /// # Description
    ///
    /// -k
    ///
    /// Keep existing workspace files; mark the file as open for edit even if
    /// the file is not in the client view. Use `p4 edit -k` only in the
    /// context of reconciling work performed while disconnected from the
    /// shared versioning service.
    pub fn set_keep_workspace(&mut self, v: bool) -> &mut Self {
        self.mode.keep_workspace = v;
        self
    }

    /// # Description
    ///
    /// -k
    ///
    /// Keep existing workspace files; mark the file as open for edit even if
    /// the file is not in the client view. Use `p4 edit -k` only in the
    /// context of reconciling work performed while disconnected from the
    /// shared versioning service.
    pub fn keep_workspace(mut self, v: bool) -> Self {
        self.mode.keep_workspace = v;
        self
    }

    /// # Description
    ///
    /// -n
    ///
    /// Preview which files would be opened for edit, without actually changing
    /// any files or metadata.
    pub fn get_preview(&self) -> bool {
        self.mode.preview
    }

    /// # Description
    ///
    /// -n
    ///
    /// Preview which files would be opened for edit, without actually changing
    /// any files or metadata.
    pub fn set_preview(&mut self, v: bool) -> &mut Self {
        self.mode.preview = v;
        self
    }

    /// # Description
    ///
    /// -n
    ///
    /// Preview which files would be opened for edit, without actually changing
    /// any files or metadata.
    pub fn preview(mut self, v: bool) -> Self {
        self.mode.preview = v;
        self
    }

    /// # Description
    ///
    /// `--remote=remote`
    ///
    /// Opens the file for edit in your personal server, and additionally — if
    /// the file is of type `+l` — takes a global exclusive lock on the file in
    /// the shared server from which you cloned the file.
    pub fn get_remote_server(&self) -> Option<&String> {
        self.mode.remote_server.as_ref()
    }

    /// # Description
    ///
    /// `--remote=remote`
    ///
    /// Opens the file for edit in your personal server, and additionally — if
    /// the file is of type `+l` — takes a global exclusive lock on the file in
    /// the shared server from which you cloned the file.
    pub fn set_remote_server(&mut self, v: impl Into<String>) -> &mut Self {
        self.mode.remote_server = Some(v.into());
        self
    }

    /// # Description
    ///
    /// `--remote=remote`
    ///
    /// Opens the file for edit in your personal server, and additionally — if
    /// the file is of type `+l` — takes a global exclusive lock on the file in
    /// the shared server from which you cloned the file.
    pub fn remote_server(mut self, v: impl Into<String>) -> Self {
        self.mode.remote_server = Some(v.into());
        self
    }

    /// # Description
    ///
    /// `-t type`
    ///
    /// Stores the new file revision as the specified type, overriding the file
    /// type of the previous revision of the same file. To forcibly re-detect a
    /// file's filetype upon editing a file, use `p4 edit -t auto`. This assigns
    /// a file type as if the file were being newly added.
    ///
    #[cfg_attr(feature = "lt2024_1", doc = "See File types for a list of file types.")]
    #[cfg_attr(
        not(feature = "lt2024_1"),
        doc = "See File types as well as the lbr.autocompress configurable."
    )]
    pub fn get_filetype(&self) -> Option<&String> {
        self.mode.filetype.as_ref()
    }

    /// # Description
    ///
    /// `-t type`
    ///
    /// Stores the new file revision as the specified type, overriding the file
    /// type of the previous revision of the same file. To forcibly re-detect a
    /// file's filetype upon editing a file, use `p4 edit -t auto`. This assigns
    /// a file type as if the file were being newly added.
    ///
    #[cfg_attr(feature = "lt2024_1", doc = "See File types for a list of file types.")]
    #[cfg_attr(
        not(feature = "lt2024_1"),
        doc = "See File types as well as the lbr.autocompress configurable."
    )]
    pub fn set_filetype(&mut self, v: impl Into<String>) -> &mut Self {
        self.mode.filetype = Some(v.into());
        self
    }

    /// # Description
    ///
    /// `-t type`
    ///
    /// Stores the new file revision as the specified type, overriding the file
    /// type of the previous revision of the same file. To forcibly re-detect a
    /// file's filetype upon editing a file, use `p4 edit -t auto`. This assigns
    /// a file type as if the file were being newly added.
    ///
    #[cfg_attr(feature = "lt2024_1", doc = "See File types for a list of file types.")]
    #[cfg_attr(
        not(feature = "lt2024_1"),
        doc = "See File types as well as the lbr.autocompress configurable."
    )]
    pub fn filetype(mut self, v: impl Into<String>) -> Self {
        self.mode.filetype = Some(v.into());
        self
    }
}

#[cfg(not(feature = "lt2019_1"))]
impl ParameterizedSpawn for Edit<StreamSpecEditMode> {
    type Input<'a> = ();
    type Output<'a> = Child;
    type Error = std::io::Error;

    /// Spawns `p4 edit -So` to open the current stream spec for edit as a
    /// child process with piped standard output and error streams; use the
    /// returned [`Child`] handle to wait for it or interact with it.
    ///
    /// This corresponds to the stream spec form of the command:
    /// `p4 edit -So [-c changelist]`, which takes no file arguments.
    fn spawn_with<'a>(&mut self, (): Self::Input<'a>) -> Result<Self::Output<'a>, Self::Error> {
        self.setup_command(&self.bin)
            .stdout(Stdio::piped())
            .stderr(Stdio::piped())
            .spawn()
    }
}

impl<M: ExclusiveOption> Edit<M> {
    /// # Description
    ///
    /// g-opts
    ///
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "See the [Global Options](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "See the [“Global Options”](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "See [“Global Options”](GlobalOpts)."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_1")),
        doc = "See [Global Options](GlobalOpts)."
    )]
    #[cfg_attr(not(feature = "lt2018_2"), doc = "See [Global options](GlobalOpts).")]
    pub fn get_global_opts(&self) -> &GlobalOpts {
        &self.global_opts
    }

    /// # Description
    ///
    /// g-opts
    ///
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "See the [Global Options](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "See the [“Global Options”](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "See [“Global Options”](GlobalOpts)."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_1")),
        doc = "See [Global Options](GlobalOpts)."
    )]
    #[cfg_attr(not(feature = "lt2018_2"), doc = "See [Global options](GlobalOpts).")]
    pub fn set_global_opts(&mut self, v: GlobalOpts) -> &mut Self {
        self.global_opts = v;
        self
    }

    /// # Description
    ///
    /// g-opts
    ///
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "See the [Global Options](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "See the [“Global Options”](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "See [“Global Options”](GlobalOpts)."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_1")),
        doc = "See [Global Options](GlobalOpts)."
    )]
    #[cfg_attr(not(feature = "lt2018_2"), doc = "See [Global options](GlobalOpts).")]
    pub fn global_opts(mut self, v: GlobalOpts) -> Self {
        self.global_opts = v;
        self
    }

    /// # Description
    ///
    /// `-c changelist`
    ///
    /// Opens the files for edit within the specified changelist. If this
    /// option is not provided, the files are linked to the default changelist.
    pub fn get_change_list(&self) -> Option<&String> {
        self.change_list.as_ref()
    }

    /// # Description
    ///
    /// `-c changelist`
    ///
    /// Opens the files for edit within the specified changelist. If this
    /// option is not provided, the files are linked to the default changelist.
    pub fn set_change_list(&mut self, v: impl Into<String>) -> &mut Self {
        self.change_list = Some(v.into());
        self
    }

    /// # Description
    ///
    /// `-c changelist`
    ///
    /// Opens the files for edit within the specified changelist. If this
    /// option is not provided, the files are linked to the default changelist.
    pub fn change_list(mut self, v: impl Into<String>) -> Self {
        self.change_list = Some(v.into());
        self
    }
}

impl<M: ExclusiveOption> SubCommand for Edit<M> {
    fn name(&self) -> &str {
        "edit"
    }

    fn inject_local_args(&self, command: &mut Command) {
        if let Some(change_list) = &self.change_list {
            command.arg("-c").arg(change_list);
        }

        self.mode.inject_args(command);
    }

    fn global_opts(&self) -> Option<&GlobalOpts> {
        Some(&self.global_opts)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::cmd::args_of;

    #[test]
    fn without_options() {
        let edit = Edit::new("p4", GlobalOpts::default());
        let mut cmd = edit.setup_command("p4");
        cmd.arg("//depot/file.txt");
        assert_eq!(args_of(&cmd), vec!["edit", "//depot/file.txt"]);
    }

    #[test]
    fn change_list() {
        let edit = Edit::new("p4", GlobalOpts::default()).change_list("14");
        let mut cmd = edit.setup_command("p4");
        cmd.arg("//depot/file.txt");
        assert_eq!(args_of(&cmd), vec!["edit", "-c", "14", "//depot/file.txt"]);
    }

    #[test]
    fn keep_workspace_and_preview() {
        let edit = Edit::new("p4", GlobalOpts::default())
            .keep_workspace(true)
            .preview(true);
        let mut cmd = edit.setup_command("p4");
        cmd.arg("//depot/file.txt");
        assert_eq!(args_of(&cmd), vec!["edit", "-k", "-n", "//depot/file.txt"]);
    }

    #[test]
    fn remote_option_uses_equals_sign() {
        let edit = Edit::new("p4", GlobalOpts::default()).remote_server("origin");
        let mut cmd = edit.setup_command("p4");
        cmd.arg("//depot/file.txt");
        assert_eq!(
            args_of(&cmd),
            vec!["edit", "--remote=origin", "//depot/file.txt"]
        );
    }

    #[test]
    fn filetype() {
        let edit = Edit::new("p4", GlobalOpts::default()).filetype("text+k");
        let mut cmd = edit.setup_command("p4");
        cmd.arg("//depot/file.txt");
        assert_eq!(
            args_of(&cmd),
            vec!["edit", "-t", "text+k", "//depot/file.txt"]
        );
    }

    #[test]
    fn file_mode_transition_preserves_change_list() {
        let edit = Edit::new("p4", GlobalOpts::default())
            .change_list("14")
            .keep_workspace(true);
        let mut cmd = edit.setup_command("p4");
        cmd.arg("//depot/file.txt");
        assert_eq!(
            args_of(&cmd),
            vec!["edit", "-c", "14", "-k", "//depot/file.txt"]
        );
    }

    #[test]
    fn file_mode_accessors() {
        let mut edit = Edit::new("p4", GlobalOpts::default()).keep_workspace(true);
        edit.set_remote_server("origin").set_preview(true);
        assert!(edit.get_keep_workspace());
        assert!(edit.get_preview());
        assert_eq!(edit.get_remote_server(), Some(&"origin".to_string()));
        assert_eq!(edit.get_filetype(), None);

        let mut cmd = edit.setup_command("p4");
        cmd.arg("//depot/file.txt");
        assert_eq!(
            args_of(&cmd),
            vec!["edit", "-k", "-n", "--remote=origin", "//depot/file.txt"]
        );
    }

    #[cfg(not(feature = "lt2019_1"))]
    #[test]
    fn stream_spec() {
        let edit = Edit::new("p4", GlobalOpts::default()).edit_stream_spec();
        let cmd = edit.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["edit", "-So"]);
    }

    #[cfg(not(feature = "lt2019_1"))]
    #[test]
    fn stream_spec_with_change_list() {
        let edit = Edit::new("p4", GlobalOpts::default())
            .change_list("14")
            .edit_stream_spec();
        let cmd = edit.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["edit", "-c", "14", "-So"]);
    }

    #[cfg(not(feature = "lt2019_1"))]
    #[test]
    fn stream_spec_change_list_after_transition() {
        let edit = Edit::new("p4", GlobalOpts::default())
            .edit_stream_spec()
            .change_list("14");
        let cmd = edit.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["edit", "-c", "14", "-So"]);
    }

    #[test]
    fn all_options_order() {
        let edit = Edit::new("p4", GlobalOpts::default())
            .change_list("14")
            .keep_workspace(true)
            .preview(true)
            .remote_server("origin")
            .filetype("binary");
        let mut cmd = edit.setup_command("p4");
        cmd.arg("//depot/file.txt");
        assert_eq!(
            args_of(&cmd),
            vec![
                "edit",
                "-c",
                "14",
                "-k",
                "-n",
                "--remote=origin",
                "-t",
                "binary",
                "//depot/file.txt"
            ]
        );
    }

    #[test]
    fn set_style_with_global_opts() {
        let mut edit = Edit::new("p4", GlobalOpts::default());
        edit.set_change_list("14");
        let mut edit = edit.filetype("binary");
        edit.set_preview(true);
        let mut cmd = edit.setup_command("p4");
        cmd.arg("//depot/file.txt");
        assert_eq!(
            args_of(&cmd),
            vec!["edit", "-c", "14", "-n", "-t", "binary", "//depot/file.txt"]
        );
    }
}