|
|
|
@@ -1,5 +1,86 @@
|
|
|
|
|
use serde_derive::{Deserialize, Serialize};
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq)]
|
|
|
|
|
pub struct BatchInfo {
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub filename: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub description: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub author: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub comment: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub url: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub date: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub processed_by: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub redacted_by: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub copyright: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub theme: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub kind: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub source: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub rating: String,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq)]
|
|
|
|
|
pub struct Question {
|
|
|
|
|
#[serde(default, skip_serializing_if = "u32_is_zero")]
|
|
|
|
|
pub num: u32,
|
|
|
|
|
pub id: String,
|
|
|
|
|
|
|
|
|
|
pub description: String,
|
|
|
|
|
pub answer: String,
|
|
|
|
|
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub author: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub comment: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub comment1: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub tour: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub url: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub date: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub processed_by: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub redacted_by: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub copyright: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub theme: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub kind: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub source: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "String::is_empty")]
|
|
|
|
|
pub rating: String,
|
|
|
|
|
#[serde(default, skip_serializing_if = "BatchInfo::is_default")]
|
|
|
|
|
pub batch_info: BatchInfo,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn u32_is_zero(num: &u32) -> bool {
|
|
|
|
|
*num == 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl BatchInfo {
|
|
|
|
|
pub fn is_default(&self) -> bool {
|
|
|
|
|
*self == BatchInfo::default()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub mod binary {
|
|
|
|
|
use serde_derive::{Deserialize, Serialize};
|
|
|
|
|
#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq)]
|
|
|
|
|
pub struct BatchInfo {
|
|
|
|
|
#[serde(default)]
|
|
|
|
@@ -67,9 +148,118 @@ pub struct Question {
|
|
|
|
|
pub batch_info: BatchInfo,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod test {
|
|
|
|
|
use super::*;
|
|
|
|
|
use insta::assert_yaml_snapshot;
|
|
|
|
|
use serde_json::json;
|
|
|
|
|
pub fn sample_question() -> Question {
|
|
|
|
|
Question {
|
|
|
|
|
id: "Вопрос 1".into(),
|
|
|
|
|
description: "Сколько будет (2 * 2 * 2 + 2) * 2 * 2 + 2".into(),
|
|
|
|
|
answer: "42".into(),
|
|
|
|
|
batch_info: BatchInfo {
|
|
|
|
|
description: "Тестовый".into(),
|
|
|
|
|
date: "00-000-2000".into(),
|
|
|
|
|
..Default::default()
|
|
|
|
|
},
|
|
|
|
|
..Default::default()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_question_ser() {
|
|
|
|
|
assert_yaml_snapshot!(sample_question(), @r#"
|
|
|
|
|
---
|
|
|
|
|
num: 0
|
|
|
|
|
id: Вопрос 1
|
|
|
|
|
description: Сколько будет (2 * 2 * 2 + 2) * 2 * 2 + 2
|
|
|
|
|
answer: "42"
|
|
|
|
|
author: ""
|
|
|
|
|
comment: ""
|
|
|
|
|
comment1: ""
|
|
|
|
|
tour: ""
|
|
|
|
|
url: ""
|
|
|
|
|
date: ""
|
|
|
|
|
processed_by: ""
|
|
|
|
|
redacted_by: ""
|
|
|
|
|
copyright: ""
|
|
|
|
|
theme: ""
|
|
|
|
|
kind: ""
|
|
|
|
|
source: ""
|
|
|
|
|
rating: ""
|
|
|
|
|
batch_info:
|
|
|
|
|
filename: ""
|
|
|
|
|
description: Тестовый
|
|
|
|
|
author: ""
|
|
|
|
|
comment: ""
|
|
|
|
|
url: ""
|
|
|
|
|
date: 00-000-2000
|
|
|
|
|
processed_by: ""
|
|
|
|
|
redacted_by: ""
|
|
|
|
|
copyright: ""
|
|
|
|
|
theme: ""
|
|
|
|
|
kind: ""
|
|
|
|
|
source: ""
|
|
|
|
|
rating: ""
|
|
|
|
|
|
|
|
|
|
"#);
|
|
|
|
|
}
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_question_de() {
|
|
|
|
|
let question_from_json: Result<Question, _> = serde_json::from_value(json!({
|
|
|
|
|
"id": "Вопрос 1",
|
|
|
|
|
"description": "Сколько будет (2 * 2 * 2 + 2) * 2 * 2 + 2",
|
|
|
|
|
"answer": "42",
|
|
|
|
|
"batch_info": {
|
|
|
|
|
"description": "Тестовый",
|
|
|
|
|
"date": "00-000-2000"
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
assert!(question_from_json.is_ok());
|
|
|
|
|
|
|
|
|
|
assert_yaml_snapshot!(question_from_json.unwrap(), @r#"
|
|
|
|
|
---
|
|
|
|
|
num: 0
|
|
|
|
|
id: Вопрос 1
|
|
|
|
|
description: Сколько будет (2 * 2 * 2 + 2) * 2 * 2 + 2
|
|
|
|
|
answer: "42"
|
|
|
|
|
author: ""
|
|
|
|
|
comment: ""
|
|
|
|
|
comment1: ""
|
|
|
|
|
tour: ""
|
|
|
|
|
url: ""
|
|
|
|
|
date: ""
|
|
|
|
|
processed_by: ""
|
|
|
|
|
redacted_by: ""
|
|
|
|
|
copyright: ""
|
|
|
|
|
theme: ""
|
|
|
|
|
kind: ""
|
|
|
|
|
source: ""
|
|
|
|
|
rating: ""
|
|
|
|
|
batch_info:
|
|
|
|
|
filename: ""
|
|
|
|
|
description: Тестовый
|
|
|
|
|
author: ""
|
|
|
|
|
comment: ""
|
|
|
|
|
url: ""
|
|
|
|
|
date: 00-000-2000
|
|
|
|
|
processed_by: ""
|
|
|
|
|
redacted_by: ""
|
|
|
|
|
copyright: ""
|
|
|
|
|
theme: ""
|
|
|
|
|
kind: ""
|
|
|
|
|
source: ""
|
|
|
|
|
rating: ""
|
|
|
|
|
|
|
|
|
|
"#);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(any(feature = "convert", feature = "convert_async"))]
|
|
|
|
|
pub mod convert_common {
|
|
|
|
|
use super::{BatchInfo, Question};
|
|
|
|
|
use super::binary::{BatchInfo, Question};
|
|
|
|
|
use crate::source::{SourceQuestion, SourceQuestionsBatch};
|
|
|
|
|
|
|
|
|
|
macro_rules! make {
|
|
|
|
@@ -117,7 +307,7 @@ pub mod convert_common {
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "convert")]
|
|
|
|
|
pub mod convert {
|
|
|
|
|
use super::Question;
|
|
|
|
|
use super::binary::Question;
|
|
|
|
|
use crate::source::SourceQuestionsBatch;
|
|
|
|
|
|
|
|
|
|
pub trait QuestionsConverter {
|
|
|
|
@@ -234,7 +424,7 @@ pub mod convert_async {
|
|
|
|
|
use futures_core::stream::Stream;
|
|
|
|
|
use futures_util::StreamExt;
|
|
|
|
|
|
|
|
|
|
use super::Question;
|
|
|
|
|
use super::binary::Question;
|
|
|
|
|
use crate::source::SourceQuestionsBatch;
|
|
|
|
|
|
|
|
|
|
pub struct QuestionsConverterAsync<T>
|
|
|
|
@@ -396,7 +586,6 @@ mod test {
|
|
|
|
|
use super::*;
|
|
|
|
|
use insta::assert_yaml_snapshot;
|
|
|
|
|
use serde_json::json;
|
|
|
|
|
|
|
|
|
|
#[cfg(any(feature = "convert", feature = "convert_async"))]
|
|
|
|
|
pub mod convert_common {
|
|
|
|
|
use crate::source::{SourceQuestion, SourceQuestionsBatch};
|
|
|
|
@@ -442,37 +631,12 @@ mod test {
|
|
|
|
|
fn test_question_ser() {
|
|
|
|
|
assert_yaml_snapshot!(sample_question(), @r#"
|
|
|
|
|
---
|
|
|
|
|
num: 0
|
|
|
|
|
id: Вопрос 1
|
|
|
|
|
description: Сколько будет (2 * 2 * 2 + 2) * 2 * 2 + 2
|
|
|
|
|
answer: "42"
|
|
|
|
|
author: ""
|
|
|
|
|
comment: ""
|
|
|
|
|
comment1: ""
|
|
|
|
|
tour: ""
|
|
|
|
|
url: ""
|
|
|
|
|
date: ""
|
|
|
|
|
processed_by: ""
|
|
|
|
|
redacted_by: ""
|
|
|
|
|
copyright: ""
|
|
|
|
|
theme: ""
|
|
|
|
|
kind: ""
|
|
|
|
|
source: ""
|
|
|
|
|
rating: ""
|
|
|
|
|
batch_info:
|
|
|
|
|
filename: ""
|
|
|
|
|
description: Тестовый
|
|
|
|
|
author: ""
|
|
|
|
|
comment: ""
|
|
|
|
|
url: ""
|
|
|
|
|
date: 00-000-2000
|
|
|
|
|
processed_by: ""
|
|
|
|
|
redacted_by: ""
|
|
|
|
|
copyright: ""
|
|
|
|
|
theme: ""
|
|
|
|
|
kind: ""
|
|
|
|
|
source: ""
|
|
|
|
|
rating: ""
|
|
|
|
|
|
|
|
|
|
"#);
|
|
|
|
|
}
|
|
|
|
@@ -491,37 +655,12 @@ mod test {
|
|
|
|
|
|
|
|
|
|
assert_yaml_snapshot!(question_from_json.unwrap(), @r#"
|
|
|
|
|
---
|
|
|
|
|
num: 0
|
|
|
|
|
id: Вопрос 1
|
|
|
|
|
description: Сколько будет (2 * 2 * 2 + 2) * 2 * 2 + 2
|
|
|
|
|
answer: "42"
|
|
|
|
|
author: ""
|
|
|
|
|
comment: ""
|
|
|
|
|
comment1: ""
|
|
|
|
|
tour: ""
|
|
|
|
|
url: ""
|
|
|
|
|
date: ""
|
|
|
|
|
processed_by: ""
|
|
|
|
|
redacted_by: ""
|
|
|
|
|
copyright: ""
|
|
|
|
|
theme: ""
|
|
|
|
|
kind: ""
|
|
|
|
|
source: ""
|
|
|
|
|
rating: ""
|
|
|
|
|
batch_info:
|
|
|
|
|
filename: ""
|
|
|
|
|
description: Тестовый
|
|
|
|
|
author: ""
|
|
|
|
|
comment: ""
|
|
|
|
|
url: ""
|
|
|
|
|
date: 00-000-2000
|
|
|
|
|
processed_by: ""
|
|
|
|
|
redacted_by: ""
|
|
|
|
|
copyright: ""
|
|
|
|
|
theme: ""
|
|
|
|
|
kind: ""
|
|
|
|
|
source: ""
|
|
|
|
|
rating: ""
|
|
|
|
|
|
|
|
|
|
"#);
|
|
|
|
|
}
|
|
|
|
|