nautilus_model/identifiers/stubs.rs
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
// -------------------------------------------------------------------------------------------------
// Copyright (C) 2015-2024 Nautech Systems Pty Ltd. All rights reserved.
// https://nautechsystems.io
//
// Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
// You may not use this file except in compliance with the License.
// You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// -------------------------------------------------------------------------------------------------
//! Default implementations and fixture functions to provide stub identifiers for testing.
use nautilus_core::uuid::UUID4;
use rstest::fixture;
use crate::identifiers::{
AccountId, ClientId, ClientOrderId, ComponentId, ExecAlgorithmId, InstrumentId, OrderListId,
PositionId, StrategyId, Symbol, TradeId, TraderId, Venue, VenueOrderId,
};
impl Default for AccountId {
/// Creates a new default [`AccountId`] instance for testing.
fn default() -> Self {
Self::from("SIM-001")
}
}
impl Default for ClientId {
/// Creates a new default [`ClientId`] instance for testing.
fn default() -> Self {
Self::from("SIM")
}
}
impl Default for ClientOrderId {
/// Creates a new default [`ClientOrderId`] instance for testing.
fn default() -> Self {
Self::from("O-19700101-000000-001-001-1")
}
}
impl Default for PositionId {
/// Creates a new default [`PositionId`] instance for testing.
fn default() -> Self {
Self::from("P-001")
}
}
impl Default for StrategyId {
/// Creates a new default [`StrategyId`] instance for testing.
fn default() -> Self {
Self::from("S-001")
}
}
impl Default for Symbol {
/// Creates a new default [`Symbol`] instance for testing.
fn default() -> Self {
Self::from("AUD/USD")
}
}
impl Default for TradeId {
/// Creates a new default [`TradeId`] instance for testing.
fn default() -> Self {
Self::from("1")
}
}
impl Default for TraderId {
/// Creates a new default [`TraderId`] instance for testing.
fn default() -> Self {
Self::from("TRADER-001")
}
}
impl Default for Venue {
/// Creates a new default [`Venue`] instance for testing.
fn default() -> Self {
Self::from("SIM")
}
}
impl Default for VenueOrderId {
/// Creates a new default [`VenueOrderId`] instance for testing.
fn default() -> Self {
Self::from("001")
}
}
// ---- AccountId ----
#[fixture]
pub fn account_id() -> AccountId {
AccountId::from("SIM-001")
}
#[fixture]
pub fn account_ib() -> AccountId {
AccountId::from("IB-1234567890")
}
// ---- ClientId ----
#[fixture]
pub fn client_id_binance() -> ClientId {
ClientId::from("BINANCE")
}
#[fixture]
pub fn client_id_dydx() -> ClientId {
ClientId::from("COINBASE")
}
// ---- ClientOrderId ----
#[fixture]
pub fn client_order_id() -> ClientOrderId {
ClientOrderId::from("O-19700101-000000-001-001-1")
}
// ---- ComponentId ----
#[fixture]
pub fn component_risk_engine() -> ComponentId {
ComponentId::from("RiskEngine")
}
// ---- ExecAlgorithmId ----
#[fixture]
pub fn exec_algorithm_id() -> ExecAlgorithmId {
ExecAlgorithmId::from("001")
}
// ---- InstrumentId ----
#[fixture]
pub fn instrument_id_eth_usdt_binance() -> InstrumentId {
InstrumentId::from("ETHUSDT.BINANCE")
}
#[fixture]
pub fn instrument_id_btc_usdt() -> InstrumentId {
InstrumentId::from("BTCUSDT.COINBASE")
}
#[fixture]
pub fn instrument_id_aud_usd_sim() -> InstrumentId {
InstrumentId::from("AUDUSD.SIM")
}
// ---- OrderListId ----
#[fixture]
pub fn order_list_id_test() -> OrderListId {
OrderListId::from("001")
}
// ---- PositionId ----
#[fixture]
pub fn position_id_test() -> PositionId {
PositionId::from("P-123456789")
}
// ---- StrategyId ----
#[fixture]
pub fn strategy_id_ema_cross() -> StrategyId {
StrategyId::from("EMACross-001")
}
// ---- Symbol ----
#[fixture]
pub fn symbol_eth_perp() -> Symbol {
Symbol::from("ETH-PERP")
}
#[fixture]
pub fn symbol_aud_usd() -> Symbol {
Symbol::from("AUDUSD")
}
// ---- TradeId ----
#[fixture]
pub fn trade_id() -> TradeId {
TradeId::from("1234567890")
}
// ---- TraderId ----
#[fixture]
pub fn trader_id() -> TraderId {
TraderId::from("TRADER-001")
}
// ---- Venue ----
#[fixture]
pub fn venue_binance() -> Venue {
Venue::from("BINANCE")
}
#[fixture]
pub fn venue_sim() -> Venue {
Venue::from("SIM")
}
// ---- VenueOrderId ----
#[fixture]
pub fn venue_order_id() -> VenueOrderId {
VenueOrderId::from("001")
}
// ---- UUID4 ----
#[fixture]
pub fn uuid4() -> UUID4 {
UUID4::from("16578139-a945-4b65-b46c-bc131a15d8e7")
}