betex 0.35.0

Betfair / Prediction Market Exchange
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
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
use super::reject::RejectReason;
use crate::book::common::BatchProcessState;
use crate::types::*;
use serde::{Deserialize, Serialize};
use std::fmt;

#[derive(
    Debug,
    Clone,
    Copy,
    Serialize,
    Deserialize,
    PartialEq,
    Eq,
    Hash,
    strum::Display,
    strum::EnumString,
    rkyv::Archive,
    rkyv::Serialize,
    rkyv::Deserialize,
)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
pub enum Side {
    /// Yes/long side.
    ///
    /// Mapping:
    /// - Exchange odds: Back
    /// - Binary: Buy
    Yes,
    /// No/short side.
    ///
    /// Mapping:
    /// - Exchange odds: Lay
    /// - Binary: Sell
    No,
}

#[allow(non_upper_case_globals)]
impl Side {
    /// Alias for `Yes` (exchange BACK).
    pub const Back: Self = Self::Yes;
    /// Alias for `No` (exchange LAY).
    pub const Lay: Self = Self::No;
    /// Alias for `Yes` (binary BUY).
    pub const Buy: Self = Self::Yes;
    /// Alias for `No` (binary SELL).
    pub const Sell: Self = Self::No;
}

pub type BinarySide = Side;
pub type BinaryTimeInForce = TimeInForce;

#[derive(
    Debug,
    Clone,
    Copy,
    Serialize,
    Deserialize,
    PartialEq,
    Eq,
    Hash,
    strum::Display,
    strum::EnumString,
    rkyv::Archive,
    rkyv::Serialize,
    rkyv::Deserialize,
)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
pub enum Persistence {
    Lapse,
    Persist,
    MarketOnClose,
}

/// Time-in-force policy for order execution.
#[derive(
    Debug,
    Clone,
    Copy,
    Serialize,
    Deserialize,
    PartialEq,
    Eq,
    Hash,
    rkyv::Archive,
    rkyv::Serialize,
    rkyv::Deserialize,
)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum TimeInForce {
    /// Good-til-Cancelled: match what's available now, then rest the remainder.
    Gtc,
    /// Immediate-or-Cancel: match what's available now, then cancel the remainder.
    ImmediateOrCancel,
    /// Fill-or-Kill with an optional minimum fill size.
    ///
    /// `min_fill = None` requires the full order quantity. `Some(qty)` requires
    /// `qty` to be positive and no greater than the order quantity.
    ///
    /// Units:
    /// - Exchange orders: stake (Money quanta)
    /// - Binary orders: shares
    FillOrKill { min_fill: Option<Quantity> },
}

impl TimeInForce {
    pub(crate) fn required_fok_fill(
        self,
        order_qty: Quantity,
    ) -> Result<Option<Quantity>, RejectReason> {
        let Self::FillOrKill { min_fill } = self else {
            return Ok(None);
        };

        let required = match min_fill {
            Some(qty) if qty.0 == 0 || qty.0 > order_qty.0 => {
                return Err(RejectReason::InvalidTimeInForce);
            }
            Some(qty) => qty,
            None => order_qty,
        };
        Ok(Some(required))
    }
}

/// Reduce-only target for amending an exchange-odds order.
///
/// `TotalStake` is interpreted as the caller's desired total order stake after
/// fills already observed by the engine. `RemainingStake` is interpreted
/// directly as the desired live remainder.
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum ReduceOrderTarget {
    TotalStake(Money),
    RemainingStake(Money),
}

/// Optional state guard for reduce-only exchange order amendments.
///
/// When any supplied field differs from current engine state, the command is
/// rejected with `OrderStateChanged`.
#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq, Eq, Hash)]
pub struct ReduceOrderCondition {
    #[serde(default)]
    pub expected_odds: Option<OddsX10000>,
    #[serde(default)]
    pub expected_stake: Option<Money>,
    #[serde(default)]
    pub expected_matched_stake: Option<Money>,
    #[serde(default)]
    pub expected_remaining_stake: Option<Money>,
}

/// Reduce-only target for amending a binary YES order.
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum ReduceBinaryOrderTarget {
    TotalShares(u64),
    RemainingShares(u64),
}

/// Optional state guard for reduce-only binary order amendments.
#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq, Eq, Hash)]
pub struct ReduceBinaryOrderCondition {
    #[serde(default)]
    pub expected_price_ticks: Option<u16>,
    #[serde(default)]
    pub expected_qty_shares: Option<u64>,
    #[serde(default)]
    pub expected_filled_shares: Option<u64>,
    #[serde(default)]
    pub expected_remaining_shares: Option<u64>,
}

