spiresql 0.1.3

SQL interface for SpireDB
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
//! Tests for stream Consumer API.
//!
//! Covers ConsumerBuilder, subscribe, poll, commit, seek, pause/resume, and PEL operations.

use kovan_map::HashMap;
use spiresql::stream::prelude::*;
use std::sync::Arc;
use std::time::Duration;

mod common;
use common::MockServer;

// ============================================================================
// ConsumerBuilder Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_builder_default() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    let config = consumer.config();
    assert_eq!(config.bootstrap_servers, "localhost:6379");
    assert!(config.group_id.is_none());
    assert!(config.auto_commit);
}

#[tokio::test]
async fn test_consumer_builder_custom_servers() {
    let consumer = Consumer::builder()
        .bootstrap_servers("spiredb:6379")
        .build()
        .await
        .unwrap();

    assert_eq!(consumer.config().bootstrap_servers, "spiredb:6379");
}

#[tokio::test]
async fn test_consumer_builder_group_id() {
    let consumer = Consumer::builder()
        .group_id("my-consumer-group")
        .build()
        .await
        .unwrap();

    assert_eq!(
        consumer.config().group_id,
        Some("my-consumer-group".to_string())
    );
}

#[tokio::test]
async fn test_consumer_builder_auto_commit() {
    let consumer = Consumer::builder()
        .auto_commit(false)
        .build()
        .await
        .unwrap();

    assert!(!consumer.config().auto_commit);
}

#[tokio::test]
async fn test_consumer_builder_auto_commit_interval() {
    let consumer = Consumer::builder()
        .auto_commit_interval_ms(1000)
        .build()
        .await
        .unwrap();

    assert_eq!(
        consumer.config().auto_commit_interval,
        Duration::from_millis(1000)
    );
}

#[tokio::test]
async fn test_consumer_builder_auto_offset_reset() {
    let consumer = Consumer::builder()
        .auto_offset_reset(OffsetReset::Earliest)
        .build()
        .await
        .unwrap();

    assert_eq!(consumer.config().auto_offset_reset, OffsetReset::Earliest);
}

#[tokio::test]
async fn test_consumer_builder_isolation_level() {
    let consumer = Consumer::builder()
        .isolation_level(IsolationLevel::ReadCommitted)
        .build()
        .await
        .unwrap();

    assert_eq!(
        consumer.config().isolation_level,
        IsolationLevel::ReadCommitted
    );
}

#[tokio::test]
async fn test_consumer_builder_max_poll_records() {
    let consumer = Consumer::builder()
        .max_poll_records(100)
        .build()
        .await
        .unwrap();

    assert_eq!(consumer.config().max_poll_records, 100);
}

#[tokio::test]
async fn test_consumer_builder_max_poll_interval() {
    let consumer = Consumer::builder()
        .max_poll_interval_ms(60000)
        .build()
        .await
        .unwrap();

    assert_eq!(
        consumer.config().max_poll_interval,
        Duration::from_millis(60000)
    );
}

#[tokio::test]
async fn test_consumer_builder_session_timeout() {
    let consumer = Consumer::builder()
        .session_timeout_ms(30000)
        .build()
        .await
        .unwrap();

    assert_eq!(
        consumer.config().session_timeout,
        Duration::from_millis(30000)
    );
}

#[tokio::test]
async fn test_consumer_builder_fetch_bytes() {
    let consumer = Consumer::builder()
        .fetch_min_bytes(1024)
        .fetch_max_bytes(10 * 1024 * 1024)
        .build()
        .await
        .unwrap();

    assert_eq!(consumer.config().fetch_min_bytes, 1024);
    assert_eq!(consumer.config().fetch_max_bytes, 10 * 1024 * 1024);
}

#[tokio::test]
async fn test_consumer_builder_full_config() {
    let consumer = Consumer::builder()
        .bootstrap_servers("spiredb:6379")
        .group_id("test-group")
        .auto_commit(false)
        .auto_commit_interval_ms(5000)
        .auto_offset_reset(OffsetReset::Earliest)
        .isolation_level(IsolationLevel::ReadCommitted)
        .max_poll_records(500)
        .max_poll_interval_ms(300000)
        .session_timeout_ms(45000)
        .fetch_min_bytes(1)
        .fetch_max_bytes(50 * 1024 * 1024)
        .build()
        .await
        .unwrap();

    let config = consumer.config();
    assert_eq!(config.group_id, Some("test-group".to_string()));
    assert!(!config.auto_commit);
    assert_eq!(config.auto_offset_reset, OffsetReset::Earliest);
}

