tarzi 0.2.3

Rust-native lite search for AI applications
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
#![allow(unsafe_op_in_unsafe_fn)]
#![allow(non_local_definitions)]
use crate::config::Config;
use crate::{Converter, Format, SearchEngine, WebFetcher};
use pyo3::prelude::*;
use pyo3::types::PyType;
use std::future::Future;
use std::str::FromStr;
use std::sync::OnceLock;
use toml;

/// Python module for tarzi - Rust-native lite search for AI applications
#[pymodule]
fn tarzi(_py: Python, m: &Bound<'_, PyModule>) -> PyResult<()> {
    m.add_class::<PyConverter>()?;
    m.add_class::<PyWebFetcher>()?;
    m.add_class::<PySearchEngine>()?;
    m.add_class::<PySearchResult>()?;
    m.add_class::<PyConfig>()?;
    Ok(())
}

/// Tokio runtime shared by every Python entry point.
///
/// A per-call runtime pays thread-pool setup on every request and prevents the
/// HTTP client from reusing pooled connections between calls.
fn shared_runtime() -> PyResult<&'static tokio::runtime::Runtime> {
    static RUNTIME: OnceLock<tokio::runtime::Runtime> = OnceLock::new();

    if let Some(runtime) = RUNTIME.get() {
        return Ok(runtime);
    }

    let runtime = tokio::runtime::Builder::new_multi_thread()
        .enable_all()
        .build()
        .map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyRuntimeError, _>(format!(
                "Failed to create async runtime: {e}"
            ))
        })?;
    Ok(RUNTIME.get_or_init(|| runtime))
}

/// Drive `future` to completion on the shared runtime with the GIL released.
///
/// Every method below blocks on network or WebDriver I/O for seconds at a time.
/// Keeping the GIL for that long freezes *all* Python threads in the embedding
/// process — including event loops and watchdogs — so blocking sections must
/// always run through here.
fn block_on_without_gil<F>(py: Python<'_>, future: F) -> PyResult<F::Output>
where
    F: Future + Send,
    F::Output: Send,
{
    let runtime = shared_runtime()?;
    Ok(py.allow_threads(|| runtime.block_on(future)))
}

/// HTML/text content converter
#[pyclass(name = "Converter")]
#[derive(Clone)]
pub struct PyConverter {
    inner: Converter,
}

#[allow(non_local_definitions)]
#[pymethods]
impl PyConverter {
    /// Create a new converter with default settings
    ///
    /// Returns:
    ///     Converter: A new converter instance
    #[new]
    fn new() -> Self {
        Self {
            inner: Converter::new(),
        }
    }

    /// Create a converter from configuration
    ///
    /// Args:
    ///     config (Config): Configuration object
    ///     
    /// Returns:
    ///     Converter: A new converter instance
    #[classmethod]
    fn from_config(_cls: &Bound<'_, PyType>, _config: &PyConfig) -> PyResult<Self> {
        Ok(Self {
            inner: Converter::new(),
        })
    }

    /// Convert HTML/text content to the specified format
    ///
    /// Args:
    ///     input (str): Input HTML or text content
    ///     format (str): Output format ("html", "markdown", "json", "yaml")
    ///     
    /// Returns:
    ///     str: Converted content
    ///     
    /// Raises:
    ///     ValueError: If format is invalid
    ///     RuntimeError: If conversion fails
    fn convert(&self, py: Python<'_>, input: &str, format: &str) -> PyResult<String> {
        let parsed_format = Format::from_str(format).map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyValueError, _>(format!(
                "Invalid format '{format}': {e}"
            ))
        })?;

        let input = input.to_owned();
        let converter = &self.inner;
        block_on_without_gil(
            py,
            async move { converter.convert(&input, parsed_format).await },
        )?
        .map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyRuntimeError, _>(format!("Conversion failed: {e}"))
        })
    }

    /// Convert content using custom configuration
    ///
    /// Args:
    ///     input (str): Input HTML or text content
    ///     config (Config): Configuration object
    ///     
    /// Returns:
    ///     str: Converted content
    ///     
    /// Raises:
    ///     RuntimeError: If conversion fails
    fn convert_with_config(
        &self,
        py: Python<'_>,
        input: &str,
        config: &PyConfig,
    ) -> PyResult<String> {
        let input = input.to_owned();
        let config = config.inner.clone();
        let converter = &self.inner;
        block_on_without_gil(py, async move {
            converter.convert_with_config(&input, &config).await
        })?
        .map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyRuntimeError, _>(format!(
                "Conversion with config failed: {e}"
            ))
        })
    }

    fn __repr__(&self) -> String {
        "Converter()".to_string()
    }

    fn __str__(&self) -> String {
        "Tarzi HTML/text content converter".to_string()
    }
}