#[derive(
    Debug,
    Clone,
    Copy,
    Default,
    Serialize,
    Deserialize,
    PartialEq,
    Eq,
    Hash,
    strum::Display,
    strum::EnumString,
    rkyv::Archive,
    rkyv::Serialize,
    rkyv::Deserialize,
)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
pub enum MarketState {
    /// Market is open and accepts orders.
    #[default]
    Open,
    /// Market is temporarily suspended (no matching).
    Suspended,
    /// Market is closed and will be removed when the close batch completes.
    Closed,
    /// Market is deactivated (same trading effect as suspended).
    Deactivated,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct Command {
    /// Optional client-provided correlation id (UUID-like string, max 36 bytes).
    ///
    /// Propagated into market/order creation events for downstream correlation when present.
    #[serde(default)]
    pub correlation_id: Option<CorrelationId>,
    /// Optional client-provided metadata propagated to emitted book event envelopes.
    #[serde(default)]
    pub metadata: Option<serde_json::Value>,
    /// Target market id for the command.
    pub market_id: MarketId,
    /// The command payload.
    pub kind: CommandKind,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Hash)]
pub struct RunnerChange {
    pub runner_id: RunnerId,
    pub runner_label: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum CommandKind {
    /// Engine-level: create and initialize a market/book.
    CreateMarket {
        name: String,
        market_model: MarketModel,
        /// Concrete exchange book selection. Required for exchange-odds markets; omit otherwise.
        book_type: Option<BookType>,
        market_kind: MarketKind,
        #[serde(default)]
        market_state: MarketState,
        #[serde(default)]
        market_phase: MarketPhase,
        /// Empty means "dynamic multi-runner" (runners may be added later).
        runner_ids: Vec<RunnerId>,
        runner_labels: Vec<String>,
    },
    /// Add or revive runners in a dynamic multi-runner market.
    AddRunners {
        runner_ids: Vec<RunnerId>,
        runner_labels: Vec<String>,
    },
    /// Add/revive and remove runners in one dynamic multi-runner command.
    ChangeRunners {
        add: Vec<RunnerChange>,
        remove: Vec<RunnerChange>,
    },
    /// Place a new order on a market/runner.
    PlaceOrder {
        runner_id: RunnerId,
        account_id: AccountId,
        client_order_id: Option<ClientOrderId>,
        side: Side,
        odds: OddsX10000,
        stake: Money,
        persistence: Persistence,
        time_in_force: TimeInForce,
    },
    /// Place a new canonical YES-only prediction-market order.
    PlaceBinaryOrder {
        account_id: AccountId,
        client_order_id: Option<ClientOrderId>,
        side: Side,
        /// Uniform probability ticks in `[0..max_price_ticks]` for this market.
        price_ticks: u16,
        /// Quantity in shares (each share pays out `max_price_ticks` quanta on YES resolution).
        qty_shares: u64,
        time_in_force: TimeInForce,
    },
    /// Cancel an existing order.
    CancelOrder {
        account_id: AccountId,
        order_id: OrderId,
    },
    /// Reduce-only amend of an existing exchange order.
    ///
    /// The command may reprice and/or reduce the current live remainder, but it
    /// must not increase live stake or required reserve/liability.
    ReduceOrder {
        account_id: AccountId,
        order_id: OrderId,
        new_odds: Option<OddsX10000>,
        #[serde(default)]
        target: Option<ReduceOrderTarget>,
        #[serde(default)]
        condition: Option<ReduceOrderCondition>,
    },
    /// Reduce-only amend of an existing prediction-market order.
    ReduceBinaryOrder {
        account_id: AccountId,
        order_id: OrderId,
        new_price_ticks: Option<u16>,
        #[serde(default)]
        target: Option<ReduceBinaryOrderTarget>,
        #[serde(default)]
        condition: Option<ReduceBinaryOrderCondition>,
    },
    /// Update market trading state.
    SetMarketState { state: MarketState },
    /// Move a market into the pre-live waiting phase.
    AwaitLiveMarket,
    /// Return a pre-live waiting market to the pre-event trading phase without changing lifecycle state.
    ReturnToPreMarket {
        /// Human-readable reason recorded on the phase transition.
        #[serde(default)]
        reason: String,
    },
    /// Move a market into the live phase without changing lifecycle state.
    GoLiveMarket,
    /// Close a market in bounded event batches (starts a close process).
    CloseMarket {
        /// Human-readable reason recorded on the close state transition.
        #[serde(default)]
        reason: String,
    },
    /// Internal: continue an in-progress batch cleanup process.
    ContinueBatchProcess,
    /// Cancel matching live orders in bounded event batches without closing the market.
    BatchCancelOrders {
        from_created_at_inclusive: Option<DateTime>,
        to_created_at_inclusive: Option<DateTime>,
        account_id: Option<AccountId>,
        runner_id: Option<RunnerId>,
        reason: String,
    },
    /// Remove a runner from the market, optionally applying a reduction factor (in bps).
    RemoveRunner {
        runner_id: RunnerId,
        reduction_factor_bps: Option<u32>,
    },
    /// Remove multiple runners from the market, sharing one optional reduction factor.
    RemoveRunners {
        runner_ids: Vec<RunnerId>,
        reduction_factor_bps: Option<u32>,
    },
    /// Emit a passthrough void-trades marker (administrative).
    VoidTrades {
        timestamp: DateTime,
        start_time: DateTime,
        end_time: DateTime,
        void_reason: String,
    },
    /// Halt a market/book (administrative).
    ///
    /// The reason is caller-provided text recorded on the halt state transition.
    HaltMarket { reason: String },
    /// Resume a market/book after a halt (administrative).
    ResumeMarket,
}

impl Command {
    /// Extract the market_id from the command.
    pub fn market_id(&self) -> MarketId {
        self.market_id
    }
}

impl CommandKind {
    #[inline]
    pub fn is_internal_batch_continue(&self) -> bool {
        matches!(self, Self::ContinueBatchProcess)
    }