// ============================================================================
// Subscribe/Unsubscribe Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_subscribe_single() {
    let consumer = Consumer::builder().build().await.unwrap();

    consumer.subscribe(&["orders"]).await.unwrap();

    let subscription = consumer.subscription();
    assert_eq!(subscription.len(), 1);
    assert!(subscription.contains(&"orders".to_string()));
}

#[tokio::test]
async fn test_consumer_subscribe_multiple() {
    let consumer = Consumer::builder().build().await.unwrap();

    consumer
        .subscribe(&["orders", "events", "logs"])
        .await
        .unwrap();

    let subscription = consumer.subscription();
    assert_eq!(subscription.len(), 3);
}

#[tokio::test]
async fn test_consumer_subscribe_replaces_previous() {
    let consumer = Consumer::builder().build().await.unwrap();

    consumer.subscribe(&["topic1"]).await.unwrap();
    consumer.subscribe(&["topic2", "topic3"]).await.unwrap();

    let subscription = consumer.subscription();
    assert_eq!(subscription.len(), 2);
    assert!(!subscription.contains(&"topic1".to_string()));
}

#[tokio::test]
async fn test_consumer_unsubscribe() {
    let consumer = Consumer::builder().build().await.unwrap();

    consumer.subscribe(&["topic"]).await.unwrap();
    assert!(!consumer.subscription().is_empty());

    consumer.unsubscribe().await.unwrap();
    assert!(consumer.subscription().is_empty());
}

#[tokio::test]
async fn test_consumer_unsubscribe_clears_assignment() {
    let consumer = Consumer::builder().build().await.unwrap();

    consumer.subscribe(&["topic"]).await.unwrap();
    consumer.unsubscribe().await.unwrap();

    assert!(consumer.assignment().is_empty());
}

// ============================================================================
// Poll Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_poll_empty() {
    let consumer = Consumer::builder().build().await.unwrap();

    let records = consumer.poll(Duration::from_millis(100)).await.unwrap();
    assert!(records.is_empty());
}

#[tokio::test]
async fn test_consumer_poll_with_timeout() {
    let consumer = Consumer::builder().build().await.unwrap();

    let start = std::time::Instant::now();
    let _ = consumer.poll(Duration::from_millis(50)).await.unwrap();

    // Should return quickly (stub implementation)
    assert!(start.elapsed() < Duration::from_secs(1));
}

// ============================================================================
// Commit Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_commit_without_group() {
    let consumer = Consumer::builder().build().await.unwrap();

    let result = consumer.commit().await;
    assert!(result.is_err());
}

#[tokio::test]
async fn test_consumer_commit_with_group() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .group_id("commit-group")
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    consumer.subscribe(&["topic"]).await.unwrap();
    consumer.commit().await.unwrap();
}

#[tokio::test]
async fn test_consumer_commit_offsets_without_group() {
    let consumer = Consumer::builder().build().await.unwrap();

    let offsets = HashMap::new();
    let result = consumer.commit_offsets(offsets).await;
    assert!(result.is_err());
}

#[tokio::test]
async fn test_consumer_commit_offsets_with_group() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .group_id("group")
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    let offsets = HashMap::new();
    offsets.insert(TopicPartition::new("topic", 0), OffsetAndMetadata::new(100));

    consumer.commit_offsets(offsets).await.unwrap();
}

#[test]
fn test_consumer_commit_async() {
    let rt = tokio::runtime::Runtime::new().unwrap();
    rt.block_on(async {
        let consumer = Consumer::builder()
            .group_id("async-group")
            .build()
            .await
            .unwrap();

        // Should not panic
        consumer.commit_async();
    });
}

#[test]
fn test_consumer_commit_async_with_callback() {
    let rt = tokio::runtime::Runtime::new().unwrap();
    rt.block_on(async {
        let consumer = Consumer::builder()
            .group_id("callback-group")
            .build()
            .await
            .unwrap();

        let (tx, rx) = std::sync::mpsc::channel();

        let offsets = HashMap::new();
        consumer.commit_async_with_callback(offsets, move |result| {
            tx.send(result.is_ok()).unwrap();
        });

        assert!(rx.recv().unwrap());
    });
}

// ============================================================================
// Seek Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_seek() {
    let consumer = Consumer::builder().build().await.unwrap();

    let tp = TopicPartition::new("topic", 0);
    consumer.seek(tp.clone(), 100);

    assert_eq!(consumer.position(&tp), Some(100));
}

#[tokio::test]
async fn test_consumer_seek_updates_position() {
    let consumer = Consumer::builder().build().await.unwrap();

    let tp = TopicPartition::new("topic", 0);
    consumer.seek(tp.clone(), 50);
    consumer.seek(tp.clone(), 100);

    assert_eq!(consumer.position(&tp), Some(100));
}