/// Web page fetcher with multiple modes
#[pyclass(name = "WebFetcher")]
pub struct PyWebFetcher {
    inner: WebFetcher,
}

#[allow(non_local_definitions)]
#[pymethods]
impl PyWebFetcher {
    /// Create a new web fetcher with default settings
    ///
    /// Returns:
    ///     WebFetcher: A new fetcher instance
    #[new]
    fn new() -> Self {
        Self {
            inner: WebFetcher::new(),
        }
    }

    /// Create a web fetcher from configuration
    ///
    /// Args:
    ///     config (Config): Configuration object
    ///     
    /// Returns:
    ///     WebFetcher: A new fetcher instance
    #[classmethod]
    fn from_config(_cls: &Bound<'_, PyType>, config: &PyConfig) -> PyResult<Self> {
        Ok(Self {
            inner: WebFetcher::from_config(&config.inner),
        })
    }

    /// Fetch a web page and convert to specified format.
    ///
    /// Access cascade: plain HTTP → browser (when enabled).
    ///
    /// Args:
    ///     url (str): URL to fetch
    ///     format (str): Output format ("html", "markdown", "json", "yaml")
    ///     
    /// Returns:
    ///     str: Fetched and converted content
    ///     
    /// Raises:
    ///     ValueError: If format is invalid
    ///     RuntimeError: If fetching fails
    fn fetch(&mut self, py: Python<'_>, url: &str, format: &str) -> PyResult<String> {
        let parsed_format = Format::from_str(format).map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyValueError, _>(format!(
                "Invalid format '{format}': {e}"
            ))
        })?;

        let owned_url = url.to_owned();
        let fetcher = &mut self.inner;
        block_on_without_gil(
            py,
            async move { fetcher.fetch(&owned_url, parsed_format).await },
        )?
        .map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyRuntimeError, _>(format!(
                "Failed to fetch '{url}': {e}"
            ))
        })
    }

    /// Fetch raw HTML content from a web page.
    ///
    /// Access cascade: plain HTTP → browser (when enabled).
    ///
    /// Args:
    ///     url (str): URL to fetch
    ///     
    /// Returns:
    ///     str: Raw HTML content
    ///     
    /// Raises:
    ///     RuntimeError: If fetching fails
    fn fetch_raw(&mut self, py: Python<'_>, url: &str) -> PyResult<String> {
        let owned_url = url.to_owned();
        let fetcher = &mut self.inner;
        block_on_without_gil(py, async move { fetcher.fetch_raw(&owned_url).await })?.map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyRuntimeError, _>(format!(
                "Failed to fetch raw content from '{url}': {e}"
            ))
        })
    }

    /// Fetch a web page through a proxy.
    ///
    /// Access cascade: plain HTTP via proxy → browser via proxy (when enabled).
    ///
    /// Args:
    ///     url (str): URL to fetch
    ///     proxy (str): Proxy URL (e.g., "http://proxy:port")
    ///     format (str): Output format ("html", "markdown", "json", "yaml")
    ///     
    /// Returns:
    ///     str: Fetched and converted content
    ///     
    /// Raises:
    ///     ValueError: If format is invalid
    ///     RuntimeError: If fetching fails
    fn fetch_with_proxy(
        &mut self,
        py: Python<'_>,
        url: &str,
        proxy: &str,
        format: &str,
    ) -> PyResult<String> {
        let parsed_format = Format::from_str(format).map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyValueError, _>(format!(
                "Invalid format '{format}': {e}"
            ))
        })?;

        let owned_url = url.to_owned();
        let owned_proxy = proxy.to_owned();
        let fetcher = &mut self.inner;
        block_on_without_gil(py, async move {
            fetcher
                .fetch_with_proxy(&owned_url, &owned_proxy, parsed_format)
                .await
        })?
        .map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyRuntimeError, _>(format!(
                "Failed to fetch '{url}' via proxy '{proxy}': {e}"
            ))
        })
    }

    fn __repr__(&self) -> String {
        "WebFetcher()".to_string()
    }

    fn __str__(&self) -> String {
        "Tarzi web page fetcher".to_string()
    }
}