    #[inline]
    pub fn is_batch_interleavable_state_admin_command(&self) -> bool {
        matches!(
            self,
            Self::SetMarketState { .. }
                | Self::AwaitLiveMarket
                | Self::ReturnToPreMarket { .. }
                | Self::GoLiveMarket
                | Self::HaltMarket { .. }
                | Self::ResumeMarket
        )
    }

    #[inline]
    pub fn is_allowed_while_halted(&self, has_active_batch: bool) -> bool {
        if has_active_batch {
            self.is_internal_batch_continue()
                || self.is_batch_interleavable_state_admin_command()
                || matches!(self, Self::CloseMarket { .. })
        } else {
            matches!(
                self,
                Self::AwaitLiveMarket
                    | Self::ReturnToPreMarket { .. }
                    | Self::GoLiveMarket
                    | Self::AddRunners { .. }
                    | Self::ChangeRunners { .. }
                    | Self::RemoveRunner { .. }
                    | Self::RemoveRunners { .. }
                    | Self::BatchCancelOrders { .. }
                    | Self::ContinueBatchProcess
            )
        }
    }

    #[inline]
    pub fn validate_book_gate(
        &self,
        batch_state: Option<&BatchProcessState>,
        is_halted: bool,
    ) -> Result<(), RejectReason> {
        let is_internal_batch_continue = self.is_internal_batch_continue();
        let is_batch_interleavable_state_admin = self.is_batch_interleavable_state_admin_command();
        let is_close_market = matches!(self, Self::CloseMarket { .. });

        if let Some(batch_state) = batch_state {
            let allow_close_during_non_close_batch = is_close_market && !batch_state.is_close();
            if !is_internal_batch_continue
                && !is_batch_interleavable_state_admin
                && !allow_close_during_non_close_batch
            {
                return Err(RejectReason::MarketBatchCancelling);
            }
        }

        if is_halted && !self.is_allowed_while_halted(batch_state.is_some()) {
            return Err(RejectReason::MarketHalted);
        }

        Ok(())
    }

    #[inline]
    pub fn may_affect_batch_scheduler(&self) -> bool {
        matches!(
            self,
            Self::SetMarketState {
                state: MarketState::Closed | MarketState::Suspended | MarketState::Deactivated
            } | Self::AwaitLiveMarket
                | Self::GoLiveMarket
                | Self::CloseMarket { .. }
                | Self::ContinueBatchProcess
                | Self::BatchCancelOrders { .. }
                | Self::ChangeRunners { .. }
                | Self::RemoveRunner { .. }
                | Self::RemoveRunners { .. }
        )
    }
}

impl fmt::Display for Command {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.kind)
    }
}