#[tokio::test]
async fn test_consumer_seek_to_beginning() {
    let consumer = Consumer::builder().build().await.unwrap();

    let partitions = vec![
        TopicPartition::new("topic", 0),
        TopicPartition::new("topic", 1),
    ];

    consumer.seek_to_beginning(&partitions);

    assert_eq!(consumer.position(&partitions[0]), Some(0));
    assert_eq!(consumer.position(&partitions[1]), Some(0));
}

#[tokio::test]
async fn test_consumer_seek_to_end() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    let partitions = vec![TopicPartition::new("topic", 0)];
    consumer.seek_to_end(&partitions);

    // MockServer.xlen returns 0 for empty stream, so position is 0
    assert_eq!(consumer.position(&partitions[0]), Some(0));
}

#[tokio::test]
async fn test_consumer_position_unknown() {
    let consumer = Consumer::builder().build().await.unwrap();

    let tp = TopicPartition::new("unknown", 0);
    assert!(consumer.position(&tp).is_none());
}

// ============================================================================
// Committed Offsets Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_committed_empty() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .group_id("test-group")
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    let partitions = vec![TopicPartition::new("topic", 0)];
    let committed = consumer.committed(&partitions).await.unwrap();

    assert!(committed.is_empty());
}

// ============================================================================
// Pause/Resume Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_pause() {
    let consumer = Consumer::builder().build().await.unwrap();

    let partitions = vec![
        TopicPartition::new("topic", 0),
        TopicPartition::new("topic", 1),
    ];

    consumer.pause(&partitions);

    let paused = consumer.paused();
    assert_eq!(paused.len(), 2);
}

#[tokio::test]
async fn test_consumer_pause_idempotent() {
    let consumer = Consumer::builder().build().await.unwrap();

    let tp = TopicPartition::new("topic", 0);
    consumer.pause(std::slice::from_ref(&tp));
    consumer.pause(std::slice::from_ref(&tp));

    assert_eq!(consumer.paused().len(), 1);
}

#[tokio::test]
async fn test_consumer_resume() {
    let consumer = Consumer::builder().build().await.unwrap();

    let partitions = vec![
        TopicPartition::new("topic", 0),
        TopicPartition::new("topic", 1),
    ];

    consumer.pause(&partitions);
    consumer.resume(&partitions[..1]);

    let paused = consumer.paused();
    assert_eq!(paused.len(), 1);
    assert_eq!(paused[0], partitions[1]);
}

#[tokio::test]
async fn test_consumer_resume_all() {
    let consumer = Consumer::builder().build().await.unwrap();

    let partitions = vec![TopicPartition::new("topic", 0)];

    consumer.pause(&partitions);
    consumer.resume(&partitions);

    assert!(consumer.paused().is_empty());
}

// ============================================================================
// Assignment and Subscription Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_assignment_initially_empty() {
    let consumer = Consumer::builder().build().await.unwrap();
    assert!(consumer.assignment().is_empty());
}

#[tokio::test]
async fn test_consumer_subscription_initially_empty() {
    let consumer = Consumer::builder().build().await.unwrap();
    assert!(consumer.subscription().is_empty());
}

// ============================================================================
// Offsets for Commit Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_offsets_for_commit_empty() {
    let consumer = Consumer::builder().build().await.unwrap();

    let offsets = consumer.offsets_for_commit();
    assert!(offsets.is_empty());
}

#[tokio::test]
async fn test_consumer_offsets_for_commit_with_positions() {
    let consumer = Consumer::builder().build().await.unwrap();

    consumer.seek(TopicPartition::new("topic", 0), 100);
    consumer.seek(TopicPartition::new("topic", 1), 200);

    let offsets = consumer.offsets_for_commit();
    assert_eq!(offsets.len(), 2);
}

// ============================================================================
// Group Metadata Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_group_metadata_without_group() {
    let consumer = Consumer::builder().build().await.unwrap();

    let metadata = consumer.group_metadata();
    assert!(metadata.group_id.is_empty());
}

#[tokio::test]
async fn test_consumer_group_metadata_with_group() {
    let consumer = Consumer::builder()
        .group_id("test-group")
        .build()
        .await
        .unwrap();

    let metadata = consumer.group_metadata();
    assert_eq!(metadata.group_id, "test-group");
}

// ============================================================================
// PEL Operations Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_pending() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .group_id("pel-group")
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    let info = consumer
        .pending("topic", PendingOptions::default())
        .await
        .unwrap();

    assert_eq!(info.count, 0);
    assert!(info.min_id.is_none());
    assert!(info.max_id.is_none());
}

