a0a2beddfe
* parity-version: bump beta to 2.0.2 * remove ssl from dockerfiles, closes #8880 (#9195) * snap: remove ssl dependencies from snapcraft definition (#9222) * parity-version: bump beta to 2.0.3 * Remove all dapp permissions related settings (#9120) * Completely remove all dapps struct from rpc * Remove unused pub use * Remove dapp policy/permission func in ethcore * Remove all dapps settings from rpc * Fix rpc tests * Use both origin and user_agent * Address grumbles * Address grumbles * Fix tests * Check if synced when using eth_getWork (#9193) (#9210) * Check if synced when using eth_getWork (#9193) * Don't use fn syncing * Fix identation * Fix typo * Don't check for warping * rpc: avoid calling queue_info twice on eth_getWork * Fix potential as_usize overflow when casting from U256 in miner (#9221) * Allow old blocks from peers with lower difficulty (#9226) Previously we only allow downloading of old blocks if the peer difficulty was greater than our syncing difficulty. This change allows downloading of blocks from peers where the difficulty is greater then the last downloaded old block. * Update Dockerfile (#9242) * Update Dockerfile fix Docker build * fix dockerfile paths: parity -> parity-ethereum (#9248) * Propagate transactions for next 4 blocks. (#9265) Closes #9255 This PR also removes the limit of max 64 transactions per packet, currently we only attempt to prevent the packet size to go over 8MB. This will only be the case for super-large transactions or high-block-gas-limit chains. Patching this is important only for chains that have blocks that can fit more than 4k transactions (over 86M block gas limit) For mainnet, we should actually see a tiny bit faster propagation since instead of computing 4k pending set, we only need `4 * 8M / 21k = 1523` transactions. Running some tests on `dekompile` node right now, to check how it performs in the wild. * Update tobalaba.json (#9313) * Fix load share (#9321) * fix(light_sync): calculate `load_share` properly * refactor(api.rs): extract `light_params` fn, add test * style(api.rs): add trailing commas * ethcore: fix pow difficulty validation (#9328) * ethcore: fix pow difficulty validation * ethcore: validate difficulty is not zero * ethcore: add issue link to regression test * ethcore: fix tests * ethcore: move difficulty_to_boundary to ethash crate * ethcore: reuse difficulty_to_boundary and boundary_to_difficulty * ethcore: fix grumbles in difficulty_to_boundary_aux * Light client `Provide default nonce in transactions when it´s missing` (#9370) * Provide `default_nonce` in tx`s when it´s missing When `nonce` is missing in a `EthTransaction` will cause it to fall in these cases provide `default_nonce` value instead! * Changed http:// to https:// on Yasm link (#9369) Changed http:// to https:// on Yasm link in README.md * Provide `default_nonce` in tx`s when it´s missing When `nonce` is missing in a `EthTransaction` will cause it to fall in these cases provide `default_nonce` value instead! * Address grumbles * ethcore: kovan: delay activation of strict score validation (#9406) * Better support for eth_getLogs in light mode (#9186) * Light client on-demand request for headers range. * Cache headers in HeaderWithAncestors response. Also fulfills request locally if all headers are in cache. * LightFetch::logs fetches missing headers on demand. * LightFetch::logs limit the number of headers requested at a time. * LightFetch::logs refactor header fetching logic. * Enforce limit on header range length in light client logs request. * Fix light request tests after struct change. * Respond to review comments. * Add update docs script to CI (#9219) * Add update docs script to CI Added a script to CI that will use the jsonrpc tool to update rpc documentation then commit and push those to the wiki repo. * fix gitlab ci lint * Only apply jsonrpc docs update on tags * Update gitlab-rpc-docs.sh * Copy correct parity repo to jsonrpc folder Copy correct parity repo to jsonrpc folder before attempting to build docs since the CI runner clones the repo as parity and not parity-ethereum. * Fix JSONRPC docs CI job Update remote config in wiki repo before pushing changes using a github token for authentication. Add message to wiki tag when pushing changes. Use project directory to correctly copy parity code base into the jsonrpc repo for doc generation. * Fix set_remote_wiki function call in CI * Prevent blockchain & miner racing when accessing pending block. (#9310) * Prevent blockchain & miner racing when accessing pending block. * Fix unavailability of pending block during reseal. * Prevent sync restart if import queue full (#9381) * Add POA Networks: Core and Sokol (#9413) * ethcore: add poa network and sokol chainspecs * rpc: simplify chain spec docs * cli: rearrange networks by main/test and size/range * parity: don't blacklist 0x00a328 on sokol testnet * parity: add sokol and poanet to params and clean up a bit, add tests * ethcore: add the poa networks and clean up a bit * ethcore: fix path to poacore chain spec * parity: rename poa networks to poacore and poasokol * parity: fix configuration tests * parity: fix parameter tests * ethcore: rename POA Core and POA Sokol * Update tobalaba.json (#9419) * Update hardcoded sync (#9421) - Update foundation hardcoded header to block 6219777 - Update ropsten hardcoded header to block 3917825 - Update kovan hardcoded header to block 8511489
472 lines
14 KiB
Rust
472 lines
14 KiB
Rust
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity.
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use std::{str, fs, fmt};
|
|
use std::time::Duration;
|
|
|
|
use ethcore::client::Mode;
|
|
use ethcore::ethereum;
|
|
use ethcore::spec::{Spec, SpecParams};
|
|
use ethereum_types::{U256, Address};
|
|
use futures_cpupool::CpuPool;
|
|
use hash_fetch::fetch::Client as FetchClient;
|
|
use journaldb::Algorithm;
|
|
use miner::gas_pricer::GasPricer;
|
|
use miner::gas_price_calibrator::{GasPriceCalibratorOptions, GasPriceCalibrator};
|
|
use parity_version::version_data;
|
|
use user_defaults::UserDefaults;
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum SpecType {
|
|
Foundation,
|
|
Classic,
|
|
Poanet,
|
|
Tobalaba,
|
|
Expanse,
|
|
Musicoin,
|
|
Ellaism,
|
|
Easthub,
|
|
Social,
|
|
Olympic,
|
|
Morden,
|
|
Ropsten,
|
|
Kovan,
|
|
Sokol,
|
|
Dev,
|
|
Custom(String),
|
|
}
|
|
|
|
impl Default for SpecType {
|
|
fn default() -> Self {
|
|
SpecType::Foundation
|
|
}
|
|
}
|
|
|
|
impl str::FromStr for SpecType {
|
|
type Err = String;
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
let spec = match s {
|
|
"ethereum" | "frontier" | "homestead" | "byzantium" | "foundation" | "mainnet" => SpecType::Foundation,
|
|
"classic" | "frontier-dogmatic" | "homestead-dogmatic" => SpecType::Classic,
|
|
"poanet" | "poacore" => SpecType::Poanet,
|
|
"tobalaba" => SpecType::Tobalaba,
|
|
"expanse" => SpecType::Expanse,
|
|
"musicoin" => SpecType::Musicoin,
|
|
"ellaism" => SpecType::Ellaism,
|
|
"easthub" => SpecType::Easthub,
|
|
"social" => SpecType::Social,
|
|
"olympic" => SpecType::Olympic,
|
|
"morden" | "classic-testnet" => SpecType::Morden,
|
|
"ropsten" => SpecType::Ropsten,
|
|
"kovan" | "testnet" => SpecType::Kovan,
|
|
"sokol" | "poasokol" => SpecType::Sokol,
|
|
"dev" => SpecType::Dev,
|
|
other => SpecType::Custom(other.into()),
|
|
};
|
|
Ok(spec)
|
|
}
|
|
}
|
|
|
|
impl fmt::Display for SpecType {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
f.write_str(match *self {
|
|
SpecType::Foundation => "foundation",
|
|
SpecType::Classic => "classic",
|
|
SpecType::Poanet => "poanet",
|
|
SpecType::Tobalaba => "tobalaba",
|
|
SpecType::Expanse => "expanse",
|
|
SpecType::Musicoin => "musicoin",
|
|
SpecType::Ellaism => "ellaism",
|
|
SpecType::Easthub => "easthub",
|
|
SpecType::Social => "social",
|
|
SpecType::Olympic => "olympic",
|
|
SpecType::Morden => "morden",
|
|
SpecType::Ropsten => "ropsten",
|
|
SpecType::Kovan => "kovan",
|
|
SpecType::Sokol => "sokol",
|
|
SpecType::Dev => "dev",
|
|
SpecType::Custom(ref custom) => custom,
|
|
})
|
|
}
|
|
}
|
|
|
|
impl SpecType {
|
|
pub fn spec<'a, T: Into<SpecParams<'a>>>(&self, params: T) -> Result<Spec, String> {
|
|
let params = params.into();
|
|
match *self {
|
|
SpecType::Foundation => Ok(ethereum::new_foundation(params)),
|
|
SpecType::Classic => Ok(ethereum::new_classic(params)),
|
|
SpecType::Poanet => Ok(ethereum::new_poanet(params)),
|
|
SpecType::Tobalaba => Ok(ethereum::new_tobalaba(params)),
|
|
SpecType::Expanse => Ok(ethereum::new_expanse(params)),
|
|
SpecType::Musicoin => Ok(ethereum::new_musicoin(params)),
|
|
SpecType::Ellaism => Ok(ethereum::new_ellaism(params)),
|
|
SpecType::Easthub => Ok(ethereum::new_easthub(params)),
|
|
SpecType::Social => Ok(ethereum::new_social(params)),
|
|
SpecType::Olympic => Ok(ethereum::new_olympic(params)),
|
|
SpecType::Morden => Ok(ethereum::new_morden(params)),
|
|
SpecType::Ropsten => Ok(ethereum::new_ropsten(params)),
|
|
SpecType::Kovan => Ok(ethereum::new_kovan(params)),
|
|
SpecType::Sokol => Ok(ethereum::new_sokol(params)),
|
|
SpecType::Dev => Ok(Spec::new_instant()),
|
|
SpecType::Custom(ref filename) => {
|
|
let file = fs::File::open(filename).map_err(|e| format!("Could not load specification file at {}: {}", filename, e))?;
|
|
Spec::load(params, file)
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn legacy_fork_name(&self) -> Option<String> {
|
|
match *self {
|
|
SpecType::Classic => Some("classic".to_owned()),
|
|
SpecType::Expanse => Some("expanse".to_owned()),
|
|
SpecType::Musicoin => Some("musicoin".to_owned()),
|
|
_ => None,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum Pruning {
|
|
Specific(Algorithm),
|
|
Auto,
|
|
}
|
|
|
|
impl Default for Pruning {
|
|
fn default() -> Self {
|
|
Pruning::Auto
|
|
}
|
|
}
|
|
|
|
impl str::FromStr for Pruning {
|
|
type Err = String;
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
match s {
|
|
"auto" => Ok(Pruning::Auto),
|
|
other => other.parse().map(Pruning::Specific),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Pruning {
|
|
pub fn to_algorithm(&self, user_defaults: &UserDefaults) -> Algorithm {
|
|
match *self {
|
|
Pruning::Specific(algo) => algo,
|
|
Pruning::Auto => user_defaults.pruning,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub struct ResealPolicy {
|
|
pub own: bool,
|
|
pub external: bool,
|
|
}
|
|
|
|
impl Default for ResealPolicy {
|
|
fn default() -> Self {
|
|
ResealPolicy {
|
|
own: true,
|
|
external: true,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl str::FromStr for ResealPolicy {
|
|
type Err = String;
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
let (own, external) = match s {
|
|
"none" => (false, false),
|
|
"own" => (true, false),
|
|
"ext" => (false, true),
|
|
"all" => (true, true),
|
|
x => return Err(format!("Invalid reseal value: {}", x)),
|
|
};
|
|
|
|
let reseal = ResealPolicy {
|
|
own: own,
|
|
external: external,
|
|
};
|
|
|
|
Ok(reseal)
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub struct AccountsConfig {
|
|
pub iterations: u32,
|
|
pub refresh_time: u64,
|
|
pub testnet: bool,
|
|
pub password_files: Vec<String>,
|
|
pub unlocked_accounts: Vec<Address>,
|
|
pub enable_hardware_wallets: bool,
|
|
pub enable_fast_unlock: bool,
|
|
}
|
|
|
|
impl Default for AccountsConfig {
|
|
fn default() -> Self {
|
|
AccountsConfig {
|
|
iterations: 10240,
|
|
refresh_time: 5,
|
|
testnet: false,
|
|
password_files: Vec::new(),
|
|
unlocked_accounts: Vec::new(),
|
|
enable_hardware_wallets: true,
|
|
enable_fast_unlock: false,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum GasPricerConfig {
|
|
Fixed(U256),
|
|
Calibrated {
|
|
usd_per_tx: f32,
|
|
recalibration_period: Duration,
|
|
}
|
|
}
|
|
|
|
impl Default for GasPricerConfig {
|
|
fn default() -> Self {
|
|
GasPricerConfig::Calibrated {
|
|
usd_per_tx: 0.0001f32,
|
|
recalibration_period: Duration::from_secs(3600),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl GasPricerConfig {
|
|
pub fn to_gas_pricer(&self, fetch: FetchClient, p: CpuPool) -> GasPricer {
|
|
match *self {
|
|
GasPricerConfig::Fixed(u) => GasPricer::Fixed(u),
|
|
GasPricerConfig::Calibrated { usd_per_tx, recalibration_period, .. } => {
|
|
GasPricer::new_calibrated(
|
|
GasPriceCalibrator::new(
|
|
GasPriceCalibratorOptions {
|
|
usd_per_tx: usd_per_tx,
|
|
recalibration_period: recalibration_period,
|
|
},
|
|
fetch,
|
|
p,
|
|
)
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub struct MinerExtras {
|
|
pub author: Address,
|
|
pub engine_signer: Address,
|
|
pub extra_data: Vec<u8>,
|
|
pub gas_range_target: (U256, U256),
|
|
pub work_notify: Vec<String>,
|
|
}
|
|
|
|
impl Default for MinerExtras {
|
|
fn default() -> Self {
|
|
MinerExtras {
|
|
author: Default::default(),
|
|
engine_signer: Default::default(),
|
|
extra_data: version_data(),
|
|
gas_range_target: (4_700_000.into(), 6_283_184.into()),
|
|
work_notify: Default::default(),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// 3-value enum.
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
pub enum Switch {
|
|
/// True.
|
|
On,
|
|
/// False.
|
|
Off,
|
|
/// Auto.
|
|
Auto,
|
|
}
|
|
|
|
impl Default for Switch {
|
|
fn default() -> Self {
|
|
Switch::Auto
|
|
}
|
|
}
|
|
|
|
impl str::FromStr for Switch {
|
|
type Err = String;
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
match s {
|
|
"on" => Ok(Switch::On),
|
|
"off" => Ok(Switch::Off),
|
|
"auto" => Ok(Switch::Auto),
|
|
other => Err(format!("Invalid switch value: {}", other))
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn tracing_switch_to_bool(switch: Switch, user_defaults: &UserDefaults) -> Result<bool, String> {
|
|
match (user_defaults.is_first_launch, switch, user_defaults.tracing) {
|
|
(false, Switch::On, false) => Err("TraceDB resync required".into()),
|
|
(_, Switch::On, _) => Ok(true),
|
|
(_, Switch::Off, _) => Ok(false),
|
|
(_, Switch::Auto, def) => Ok(def),
|
|
}
|
|
}
|
|
|
|
pub fn fatdb_switch_to_bool(switch: Switch, user_defaults: &UserDefaults, _algorithm: Algorithm) -> Result<bool, String> {
|
|
let result = match (user_defaults.is_first_launch, switch, user_defaults.fat_db) {
|
|
(false, Switch::On, false) => Err("FatDB resync required".into()),
|
|
(_, Switch::On, _) => Ok(true),
|
|
(_, Switch::Off, _) => Ok(false),
|
|
(_, Switch::Auto, def) => Ok(def),
|
|
};
|
|
result
|
|
}
|
|
|
|
pub fn mode_switch_to_bool(switch: Option<Mode>, user_defaults: &UserDefaults) -> Result<Mode, String> {
|
|
Ok(switch.unwrap_or(user_defaults.mode().clone()))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use journaldb::Algorithm;
|
|
use user_defaults::UserDefaults;
|
|
use super::{SpecType, Pruning, ResealPolicy, Switch, tracing_switch_to_bool};
|
|
|
|
#[test]
|
|
fn test_spec_type_parsing() {
|
|
assert_eq!(SpecType::Foundation, "foundation".parse().unwrap());
|
|
assert_eq!(SpecType::Foundation, "frontier".parse().unwrap());
|
|
assert_eq!(SpecType::Foundation, "homestead".parse().unwrap());
|
|
assert_eq!(SpecType::Foundation, "byzantium".parse().unwrap());
|
|
assert_eq!(SpecType::Foundation, "mainnet".parse().unwrap());
|
|
assert_eq!(SpecType::Foundation, "ethereum".parse().unwrap());
|
|
assert_eq!(SpecType::Classic, "classic".parse().unwrap());
|
|
assert_eq!(SpecType::Classic, "frontier-dogmatic".parse().unwrap());
|
|
assert_eq!(SpecType::Classic, "homestead-dogmatic".parse().unwrap());
|
|
assert_eq!(SpecType::Poanet, "poanet".parse().unwrap());
|
|
assert_eq!(SpecType::Poanet, "poacore".parse().unwrap());
|
|
assert_eq!(SpecType::Tobalaba, "tobalaba".parse().unwrap());
|
|
assert_eq!(SpecType::Expanse, "expanse".parse().unwrap());
|
|
assert_eq!(SpecType::Musicoin, "musicoin".parse().unwrap());
|
|
assert_eq!(SpecType::Ellaism, "ellaism".parse().unwrap());
|
|
assert_eq!(SpecType::Easthub, "easthub".parse().unwrap());
|
|
assert_eq!(SpecType::Social, "social".parse().unwrap());
|
|
assert_eq!(SpecType::Olympic, "olympic".parse().unwrap());
|
|
assert_eq!(SpecType::Morden, "morden".parse().unwrap());
|
|
assert_eq!(SpecType::Morden, "classic-testnet".parse().unwrap());
|
|
assert_eq!(SpecType::Ropsten, "ropsten".parse().unwrap());
|
|
assert_eq!(SpecType::Kovan, "kovan".parse().unwrap());
|
|
assert_eq!(SpecType::Kovan, "testnet".parse().unwrap());
|
|
assert_eq!(SpecType::Sokol, "sokol".parse().unwrap());
|
|
assert_eq!(SpecType::Sokol, "poasokol".parse().unwrap());
|
|
}
|
|
|
|
#[test]
|
|
fn test_spec_type_default() {
|
|
assert_eq!(SpecType::Foundation, SpecType::default());
|
|
}
|
|
|
|
#[test]
|
|
fn test_spec_type_display() {
|
|
assert_eq!(format!("{}", SpecType::Foundation), "foundation");
|
|
assert_eq!(format!("{}", SpecType::Classic), "classic");
|
|
assert_eq!(format!("{}", SpecType::Poanet), "poanet");
|
|
assert_eq!(format!("{}", SpecType::Tobalaba), "tobalaba");
|
|
assert_eq!(format!("{}", SpecType::Expanse), "expanse");
|
|
assert_eq!(format!("{}", SpecType::Musicoin), "musicoin");
|
|
assert_eq!(format!("{}", SpecType::Ellaism), "ellaism");
|
|
assert_eq!(format!("{}", SpecType::Easthub), "easthub");
|
|
assert_eq!(format!("{}", SpecType::Social), "social");
|
|
assert_eq!(format!("{}", SpecType::Olympic), "olympic");
|
|
assert_eq!(format!("{}", SpecType::Morden), "morden");
|
|
assert_eq!(format!("{}", SpecType::Ropsten), "ropsten");
|
|
assert_eq!(format!("{}", SpecType::Kovan), "kovan");
|
|
assert_eq!(format!("{}", SpecType::Sokol), "sokol");
|
|
assert_eq!(format!("{}", SpecType::Dev), "dev");
|
|
assert_eq!(format!("{}", SpecType::Custom("foo/bar".into())), "foo/bar");
|
|
}
|
|
|
|
#[test]
|
|
fn test_pruning_parsing() {
|
|
assert_eq!(Pruning::Auto, "auto".parse().unwrap());
|
|
assert_eq!(Pruning::Specific(Algorithm::Archive), "archive".parse().unwrap());
|
|
assert_eq!(Pruning::Specific(Algorithm::EarlyMerge), "light".parse().unwrap());
|
|
assert_eq!(Pruning::Specific(Algorithm::OverlayRecent), "fast".parse().unwrap());
|
|
assert_eq!(Pruning::Specific(Algorithm::RefCounted), "basic".parse().unwrap());
|
|
}
|
|
|
|
#[test]
|
|
fn test_pruning_default() {
|
|
assert_eq!(Pruning::Auto, Pruning::default());
|
|
}
|
|
|
|
#[test]
|
|
fn test_reseal_policy_parsing() {
|
|
let none = ResealPolicy { own: false, external: false };
|
|
let own = ResealPolicy { own: true, external: false };
|
|
let ext = ResealPolicy { own: false, external: true };
|
|
let all = ResealPolicy { own: true, external: true };
|
|
assert_eq!(none, "none".parse().unwrap());
|
|
assert_eq!(own, "own".parse().unwrap());
|
|
assert_eq!(ext, "ext".parse().unwrap());
|
|
assert_eq!(all, "all".parse().unwrap());
|
|
}
|
|
|
|
#[test]
|
|
fn test_reseal_policy_default() {
|
|
let all = ResealPolicy { own: true, external: true };
|
|
assert_eq!(all, ResealPolicy::default());
|
|
}
|
|
|
|
#[test]
|
|
fn test_switch_parsing() {
|
|
assert_eq!(Switch::On, "on".parse().unwrap());
|
|
assert_eq!(Switch::Off, "off".parse().unwrap());
|
|
assert_eq!(Switch::Auto, "auto".parse().unwrap());
|
|
}
|
|
|
|
#[test]
|
|
fn test_switch_default() {
|
|
assert_eq!(Switch::default(), Switch::Auto);
|
|
}
|
|
|
|
fn user_defaults_with_tracing(first_launch: bool, tracing: bool) -> UserDefaults {
|
|
let mut ud = UserDefaults::default();
|
|
ud.is_first_launch = first_launch;
|
|
ud.tracing = tracing;
|
|
ud
|
|
}
|
|
|
|
#[test]
|
|
fn test_switch_to_bool() {
|
|
assert!(!tracing_switch_to_bool(Switch::Off, &user_defaults_with_tracing(true, true)).unwrap());
|
|
assert!(!tracing_switch_to_bool(Switch::Off, &user_defaults_with_tracing(true, false)).unwrap());
|
|
assert!(!tracing_switch_to_bool(Switch::Off, &user_defaults_with_tracing(false, true)).unwrap());
|
|
assert!(!tracing_switch_to_bool(Switch::Off, &user_defaults_with_tracing(false, false)).unwrap());
|
|
|
|
assert!(tracing_switch_to_bool(Switch::On, &user_defaults_with_tracing(true, true)).unwrap());
|
|
assert!(tracing_switch_to_bool(Switch::On, &user_defaults_with_tracing(true, false)).unwrap());
|
|
assert!(tracing_switch_to_bool(Switch::On, &user_defaults_with_tracing(false, true)).unwrap());
|
|
assert!(tracing_switch_to_bool(Switch::On, &user_defaults_with_tracing(false, false)).is_err());
|
|
}
|
|
}
|