impl fmt::Display for CommandKind {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let s = match self {
            CommandKind::CreateMarket { .. } => "CREATE_MARKET",
            CommandKind::AddRunners { .. } => "ADD_RUNNERS",
            CommandKind::ChangeRunners { .. } => "CHANGE_RUNNERS",
            CommandKind::PlaceOrder { .. } => "PLACE_ORDER",
            CommandKind::PlaceBinaryOrder { .. } => "PLACE_BINARY_ORDER",
            CommandKind::CancelOrder { .. } => "CANCEL_ORDER",
            CommandKind::ReduceOrder { .. } => "REDUCE_ORDER",
            CommandKind::ReduceBinaryOrder { .. } => "REDUCE_BINARY_ORDER",
            CommandKind::SetMarketState { .. } => "SET_MARKET_STATE",
            CommandKind::AwaitLiveMarket => "AWAIT_LIVE_MARKET",
            CommandKind::ReturnToPreMarket { .. } => "RETURN_TO_PRE_MARKET",
            CommandKind::GoLiveMarket => "GO_LIVE_MARKET",
            CommandKind::CloseMarket { .. } => "CLOSE_MARKET",
            CommandKind::ContinueBatchProcess => "CONTINUE_BATCH_PROCESS",
            CommandKind::BatchCancelOrders { .. } => "BATCH_CANCEL_ORDERS",
            CommandKind::RemoveRunner { .. } => "REMOVE_RUNNER",
            CommandKind::RemoveRunners { .. } => "REMOVE_RUNNERS",
            CommandKind::VoidTrades { .. } => "VOID_TRADES",
            CommandKind::HaltMarket { .. } => "HALT_MARKET",
            CommandKind::ResumeMarket => "RESUME_MARKET",
        };
        write!(f, "{s}")
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::book::{BatchMode, BatchProcessState};

    #[test]
    fn may_affect_batch_scheduler_flags_only_batch_relevant_commands() {
        assert!(
            CommandKind::CloseMarket {
                reason: "x".to_string(),
            }
            .may_affect_batch_scheduler()
        );
        assert!(CommandKind::ContinueBatchProcess.may_affect_batch_scheduler());
        assert!(
            CommandKind::BatchCancelOrders {
                from_created_at_inclusive: None,
                to_created_at_inclusive: None,
                account_id: None,
                runner_id: None,
                reason: "x".to_string(),
            }
            .may_affect_batch_scheduler()
        );
        assert!(
            CommandKind::RemoveRunner {
                runner_id: RunnerId(1),
                reduction_factor_bps: None,
            }
            .may_affect_batch_scheduler()
        );
        assert!(
            CommandKind::RemoveRunners {
                runner_ids: vec![RunnerId(1), RunnerId(2)],
                reduction_factor_bps: None,
            }
            .may_affect_batch_scheduler()
        );
        assert!(
            CommandKind::ChangeRunners {
                add: vec![RunnerChange {
                    runner_id: RunnerId(3),
                    runner_label: "C".to_string(),
                }],
                remove: vec![RunnerChange {
                    runner_id: RunnerId(1),
                    runner_label: "A".to_string(),
                }],
            }
            .may_affect_batch_scheduler()
        );
        assert!(CommandKind::AwaitLiveMarket.may_affect_batch_scheduler());
        assert!(CommandKind::GoLiveMarket.may_affect_batch_scheduler());
        assert!(
            CommandKind::SetMarketState {
                state: MarketState::Closed,
            }
            .may_affect_batch_scheduler()
        );
        assert!(
            CommandKind::SetMarketState {
                state: MarketState::Suspended,
            }
            .may_affect_batch_scheduler()
        );
        assert!(
            CommandKind::SetMarketState {
                state: MarketState::Deactivated,
            }
            .may_affect_batch_scheduler()
        );

        assert!(
            !CommandKind::ReturnToPreMarket {
                reason: "x".to_string(),
            }
            .may_affect_batch_scheduler()
        );
        assert!(
            !CommandKind::SetMarketState {
                state: MarketState::Open,
            }
            .may_affect_batch_scheduler()
        );
        assert!(
            !CommandKind::AddRunners {
                runner_ids: vec![RunnerId(1), RunnerId(2)],
                runner_labels: vec!["A".to_string(), "B".to_string()],
            }
            .may_affect_batch_scheduler()
        );
        assert!(
            !CommandKind::PlaceOrder {
                runner_id: RunnerId(1),
                account_id: AccountId::from(1_u64),
                client_order_id: None,
                side: Side::Yes,
                odds: OddsX10000(20_000),
                stake: Money(100),
                persistence: Persistence::Persist,
                time_in_force: TimeInForce::Gtc,
            }
            .may_affect_batch_scheduler()
        );
    }

