melib/test: move data files to data subdir
Tests / Test on ${{ matrix.build }} (linux-amd64, ubuntu-latest, stable, x86_64-unknown-linux-gnu) (push) Failing after 6m22s Details

imap-codec-server-tests
Manos Pitsidianakis 2023-07-21 18:12:39 +03:00
parent 8e698cabcf
commit 073d43b9b8
Signed by: Manos Pitsidianakis
GPG Key ID: 7729C7707F7E09D0
10 changed files with 9 additions and 8 deletions

View File

@ -1266,7 +1266,7 @@ mod test {
});
let smtp_server_conf = get_smtp_conf();
let input_str = include_str!("../tests/test_sample_longmessage.eml");
let input_str = include_str!("../tests/data/test_sample_longmessage.eml");
match crate::Envelope::from_bytes(input_str.as_bytes(), None) {
Ok(_envelope) => {}
Err(err) => {

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -27,7 +27,7 @@ use melib::email::Draft;
#[test]
fn test_build_draft() {
let mut new_draft = Draft::default();
let attachment = melib::email::attachment_from_file(&"./tests/test_image.gif")
let attachment = melib::email::attachment_from_file(&"./tests/data/test_image.gif")
.expect("Could not open test_image.gif.");
new_draft.headers_mut().remove("User-Agent");
new_draft.headers_mut().remove("Date");
@ -42,7 +42,7 @@ fn test_build_draft() {
let raw = raw.replace(boundary_str, "");
let mut gz = GzDecoder::new(include_bytes!("generated_email.eml.gz").as_slice());
let mut gz = GzDecoder::new(include_bytes!("./data/generated_email.eml.gz").as_slice());
let mut s = String::new();
gz.read_to_string(&mut s).unwrap();

View File

@ -39,9 +39,9 @@ fn test_mbox_parse() {
{
let sha1dc_diet_op =
gz_to_string(include_bytes!("PATCH-Put-sha1dc-on-a-diet_op.mbox.gz").as_slice());
gz_to_string(include_bytes!("./data/PATCH-Put-sha1dc-on-a-diet_op.mbox.gz").as_slice());
let sha1dc_diet_thread =
gz_to_string(include_bytes!("PATCH-Put-sha1dc-on-a-diet.mbox.gz").as_slice());
gz_to_string(include_bytes!("./data/PATCH-Put-sha1dc-on-a-diet.mbox.gz").as_slice());
let message_iter = MessageIterator {
index: Arc::new(Mutex::new(HashMap::default())),
@ -70,10 +70,11 @@ fn test_mbox_parse() {
{
let git_am_op = gz_to_string(
include_bytes!("git-am-breakage-with-MIME-decoding_op.mbox.gz").as_slice(),
include_bytes!("./data/git-am-breakage-with-MIME-decoding_op.mbox.gz").as_slice(),
);
let git_am_thread = gz_to_string(
include_bytes!("./data/git-am-breakage-with-MIME-decoding.mbox.gz").as_slice(),
);
let git_am_thread =
gz_to_string(include_bytes!("git-am-breakage-with-MIME-decoding.mbox.gz").as_slice());
let message_iter = MessageIterator {
index: Arc::new(Mutex::new(HashMap::default())),