/// Search engine with multi-engine failover and access cascade
#[pyclass(name = "SearchEngine")]
pub struct PySearchEngine {
    inner: SearchEngine,
}

#[allow(non_local_definitions)]
#[pymethods]
impl PySearchEngine {
    /// Create a new search engine with default settings
    ///
    /// Returns:
    ///     SearchEngine: A new search engine instance
    #[new]
    fn new() -> Self {
        // Use configuration loading with precedence to ensure proper defaults
        let config = crate::config::Config::load().unwrap_or_default();
        Self {
            inner: SearchEngine::from_config(&config),
        }
    }

    /// Create a search engine from configuration
    ///
    /// Args:
    ///     config (Config): Configuration object
    ///     
    /// Returns:
    ///     SearchEngine: A new search engine instance
    #[classmethod]
    fn from_config(_cls: &Bound<'_, PyType>, config: &PyConfig) -> PyResult<Self> {
        Ok(Self {
            inner: SearchEngine::from_config(&config.inner),
        })
    }

    /// Search for web pages
    ///
    /// Args:
    ///     query (str): Search query
    ///     limit (int): Maximum number of results
    ///     
    /// Returns:
    ///     List[SearchResult]: List of search results
    ///     
    /// Raises:
    ///     RuntimeError: If search fails
    fn search(
        &mut self,
        py: Python<'_>,
        query: &str,
        limit: usize,
    ) -> PyResult<Vec<PySearchResult>> {
        let owned_query = query.to_owned();
        let engine = &mut self.inner;
        block_on_without_gil(py, async move { engine.search(&owned_query, limit).await })?
            .map(|results| {
                results
                    .into_iter()
                    .map(|r| PySearchResult {
                        title: r.title,
                        url: r.url,
                        snippet: r.snippet,
                        rank: r.rank,
                    })
                    .collect()
            })
            .map_err(|e| {
                PyErr::new::<pyo3::exceptions::PyRuntimeError, _>(format!(
                    "Search failed for query '{query}': {e}"
                ))
            })
    }

    /// Search for web pages and fetch their content.
    ///
    /// Page content uses the fetcher access cascade (plain HTTP → browser).
    ///
    /// Args:
    ///     query (str): Search query
    ///     limit (int): Maximum number of results
    ///     format (str): Output format ("html", "markdown", "json", "yaml")
    ///     
    /// Returns:
    ///     List[Tuple[SearchResult, str]]: List of (result, content) pairs
    ///     
    /// Raises:
    ///     ValueError: If format is invalid
    ///     RuntimeError: If search or fetch fails
    fn search_with_content(
        &mut self,
        py: Python<'_>,
        query: &str,
        limit: usize,
        format: &str,
    ) -> PyResult<Vec<(PySearchResult, String)>> {
        let parsed_format = Format::from_str(format).map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyValueError, _>(format!(
                "Invalid format '{format}': {e}"
            ))
        })?;

        let owned_query = query.to_owned();
        let engine = &mut self.inner;
        block_on_without_gil(py, async move {
            engine
                .search_with_content(&owned_query, limit, parsed_format)
                .await
        })?
        .map(|results| {
            results
                .into_iter()
                .map(|(r, content)| {
                    (
                        PySearchResult {
                            title: r.title,
                            url: r.url,
                            snippet: r.snippet,
                            rank: r.rank,
                        },
                        content,
                    )
                })
                .collect()
        })
        .map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyRuntimeError, _>(format!(
                "Search and fetch failed for query '{query}': {e}"
            ))
        })
    }

    /// Shutdown browser and driver resources
    ///
    /// This method ensures proper cleanup of browser instances and WebDriver processes.
    /// It should be called when the search engine is no longer needed to free up system resources.
    ///
    /// Returns:
    ///     None
    ///     
    /// Raises:
    ///     RuntimeError: If shutdown fails
    fn shutdown(&mut self, py: Python<'_>) -> PyResult<()> {
        let engine = &mut self.inner;
        block_on_without_gil(py, async move { engine.shutdown().await })
    }

    fn __repr__(&self) -> String {
        "SearchEngine()".to_string()
    }

    fn __str__(&self) -> String {
        "Tarzi search engine".to_string()
    }
}