    #[test]
    fn batch_interleavable_state_admin_helper_is_whitelist_only() {
        assert!(
            CommandKind::SetMarketState {
                state: MarketState::Open,
            }
            .is_batch_interleavable_state_admin_command()
        );
        assert!(CommandKind::AwaitLiveMarket.is_batch_interleavable_state_admin_command());
        assert!(
            CommandKind::ReturnToPreMarket {
                reason: "x".to_string(),
            }
            .is_batch_interleavable_state_admin_command()
        );
        assert!(CommandKind::GoLiveMarket.is_batch_interleavable_state_admin_command());
        assert!(
            CommandKind::HaltMarket {
                reason: "x".to_string(),
            }
            .is_batch_interleavable_state_admin_command()
        );
        assert!(CommandKind::ResumeMarket.is_batch_interleavable_state_admin_command());

        assert!(
            !CommandKind::CloseMarket {
                reason: "x".to_string(),
            }
            .is_batch_interleavable_state_admin_command()
        );
        assert!(!CommandKind::ContinueBatchProcess.is_batch_interleavable_state_admin_command());
        assert!(
            !CommandKind::BatchCancelOrders {
                from_created_at_inclusive: None,
                to_created_at_inclusive: None,
                account_id: None,
                runner_id: None,
                reason: "x".to_string(),
            }
            .is_batch_interleavable_state_admin_command()
        );
        assert!(
            !CommandKind::RemoveRunner {
                runner_id: RunnerId(1),
                reduction_factor_bps: None,
            }
            .is_batch_interleavable_state_admin_command()
        );
        assert!(
            !CommandKind::RemoveRunners {
                runner_ids: vec![RunnerId(1), RunnerId(2)],
                reduction_factor_bps: None,
            }
            .is_batch_interleavable_state_admin_command()
        );
        assert!(
            !CommandKind::AddRunners {
                runner_ids: vec![RunnerId(1), RunnerId(2)],
                runner_labels: vec!["A".to_string(), "B".to_string()],
            }
            .is_batch_interleavable_state_admin_command()
        );
        assert!(
            !CommandKind::ChangeRunners {
                add: vec![RunnerChange {
                    runner_id: RunnerId(3),
                    runner_label: "C".to_string(),
                }],
                remove: vec![],
            }
            .is_batch_interleavable_state_admin_command()
        );
        assert!(
            !CommandKind::PlaceOrder {
                runner_id: RunnerId(1),
                account_id: AccountId::from(1_u64),
                client_order_id: None,
                side: Side::Yes,
                odds: OddsX10000(20_000),
                stake: Money(100),
                persistence: Persistence::Persist,
                time_in_force: TimeInForce::Gtc,
            }
            .is_batch_interleavable_state_admin_command()
        );
    }

