ncheap 0.8.0

Namecheap registrar API CLI built for terminal and AI-agent operability
Documentation
use std::cell::RefCell;
use std::time::Duration;

use ncheap::api::{Client, Transport, TransportFailure};
use ncheap::config::{Profile, Secret};

pub struct FakeTransport {
    pub responses: RefCell<Vec<Result<String, TransportFailure>>>,
    pub requests: RefCell<Vec<Vec<(String, String)>>>,
}

impl FakeTransport {
    pub fn new(responses: Vec<String>) -> Self {
        Self::with_results(responses.into_iter().map(Ok).collect())
    }

    pub fn with_results(responses: Vec<Result<String, TransportFailure>>) -> Self {
        Self {
            responses: RefCell::new(responses),
            requests: RefCell::new(Vec::new()),
        }
    }
}

impl Transport for FakeTransport {
    fn send(
        &self,
        _endpoint: &str,
        params: &[(String, String)],
    ) -> Result<String, TransportFailure> {
        self.requests.borrow_mut().push(params.to_vec());
        let mut responses = self.responses.borrow_mut();
        if responses.is_empty() {
            return Err(TransportFailure::Other("no more fixture responses".into()));
        }
        responses.remove(0)
    }
}

pub fn test_profile() -> Profile {
    Profile {
        name: "test".into(),
        api_user: "testuser".into(),
        api_key: Secret::new("testkey".into()),
        username: "testuser".into(),
        client_ip: "192.0.2.1".into(),
        sandbox: true,
        allow_production_mutations: false,
        max_daily_spend: None,
        endpoint_override: None,
    }
}

/// Client with zero throttle spacing and zero retry backoff so multi-call
/// and retry paths run without real sleeps.
pub fn test_client(transport: FakeTransport) -> Client<FakeTransport> {
    let mut client = Client::new(transport, test_profile());
    client.set_timing(Duration::ZERO, Duration::ZERO);
    client
}

pub fn param<'a>(request: &'a [(String, String)], key: &str) -> Option<&'a str> {
    request
        .iter()
        .find(|(k, _)| k == key)
        .map(|(_, v)| v.as_str())
}