/// Search result with metadata
#[pyclass(name = "SearchResult")]
#[derive(Clone, Debug)]
pub struct PySearchResult {
    /// Page title
    #[pyo3(get)]
    pub title: String,
    /// Page URL
    #[pyo3(get)]
    pub url: String,
    /// Page snippet/description
    #[pyo3(get)]
    pub snippet: String,
    /// Search result rank (1-based)
    #[pyo3(get)]
    pub rank: usize,
}

#[pymethods]
impl PySearchResult {
    fn __repr__(&self) -> String {
        format!(
            "SearchResult(title='{}', url='{}', snippet='{}', rank={})",
            self.title, self.url, self.snippet, self.rank
        )
    }

    fn __str__(&self) -> String {
        format!(
            "[{}] {}\n{}\n{}",
            self.rank, self.title, self.url, self.snippet
        )
    }
}

/// Configuration management
#[pyclass(name = "Config")]
#[derive(Clone)]
pub struct PyConfig {
    inner: Config,
}

#[allow(non_local_definitions)]
#[pymethods]
impl PyConfig {
    /// Create a new configuration with default values (no env overlay)
    ///
    /// Returns:
    ///     Config: A new configuration instance
    #[new]
    fn new() -> Self {
        Self {
            inner: Config::new(),
        }
    }