    #[test]
    fn allowed_while_halted_helper_matches_batch_mode_rules() {
        assert!(CommandKind::ContinueBatchProcess.is_allowed_while_halted(true));
        assert!(
            CommandKind::CloseMarket {
                reason: "x".to_string(),
            }
            .is_allowed_while_halted(true)
        );
        assert!(
            CommandKind::BatchCancelOrders {
                from_created_at_inclusive: None,
                to_created_at_inclusive: None,
                account_id: None,
                runner_id: None,
                reason: "x".to_string(),
            }
            .is_allowed_while_halted(false)
        );
        assert!(CommandKind::ContinueBatchProcess.is_allowed_while_halted(false));
        assert!(CommandKind::AwaitLiveMarket.is_allowed_while_halted(false));
        assert!(
            CommandKind::ReturnToPreMarket {
                reason: "x".to_string(),
            }
            .is_allowed_while_halted(false)
        );
        assert!(CommandKind::GoLiveMarket.is_allowed_while_halted(false));
        assert!(
            CommandKind::AddRunners {
                runner_ids: vec![RunnerId(1), RunnerId(2)],
                runner_labels: vec!["A".to_string(), "B".to_string()],
            }
            .is_allowed_while_halted(false)
        );
        assert!(
            CommandKind::RemoveRunner {
                runner_id: RunnerId(1),
                reduction_factor_bps: None,
            }
            .is_allowed_while_halted(false)
        );
        assert!(
            CommandKind::RemoveRunners {
                runner_ids: vec![RunnerId(1), RunnerId(2)],
                reduction_factor_bps: None,
            }
            .is_allowed_while_halted(false)
        );
        assert!(
            CommandKind::ChangeRunners {
                add: vec![RunnerChange {
                    runner_id: RunnerId(3),
                    runner_label: "C".to_string(),
                }],
                remove: vec![],
            }
            .is_allowed_while_halted(false)
        );
        assert!(
            !CommandKind::RemoveRunner {
                runner_id: RunnerId(1),
                reduction_factor_bps: None,
            }
            .is_allowed_while_halted(true)
        );
        assert!(
            !CommandKind::RemoveRunners {
                runner_ids: vec![RunnerId(1), RunnerId(2)],
                reduction_factor_bps: None,
            }
            .is_allowed_while_halted(true)
        );
        assert!(
            !CommandKind::ChangeRunners {
                add: vec![RunnerChange {
                    runner_id: RunnerId(3),
                    runner_label: "C".to_string(),
                }],
                remove: vec![],
            }
            .is_allowed_while_halted(true)
        );

        assert!(
            !CommandKind::SetMarketState {
                state: MarketState::Deactivated,
            }
            .is_allowed_while_halted(false)
        );
        assert!(
            !CommandKind::CloseMarket {
                reason: "x".to_string(),
            }
            .is_allowed_while_halted(false)
        );
        assert!(
            !CommandKind::PlaceOrder {
                runner_id: RunnerId(1),
                account_id: AccountId::from(1_u64),
                client_order_id: None,
                side: Side::Yes,
                odds: OddsX10000(20_000),
                stake: Money(100),
                persistence: Persistence::Persist,
                time_in_force: TimeInForce::Gtc,
            }
            .is_allowed_while_halted(true)
        );
    }

    #[test]
    fn validate_book_gate_reuses_shared_batch_and_halt_rules() {
        let close_batch = BatchProcessState::close(5, 2);
        let lapse_batch = BatchProcessState::lapse(5, BatchMode::InPlayLapse);

        assert_eq!(
            CommandKind::CloseMarket {
                reason: "x".to_string(),
            }
            .validate_book_gate(Some(&close_batch), false),
            Err(RejectReason::MarketBatchCancelling)
        );
        assert_eq!(
            CommandKind::CloseMarket {
                reason: "x".to_string(),
            }
            .validate_book_gate(Some(&lapse_batch), true),
            Ok(())
        );
        assert_eq!(
            CommandKind::PlaceOrder {
                runner_id: RunnerId(1),
                account_id: AccountId::from(1_u64),
                client_order_id: None,
                side: Side::Yes,
                odds: OddsX10000(20_000),
                stake: Money(100),
                persistence: Persistence::Persist,
                time_in_force: TimeInForce::Gtc,
            }
            .validate_book_gate(Some(&lapse_batch), false),
            Err(RejectReason::MarketBatchCancelling)
        );
        assert_eq!(
            CommandKind::BatchCancelOrders {
                from_created_at_inclusive: None,
                to_created_at_inclusive: None,
                account_id: None,
                runner_id: None,
                reason: "x".to_string(),
            }
            .validate_book_gate(None, true),
            Ok(())
        );
        assert_eq!(
            CommandKind::AddRunners {
                runner_ids: vec![RunnerId(1), RunnerId(2)],
                runner_labels: vec!["A".to_string(), "B".to_string()],
            }
            .validate_book_gate(Some(&lapse_batch), false),
            Err(RejectReason::MarketBatchCancelling)
        );
        assert_eq!(
            CommandKind::ChangeRunners {
                add: vec![RunnerChange {
                    runner_id: RunnerId(3),
                    runner_label: "C".to_string(),
                }],
                remove: vec![],
            }
            .validate_book_gate(Some(&lapse_batch), false),
            Err(RejectReason::MarketBatchCancelling)
        );
    }

    #[test]
    fn change_runners_display_name_is_wire_command_name() {
        let kind = CommandKind::ChangeRunners {
            add: vec![RunnerChange {
                runner_id: RunnerId(3),
                runner_label: "C".to_string(),
            }],
            remove: vec![],
        };

        assert_eq!(kind.to_string(), "CHANGE_RUNNERS");
    }
}