#[tokio::test]
async fn test_consumer_pending_with_options() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .group_id("pel-group")
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    let opts = PendingOptions {
        start: Some("-".to_string()),
        end: Some("+".to_string()),
        count: Some(100),
        consumer: Some("consumer-1".to_string()),
        min_idle: Some(60000),
    };

    let info = consumer.pending("topic", opts).await.unwrap();
    assert_eq!(info.count, 0);
}

#[tokio::test]
async fn test_consumer_claim() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .group_id("claim-group")
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    let records = consumer
        .claim(
            "topic",
            Duration::from_secs(60),
            &["1-0", "2-0"],
            ClaimOptions::default(),
        )
        .await
        .unwrap();

    assert!(records.is_empty());
}

#[tokio::test]
async fn test_consumer_claim_with_options() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .group_id("claim-group")
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    let opts = ClaimOptions {
        idle: Some(1000),
        force: true,
        just_id: false,
        time: None,
        retry_count: None,
    };

    let records = consumer
        .claim("topic", Duration::from_secs(60), &["1-0"], opts)
        .await
        .unwrap();

    assert!(records.is_empty());
}

#[tokio::test]
async fn test_consumer_auto_claim() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .group_id("autoclaim-group")
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    let result = consumer
        .auto_claim("topic", Duration::from_secs(60), "0-0", 10)
        .await
        .unwrap();

    assert_eq!(result.next_id, "0-0");
    assert!(result.records.is_empty());
    assert!(result.deleted_ids.is_empty());
}

// ============================================================================
// Close Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_close() {
    let consumer = Consumer::builder().build().await.unwrap();

    consumer.subscribe(&["topic"]).await.unwrap();
    consumer.close().await.unwrap();

    assert!(consumer.subscription().is_empty());
}

#[tokio::test]
async fn test_consumer_close_already_unsubscribed() {
    let consumer = Consumer::builder().build().await.unwrap();
    consumer.close().await.unwrap();
}

// ============================================================================
// CDC Builder Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_cdc_builder() {
    let consumer = Consumer::builder().build().await.unwrap();

    let cdc = consumer.cdc();

    // Can build from consumer
    let stream = cdc.tables(&["users"]).build().await.unwrap();
    assert_eq!(stream.tables(), &["users".to_string()]);
}

// ============================================================================
// Interceptor Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_builder_with_interceptor() {
    use std::sync::Arc;

    let metrics = Arc::new(MetricsInterceptor::new());
    let consumer = Consumer::builder()
        .interceptor(metrics.clone())
        .build()
        .await
        .unwrap();

    // Subscribe and poll to trigger interceptor
    consumer.subscribe(&["topic"]).await.unwrap();
    let _ = consumer.poll(std::time::Duration::from_millis(10)).await;

    // Interceptor should have been registered (even if no records)
    assert_eq!(metrics.records_received(), 0);
}

#[tokio::test]
async fn test_consumer_builder_multiple_interceptors() {
    use std::sync::Arc;

    let metrics = Arc::new(MetricsInterceptor::new());
    let logging = Arc::new(LoggingInterceptor::new());

    let consumer = Consumer::builder()
        .interceptor(metrics)
        .interceptor(logging)
        .build()
        .await
        .unwrap();

    assert!(consumer.config().bootstrap_servers.contains("localhost"));
}

// ============================================================================
// ACK Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_ack_without_group() {
    let consumer = Consumer::builder().build().await.unwrap();

    let result = consumer.ack("topic", &["1-0", "2-0"]).await;
    assert!(result.is_err()); // Requires group_id
}

#[tokio::test]
async fn test_consumer_ack_with_group() {
    let mock = Arc::new(MockServer::new());
    let consumer = Consumer::builder()
        .group_id("ack-group")
        .client(mock as Arc<dyn StreamClient>)
        .build()
        .await
        .unwrap();

    let acked = consumer.ack("topic", &["1-0", "2-0"]).await.unwrap();
    assert_eq!(acked, 0); // No pending messages in mock
}

// ============================================================================
// Metrics Tests
// ============================================================================

#[tokio::test]
async fn test_consumer_records_received() {
    let consumer = Consumer::builder().build().await.unwrap();

    assert_eq!(consumer.records_received(), 0);
    assert_eq!(consumer.bytes_received(), 0);
}

// ============================================================================
// Edge Cases
// ============================================================================

#[tokio::test]
async fn test_consumer_empty_subscribe() {
    let consumer = Consumer::builder().build().await.unwrap();

    consumer.subscribe(&[]).await.unwrap();
    assert!(consumer.subscription().is_empty());
}

#[tokio::test]
async fn test_consumer_unicode_topic() {
    let consumer = Consumer::builder().build().await.unwrap();

    consumer.subscribe(&["日本語トピック"]).await.unwrap();
    assert!(
        consumer
            .subscription()
            .contains(&"日本語トピック".to_string())
    );
}