    /// Load configuration from environment variables and defaults
    ///
    /// Returns:
    ///     Config: Configuration from env (`TARZI_*`) over defaults
    ///
    /// Raises:
    ///     RuntimeError: If an environment variable has an invalid value
    #[classmethod]
    fn load(_cls: &Bound<'_, PyType>) -> PyResult<Self> {
        let config = Config::load().map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyRuntimeError, _>(format!(
                "Failed to load config from environment: {e}"
            ))
        })?;
        Ok(Self { inner: config })
    }

    /// Create configuration from TOML string (programmatic)
    ///
    /// Args:
    ///     content (str): TOML configuration content
    ///     
    /// Returns:
    ///     Config: Configuration parsed from string
    ///     
    /// Raises:
    ///     RuntimeError: If content cannot be parsed
    #[classmethod]
    fn from_str(_cls: &Bound<'_, PyType>, content: &str) -> PyResult<Self> {
        let config: Config = toml::from_str(content).map_err(|e| {
            PyErr::new::<pyo3::exceptions::PyRuntimeError, _>(format!(
                "Failed to parse config: {e}"
            ))
        })?;
        Ok(Self { inner: config })
    }

    /// Override search engine (single or comma-separated failover list)
    fn set_search_engine(&mut self, engine: String) {
        self.inner.search.engine = engine;
    }

    /// Override whether browser may be used as a search access fallback
    fn set_search_browser(&mut self, browser: bool) {
        self.inner.search.browser = browser;
    }

    /// Override whether browser may be used as a fetch access fallback
    fn set_fetcher_browser(&mut self, browser: bool) {
        self.inner.fetcher.browser = browser;
    }

    /// Override search result limit
    fn set_search_limit(&mut self, limit: usize) {
        self.inner.search.limit = limit;
    }

    fn __repr__(&self) -> String {
        "Config()".to_string()
    }

    fn __str__(&self) -> String {
        "Tarzi configuration".to_string()
    }
}

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

    fn setup_python() {
        pyo3::prepare_freethreaded_python();
    }

    #[test]
    fn test_py_converter_new() {
        let converter = PyConverter::new();
        assert_eq!(converter.inner, Converter::new());
    }

    #[test]
    fn test_py_converter_convert_html() {
        setup_python();
        let converter = PyConverter::new();
        let html = "<h1>Test</h1>";
        let result = Python::with_gil(|py| converter.convert(py, html, "html")).unwrap();
        assert_eq!(result, html);
    }

    #[test]
    fn test_py_converter_convert_markdown() {
        setup_python();
        let converter = PyConverter::new();
        let html = "<h1>Test</h1>";
        let result = Python::with_gil(|py| converter.convert(py, html, "markdown")).unwrap();
        // The HTML to markdown conversion produces "# Test\n"
        assert!(result.contains("# Test") || result.contains("Test"));
    }

    #[test]
    fn test_py_converter_convert_json() {
        setup_python();
        let converter = PyConverter::new();
        let html = "<h1>Test</h1><p>Content</p>";
        let result = Python::with_gil(|py| converter.convert(py, html, "json")).unwrap();
        assert!(result.contains("Test"));
        assert!(result.contains("Content"));
    }

    #[test]
    fn test_py_converter_convert_yaml() {
        setup_python();
        let converter = PyConverter::new();
        let html = "<h1>Test</h1><p>Content</p>";
        let result = Python::with_gil(|py| converter.convert(py, html, "yaml")).unwrap();
        assert!(result.contains("Test"));
        assert!(result.contains("Content"));
    }

    #[test]
    fn test_py_converter_invalid_format() {
        setup_python();
        let converter = PyConverter::new();
        let html = "<h1>Test</h1>";
        let result = Python::with_gil(|py| converter.convert(py, html, "invalid"));
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("Invalid format"));
    }

    #[test]
    fn test_shared_runtime_is_reused() {
        let first = shared_runtime().expect("runtime");
        let second = shared_runtime().expect("runtime");
        assert!(std::ptr::eq(first, second), "each call built a new runtime");
    }

    #[test]
    fn test_py_webfetcher_new() {
        let _fetcher = PyWebFetcher::new();
        // Just test that it can be created without panicking
    }

    #[test]
    fn test_py_webfetcher_from_config() {
        let config = PyConfig::new();
        // Just test that it can be created without panicking
        let _fetcher = PyWebFetcher {
            inner: WebFetcher::from_config(&config.inner),
        };
    }

    #[test]
    fn test_py_searchengine_new() {
        let _engine = PySearchEngine::new();
        // Just test that it can be created without panicking
    }

    #[test]
    fn test_py_searchengine_from_config() {
        let config = PyConfig::new();
        // Just test that it can be created without panicking
        let _engine = PySearchEngine {
            inner: SearchEngine::from_config(&config.inner),
        };
    }

    #[test]
    fn test_py_search_result() {
        let result = PySearchResult {
            title: "Test Title".to_string(),
            url: "https://example.com".to_string(),
            snippet: "Test snippet".to_string(),
            rank: 1,
        };
        assert_eq!(result.title, "Test Title");
        assert_eq!(result.url, "https://example.com");
        assert_eq!(result.snippet, "Test snippet");
        assert_eq!(result.rank, 1);
    }

    #[test]
    fn test_py_search_result_repr() {
        let result = PySearchResult {
            title: "Test Title".to_string(),
            url: "https://example.com".to_string(),
            snippet: "Test snippet".to_string(),
            rank: 1,
        };
        let repr = result.__repr__();
        assert!(repr.contains("Test Title"));
        assert!(repr.contains("https://example.com"));
        assert!(repr.contains("Test snippet"));
        assert!(repr.contains("1"));
    }

    #[test]
    fn test_py_search_result_str() {
        let result = PySearchResult {
            title: "Test Title".to_string(),
            url: "https://example.com".to_string(),
            snippet: "Test snippet".to_string(),
            rank: 1,
        };
        let str_repr = result.__str__();
        assert!(str_repr.contains("[1]"));
        assert!(str_repr.contains("Test Title"));
        assert!(str_repr.contains("https://example.com"));
        assert!(str_repr.contains("Test snippet"));
    }

    #[test]
    fn test_py_search_result_clone() {
        let result = PySearchResult {
            title: "Test Title".to_string(),
            url: "https://example.com".to_string(),
            snippet: "Test snippet".to_string(),
            rank: 1,
        };
        let cloned = result.clone();
        assert_eq!(result.title, cloned.title);
        assert_eq!(result.url, cloned.url);
        assert_eq!(result.snippet, cloned.snippet);
        assert_eq!(result.rank, cloned.rank);
    }

    #[test]
    fn test_py_config_new() {
        let _config = PyConfig::new();
        // Just test that it can be created without panicking
    }

    #[test]
    fn test_py_config_from_str() {
        let config_str = r#"
[fetcher]
timeout = 30
user_agent = "Test Agent"
format = "html"
proxy = ""

[search]
engine = "bing"
"#;
        let config: Config = toml::from_str(config_str).unwrap();
        assert_eq!(config.fetcher.user_agent, "Test Agent");
        assert_eq!(config.fetcher.timeout, 30);
    }

    #[test]
    fn test_py_config_from_str_invalid() {
        let config_str = "invalid toml content";
        let result = toml::from_str::<Config>(config_str);
        assert!(result.is_err());
    }
}